summaryrefslogtreecommitdiffstats
path: root/perl-install/c/stuff.xs.pm
blob: e952986e317f630d3a5f6d1fa6281eee967e15be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
print '
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"

/* workaround for glibc and kernel header files not in sync */
#define dev_t dev_t

#include <ctype.h>
#include <stdlib.h>
#include <unistd.h>
#include <syslog.h>
#include <fcntl.h>
#include <resolv.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/utsname.h>
#include <sys/mount.h>
#include <linux/keyboard.h>
#include <linux/kd.h>
#include <linux/hdreg.h>
#include <linux/vt.h>
#include <linux/cdrom.h>
#include <linux/loop.h>
#include <net/if.h>
#include <net/route.h>

#include <libldetect.h>
#include <X11/Xlib.h>
#include <X11/extensions/xf86misc.h>
#include <term.h>

#define SECTORSIZE 512
';

$ENV{C_RPM} and print '
#undef Fflush
#undef Mkdir
#undef Stat
#include <rpm/rpmlib.h>

void rpmError_callback_empty(void) {}

int rpmError_callback_data;
void rpmError_callback(void) {
  if (rpmErrorCode() != RPMERR_UNLINK && rpmErrorCode() != RPMERR_RMDIR) {
    write(rpmError_callback_data, rpmErrorString(), strlen(rpmErrorString()));
    write(rpmError_callback_data, "\n", 1);
  }
}

';

$ENV{C_DRAKX} and print '
#include <gdk/gdkx.h>

void initIMPS2() {
  unsigned char imps2_s1[] = { 243, 200, 243, 100, 243, 80, };
  unsigned char imps2_s2[] = { 246, 230, 244, 243, 100, 232, 3, };

  int fd = open("/dev/cdrom", O_WRONLY);
  if (fd < 0) return;

  write (fd, imps2_s1, sizeof (imps2_s1));
  usleep (30000);
  write (fd, imps2_s2, sizeof (imps2_s2));
  usleep (30000);
  tcflush (fd, TCIFLUSH);
  tcdrain(fd);
}
';

print '
long long llseek(int fd, long long offset,  int whence);

MODULE = c::stuff		PACKAGE = c::stuff

int
Xtest(display)
  char *display
  CODE:
  int pid;
  if ((pid = fork()) == 0) {
    Display *d = XOpenDisplay(display);
    if (d) {
      XSetCloseDownMode(d, RetainPermanent);
      XCloseDisplay(d);
    }
    _exit(d != NULL);
  }
  waitpid(pid, &RETVAL, 0);
  OUTPUT:
  RETVAL
';

$ENV{C_DRAKX} and print '
void
setMouseLive(display, type, emulate3buttons)
  char *display
  int type
  int emulate3buttons
  CODE:
  {
    XF86MiscMouseSettings mseinfo;
    Display *d = XOpenDisplay(display);
    if (d) {
      if (XF86MiscGetMouseSettings(d, &mseinfo) == True) {
        mseinfo.type = type;
        mseinfo.flags |= MF_REOPEN;
        mseinfo.emulate3buttons = emulate3buttons;
        XF86MiscSetMouseSettings(d, &mseinfo);
        XFlush(d);
        if (type == MTYPE_IMPS2) initIMPS2();
      }
    }
  }

void
XSetInputFocus(window)
  int window
  CODE:
  XSetInputFocus(GDK_DISPLAY(), window, RevertToParent, CurrentTime);
';

print '
int
KTYP(x)
  int x
  CODE:
  RETVAL = KTYP(x);
  OUTPUT:
  RETVAL

int
lseek_sector(fd, sector, offset)
  int fd
  long sector
  long offset
  CODE:
  RETVAL = llseek(fd, (long long) sector * SECTORSIZE + offset, SEEK_SET) >= 0;
  OUTPUT:
  RETVAL

int
isBurner(fd)
  int fd
  CODE:
  RETVAL = ioctl(fd, CDROM_GET_CAPABILITY) & CDC_CD_RW;
  OUTPUT:
  RETVAL

unsigned int
total_sectors(fd)
  int fd
  CODE:
  {
    long s;
    RETVAL = ioctl(fd, BLKGETSIZE, &s) == 0 ? s : 0;
  }
  OUTPUT:
  RETVAL

void
unlimit_core()
  CODE:
  {
    struct rlimit rlim = { RLIM_INFINITY, RLIM_INFINITY };
    setrlimit(RLIMIT_CORE, &rlim);
  }

int
getlimit_core()
  CODE:
  {
    struct rlimit rlim;
    getrlimit(RLIMIT_CORE, &rlim);
    RETVAL = rlim.rlim_cur;
  }
  OUTPUT:
  RETVAL

void
openlog(ident)
  char *ident
  CODE:
  openlog(ident, 0, 0);

void
closelog()

void
syslog(mesg)
  char *mesg
  CODE:
  syslog(LOG_WARNING, mesg);

void
setsid()

void
_exit(status)
  int status
  
int
detectSMP()

void
pci_probe(probe_type)
  int probe_type
  PPCODE:
    struct pciusb_entries entries = pci_probe(probe_type);
    char buf[2048];
    int i;

    EXTEND(SP, entries.nb);
    for (i = 0; i < entries.nb; i++) {
      struct pciusb_entry e = entries.entries[i];
      snprintf(buf, sizeof(buf), "%04x\t%04x\t%04x\t%04x\t%s\t%s\t%s", 
               e.vendor, e.device, e.subvendor, e.subdevice, pci_class2text(e.class), e.module ? e.module : "unknown", e.text);
      PUSHs(sv_2mortal(newSVpv(buf, 0)));
    }
    pciusb_free(entries);

void
usb_probe()
  PPCODE:
    struct pciusb_entries entries = usb_probe();
    char buf[2048];
    int i;

    EXTEND(SP, entries.nb);
    for (i = 0; i < entries.nb; i++) {
      struct pciusb_entry e = entries.entries[i];
      snprintf(buf, sizeof(buf), "%04x\t%04x\t%s\t%s\t%s", 
               e.vendor, e.device, usb_class2text(e.class), e.module ? e.module : "unknown", e.text);
      PUSHs(sv_2mortal(newSVpv(buf, 0)));
    }
    pciusb_free(entries);

unsigned int
getpagesize()

int
hasNetDevice(device)
  char * device
  CODE:
    struct ifreq req;
    int s = socket(AF_INET, SOCK_DGRAM, 0);
    if (s == -1) { RETVAL = 0; return; }

    strcpy(req.ifr_name, device);

    RETVAL = ioctl(s, SIOCGIFFLAGS, &req) == 0;
    close(s);
  OUTPUT:
  RETVAL

int
addDefaultRoute(gateway)
  char *gateway
  CODE:
    struct rtentry route;
    struct sockaddr_in addr;
    int s = socket(AF_INET, SOCK_DGRAM, 0);
    if (s == -1) { RETVAL = 0; return; }

    memset(&route, 0, sizeof(route));

    addr.sin_family = AF_INET;
    addr.sin_port = 0;
    inet_aton(gateway, &addr.sin_addr);
    memcpy(&route.rt_gateway, &addr, sizeof(addr));

    addr.sin_addr.s_addr = INADDR_ANY;
    memcpy(&route.rt_dst, &addr, sizeof(addr));
    memcpy(&route.rt_genmask, &addr, sizeof(addr));

    route.rt_flags = RTF_UP | RTF_GATEWAY;
    route.rt_metric = 0;

    RETVAL = !ioctl(s, SIOCADDRT, &route);
  OUTPUT:
  RETVAL

char *
kernel_version()
  CODE:
  struct utsname u;
  if (uname(&u) == 0) RETVAL = u.release; else RETVAL = NULL;
  OUTPUT:
  RETVAL

char *
kernel_arch()
  CODE:
  struct utsname u;
  if (uname(&u) == 0) RETVAL = u.machine; else RETVAL = NULL;
  OUTPUT:
  RETVAL

int
set_loop(dev_fd, file)
  int dev_fd
  char *file
  CODE:
  RETVAL = 0;
{
  struct loop_info loopinfo;
  int file_fd = open(file, O_RDWR);

  if (file_fd < 0) return;

  memset(&loopinfo, 0, sizeof(loopinfo));
  strncpy(loopinfo.lo_name, file, LO_NAME_SIZE);
  loopinfo.lo_name[LO_NAME_SIZE - 1] = 0;

  if (ioctl(dev_fd, LOOP_SET_FD, file_fd) < 0) return;
  if (ioctl(dev_fd, LOOP_SET_STATUS, &loopinfo) < 0) {
    ioctl(dev_fd, LOOP_CLR_FD, 0);
    return;
  }
  close(file_fd);
  RETVAL = 1;
}
  OUTPUT:
  RETVAL

int
del_loop(device)
  char *device
  CODE:
  RETVAL = 0;
{
  int fd;
  if ((fd = open(device, O_RDONLY)) < 0) return;
  if (ioctl(fd, LOOP_CLR_FD, 0) < 0) return;
  close(fd);
  RETVAL = 1;
}
  OUTPUT:
  RETVAL

int
prom_open()

void
prom_close()

int
prom_getsibling(node)
  int node

int
prom_getchild(node)
  int node

void
prom_getopt(key)
  char *key
  PPCODE:
  int lenp = 0;
  char *value = NULL;
  value = prom_getopt(key, &lenp);
  EXTEND(sp, 1);
  if (value != NULL) {
    PUSHs(sv_2mortal(newSVpv(value, 0)));
  } else {
    PUSHs(&PL_sv_undef);
  }

void
prom_setopt(key, value)
  char *key
  char *value

void
prom_getproperty(key)
  char *key
  PPCODE:
  int lenp = 0;
  char *value = NULL;
  value = prom_getproperty(key, &lenp);
  EXTEND(sp, 1);
  if (value != NULL) {
    PUSHs(sv_2mortal(newSVpv(value, lenp)));
  } else {
    PUSHs(&PL_sv_undef);
  }

void
prom_getstring(key)
  char *key
  PPCODE:
  int lenp = 0;
  char *value = NULL;
  value = prom_getproperty(key, &lenp);
  EXTEND(sp, 1);
  if (value != NULL) {
    PUSHs(sv_2mortal(newSVpv(value, 0)));
  } else {
    PUSHs(&PL_sv_undef);
  }

int
prom_getbool(key)
  char *key



void
initSilo()

char *
disk2PromPath(disk)
  unsigned char *disk

int
hasAliases()

char *
promRootName()

void
setPromVars(linuxAlias, bootDevice)
  char *linuxAlias
  char *bootDevice
';

$ENV{C_RPM} and print '
int
rpmReadConfigFiles()
  CODE:
  char *rpmrc = getenv("RPMRC_FILE");
  if (rpmrc != NULL && !*rpmrc) rpmrc = NULL;
  RETVAL = rpmReadConfigFiles(rpmrc, NULL) == 0;
  OUTPUT:
  RETVAL

int
rpmdbInit(root, perms)
  char *root
  int perms
  CODE:
  RETVAL = rpmdbInit(root, perms) == 0;
  OUTPUT:
  RETVAL

void *
rpmdbOpen(root)
  char *root
  CODE:
  static rpmdb db;
  RETVAL = rpmdbOpen(root, &db, O_RDWR | O_CREAT, 0644) == 0 ||
           rpmdbOpen(root, &db, O_RDONLY, 0644) == 0 ? db : NULL;
  OUTPUT:
  RETVAL

void *
rpmdbOpenForTraversal(root)
  char *root
  CODE:
  static rpmdb db;
  rpmErrorCallBackType old_cb;
  old_cb = rpmErrorSetCallback(rpmError_callback_empty);
  rpmSetVerbosity(RPMMESS_FATALERROR);
  RETVAL = rpmdbOpen(root, &db, O_RDONLY, 0644) == 0 ? db : NULL;
  rpmErrorSetCallback(old_cb);
  rpmSetVerbosity(RPMMESS_NORMAL);
  OUTPUT:
  RETVAL

void
rpmdbClose(db)
  void *db

int
rpmdbTraverse(db, ...)
  void *db
  PREINIT:
  SV *callback = &PL_sv_undef;
  int count;
  Header h;
  rpmdbMatchIterator mi;
  CODE:
  if (items > 1) {
    callback = ST(1);
  }
  count = 0;
  mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, NULL, 0);
  while (h = rpmdbNextIterator(mi)) {
    if (callback != &PL_sv_undef && SvROK(callback)) {
      dSP;
      ENTER;
      SAVETMPS;
      PUSHMARK(sp);
      XPUSHs(sv_2mortal(newSViv((IV)(void *)h)));
      PUTBACK;
      perl_call_sv(callback, G_DISCARD | G_SCALAR);
      FREETMPS;
      LEAVE;
    }
    ++count;
  }
  rpmdbFreeIterator(mi);
  RETVAL = count;
  OUTPUT:
  RETVAL

int
rpmdbNameTraverse(db, name, ...)
  void *db
  char *name
  PREINIT:
  SV *callback = &PL_sv_undef;
  int count;
  Header h;
  rpmdbMatchIterator mi;
  rpmErrorCallBackType oldcb;
  CODE:
  if (items > 2) {
    callback = ST(2);
  }
  count = 0;
  mi = rpmdbInitIterator(db, RPMTAG_NAME, name, 0);
  oldcb = rpmErrorSetCallback(rpmError_callback_empty);
  while (h = rpmdbNextIterator(mi)) {
    if (callback != &PL_sv_undef && SvROK(callback)) {
      dSP;
      ENTER;
      SAVETMPS;
      PUSHMARK(sp);
      XPUSHs(sv_2mortal(newSViv((IV)(void *)h)));
      PUTBACK;
      perl_call_sv(callback, G_DISCARD | G_SCALAR);
      FREETMPS;
      LEAVE;
    }
    ++count;
  }
  rpmErrorSetCallback(oldcb);
  rpmdbFreeIterator(mi);
  RETVAL = count;
  OUTPUT:
  RETVAL


void *
rpmtransCreateSet(db, rootdir)
  void *db
  char *rootdir

void
rpmtransAvailablePackage(rpmdep, header, key)
  void *rpmdep
  void *header
  char *key
  CODE:
  rpmtransAvailablePackage(rpmdep, header, strdup(key));

int
rpmtransAddPackage(rpmdep, header, key, update)
  void *rpmdep
  void *header
  char *key
  int update
  CODE:
  rpmTransactionSet r = rpmdep;
  RETVAL = rpmtransAddPackage(r, header, NULL, strdup(key), update, NULL) == 0;
  /* rpminstall.c of rpm-4 call headerFree directly after, we can make the same ?*/
  OUTPUT:
  RETVAL

int
rpmtransRemovePackages(db, rpmdep, p)
  void *db
  void *rpmdep
  char *p
  CODE:
  rpmdb d = db;
  rpmTransactionSet r = rpmdep;
  Header h;
  rpmdbMatchIterator mi;
  int count = 0;
  mi = rpmdbInitIterator(db, RPMDBI_LABEL, p, 0);
  while (h = rpmdbNextIterator(mi)) {
    unsigned int recOffset = rpmdbGetIteratorOffset(mi);
    if (recOffset) {
      rpmtransRemovePackage(rpmdep, recOffset);
      ++count;
    }
  }
  rpmdbFreeIterator(mi);
  RETVAL=count;
  OUTPUT:
  RETVAL

int
rpmdepOrder(order)
  void *order
  CODE:
  RETVAL = rpmdepOrder(order) == 0;
  OUTPUT:
  RETVAL

void
rpmdepCheck(rpmdep)
  void *rpmdep
  PPCODE:
  struct rpmDependencyConflict * conflicts;
  int numConflicts, i;
  rpmdepCheck(rpmdep, &conflicts, &numConflicts);
  if (numConflicts) {
    EXTEND(SP, numConflicts);
    for (i = 0; i < numConflicts; i++)
      if (conflicts[i].sense == RPMDEP_SENSE_CONFLICTS) {
        fprintf(stderr, "%s conflicts with %s\n", conflicts[i].byName, conflicts[i].needsName);
      } else {
 	if (conflicts[i].suggestedPackage)
 	  PUSHs(sv_2mortal(newSVpv((char *) conflicts[i].suggestedPackage, 0)));
 	else {
 	  char *p = malloc(100 + strlen(conflicts[i].needsName) + strlen(conflicts[i].byName));
 	  sprintf(p, "%s needed but nothing provide it (%s)", conflicts[i].needsName, conflicts[i].byName);
 	  PUSHs(sv_2mortal(newSVpv(p, 0)));
 	  free(p);
      }
    }
  }

void
rpmdepCheckFrom(rpmdep)
  void *rpmdep
  PPCODE:
  struct rpmDependencyConflict * conflicts;
  int numConflicts, i;
  rpmdepCheck(rpmdep, &conflicts, &numConflicts);
  if (numConflicts) {
    EXTEND(SP, numConflicts);
    for (i = 0; i < numConflicts; i++)
        PUSHs(sv_2mortal(newSVpv(conflicts[i].byName, 0)));
  }

int
rpmdbRebuild(root)
  char *root
  CODE:
  rpmErrorCallBackType old_cb;
  old_cb = rpmErrorSetCallback(rpmError_callback_empty);
  rpmSetVerbosity(RPMMESS_FATALERROR);
  RETVAL = rpmdbRebuild(root) == 0;
  rpmErrorSetCallback(old_cb);
  rpmSetVerbosity(RPMMESS_NORMAL);
  OUTPUT:
  RETVAL

void
rpmtransFree(trans)
  void *trans

char *
rpmErrorString()

int
rpmVersionCompare(headerFirst, headerSecond)
  void *headerFirst
  void *headerSecond

void
rpmSetVeryVerbose()
  CODE:
  rpmSetVerbosity(RPMMESS_DEBUG);

void
rpmtransSetScriptFd(trans, fd)
  void *trans
  int fd
  CODE:
  static FD_t scriptFd = NULL;
  if (scriptFd != NULL) fdClose(scriptFd);
  scriptFd = fdDup(fd);
  rpmtransSetScriptFd(trans, scriptFd);

void
rpmRunTransactions(trans, callbackOpen, callbackClose, callbackMessage, force)
  void *trans
  SV *callbackOpen
  SV *callbackClose
  SV *callbackMessage
  int force
  PPCODE:
  rpmProblemSet probs;
  void *rpmRunTransactions_callback(const Header h, const rpmCallbackType what, const unsigned long amount, const unsigned long total, const void * pkgKey, void * data) {
      static int last_amount;
      static FD_t fd = NULL;
      char *msg = NULL;
      char *param_s = NULL;
      const unsigned long *param_ul1 = NULL;
      const unsigned long *param_ul2 = NULL;
      char *n = (char *) pkgKey;
      static struct timeval tprev;
      static struct timeval tcurr;
      long delta;

      switch (what) {
      case RPMCALLBACK_INST_OPEN_FILE: {
        int i;
  	dSP;
  	PUSHMARK(sp);
  	XPUSHs(sv_2mortal(newSVpv(n, 0)));
  	PUTBACK;
  	i = perl_call_sv(callbackOpen, G_SCALAR);
        SPAGAIN;
        if (i != 1) croak("Big trouble\n");
        i = POPi; fd = fdDup(i);
	fd = fdLink(fd, "persist DrakX");
  	PUTBACK;
        return fd;
      }

      case RPMCALLBACK_INST_CLOSE_FILE: {
	dSP;
  	PUSHMARK(sp);
  	XPUSHs(sv_2mortal(newSVpv(n, 0)));
  	PUTBACK;
  	perl_call_sv(callbackClose, G_DISCARD);
        free(n); /* was strdup in rpmtransAddPackage */
	fd = fdFree(fd, "persist DrakX");
	if (fd) {
	  fdClose(fd);
	  fd = NULL;
	}
  	break;
      }

      case RPMCALLBACK_TRANS_START: {
        switch (amount) {
        case 1: msg = "Examining packages to install..."; break;
        case 5: msg = "Examining files to install..."; break;
        case 6: msg = "Finding overlapping files..."; break;
        }
        if (msg) param_ul1 = &total;
      } break;

      case RPMCALLBACK_UNINST_START: {
        msg = "Removing old files...";
        param_ul1 = &total;
      } break;

      case RPMCALLBACK_TRANS_PROGRESS: {
        msg = "Progressing transaction";
        param_ul1 = &amount;
      } break;

      case RPMCALLBACK_UNINST_PROGRESS: {
        msg = "Progressing removing old files";
        param_ul1 = &amount;
      } break;

      case RPMCALLBACK_TRANS_STOP: {
        msg = "Done transaction";
      } break;

      case RPMCALLBACK_UNINST_STOP: {
        msg = "Done removing old files";
      } break;

      case RPMCALLBACK_INST_START: {
        msg = "Starting installing package";
	gettimeofday(&tprev, NULL);
        param_s = n;

        last_amount = 0;
      } break;

      case RPMCALLBACK_INST_PROGRESS:
        gettimeofday(&tcurr, NULL);
        delta = 1000000 * (tcurr.tv_sec - tprev.tv_sec) + (tcurr.tv_usec - tprev.tv_usec);
        if (delta > 200000 || amount >= total - 1) { /* (total && (amount - last_amount) * 22 / 4 / total)) { */
          msg = "Progressing installing package";
          param_s = n;
          param_ul1 = &amount;
          param_ul2 = &total;

	  tprev = tcurr;
          last_amount = amount;
  	} break;
      default: break;
      }

      if (msg) {
        dSP ;
        PUSHMARK(sp) ;
  	XPUSHs(sv_2mortal(newSVpv(msg, 0)));
        if (param_s) {
  	  XPUSHs(sv_2mortal(newSVpv(param_s, 0)));
        }
        if (param_ul1) {
  	  XPUSHs(sv_2mortal(newSViv(*param_ul1)));
        }
        if (param_ul2) {
          XPUSHs(sv_2mortal(newSViv(*param_ul2)));
        }
  	PUTBACK ;
  	perl_call_sv(callbackMessage, G_DISCARD);
      }
      return NULL;
  }
  if (rpmRunTransactions(trans, rpmRunTransactions_callback, NULL, NULL, &probs, 0, force ? ~0 : ~RPMPROB_FILTER_DISKSPACE)) {
    int i;
    /* printf("rpmRunTransactions finished, errors occured %d\n", probs->numProblems); fflush(stdout); */
    EXTEND(SP, probs->numProblems);
    for (i = 0; i < probs->numProblems; i++) {
      PUSHs(sv_2mortal(newSVpv(rpmProblemString(probs->probs[i]), 0)));
    }
  }

void
rpmErrorSetCallback(fd)
  int fd
  CODE:
  rpmError_callback_data = fd;
  rpmErrorSetCallback(rpmError_callback);

void *
rpmReadPackageHeader(fdno)
  int fdno
  CODE:
  Header h;
  int isSource, major;
  FD_t fd = fdDup(fdno);
  RETVAL = rpmReadPackageHeader(fd, &h, &isSource, &major, NULL) ? NULL : h;
  fdClose(fd);
  OUTPUT:
  RETVAL

void *
headerRead(fdno, magicp)
  int fdno
  int magicp
  CODE:
  FD_t fd = fdDup(fdno);
  RETVAL = (void *) headerRead(fd, magicp);
  fdClose(fd);
  OUTPUT:
  RETVAL

void
headerFree(header)
  void *header

char *
headerGetEntry_string(h, query)
  void *h
  int query
  CODE:
  int type, count;
  headerGetEntry((Header) h, query, &type, (void **) &RETVAL, &count);
  OUTPUT:
  RETVAL

int
headerGetEntry_int(h, query)
  void *h
  int query
  CODE:
  int type, count, *i;
  headerGetEntry((Header) h, query, &type, (void **) &i, &count);
  RETVAL = *i;
  OUTPUT:
  RETVAL

void
headerGetEntry_int_list(h, query)
  void *h
  int query
  PPCODE:
  int i, type, count = 0;
  int_32 *intlist = (int_32 *) NULL;
  if (headerGetEntry((Header) h, query, &type, (void**) &intlist, &count)) {
    if (count > 0) {
      EXTEND(SP, count);
      for (i = 0; i < count; i++) {
        PUSHs(sv_2mortal(newSViv(intlist[i])));
      }
    }
  }

void
headerGetEntry_string_list(h, query)
  void *h
  int query
  PPCODE:
  int i, type, count = 0;
  char **strlist = (char **) NULL;
  if (headerGetEntry((Header) h, query, &type, (void**) &strlist, &count)) {
    if (count > 0) {
      EXTEND(SP, count);
      for (i = 0; i < count; i++) {
        PUSHs(sv_2mortal(newSVpv(strlist[i], 0)));
      }
    }
    free(strlist);
  }

void
headerGetEntry_filenames(h)
  void *h
  PPCODE:
  int i, type, count = 0;
  char ** baseNames, ** dirNames;
  int_32 * dirIndexes;
  char **strlist = (char **) NULL;

  if (headerGetEntry((Header) h, RPMTAG_OLDFILENAMES, &type, (void**) &strlist, &count)) {
    if (count > 0) {
      EXTEND(SP, count);
      for (i = 0; i < count; i++) {
        PUSHs(sv_2mortal(newSVpv(strlist[i], 0)));
      }
    }
    free(strlist);
  } else {

    headerGetEntry(h, RPMTAG_BASENAMES, &type, (void **) &baseNames, &count);
    headerGetEntry(h, RPMTAG_DIRINDEXES, &type, (void **) &dirIndexes, NULL);
    headerGetEntry(h, RPMTAG_DIRNAMES, &type, (void **) &dirNames, NULL);

    if (baseNames && dirNames && dirIndexes) {
      EXTEND(SP, count);
      for(i = 0; i < count; i++) {
        char *p = malloc(strlen(dirNames[dirIndexes[i]]) + strlen(baseNames[i]) + 1);
        if (p == NULL) croak("malloc failed");
        strcpy(p, dirNames[dirIndexes[i]]);
        strcat(p, baseNames[i]);
  	PUSHs(sv_2mortal(newSVpv(p, 0)));
        free(p);
      }
      free(baseNames);
      free(dirNames);
    }
  }
';

@macros = (
  [ qw(int S_IFCHR S_IFBLK KDSKBENT KT_SPEC NR_KEYS MAX_NR_KEYMAPS BLKRRPART TIOCSCTTY
       HDIO_GETGEO BLKGETSIZE LOOP_GET_STATUS
       MS_MGC_VAL MS_RDONLY O_NONBLOCK O_CREAT SECTORSIZE WNOHANG
       VT_ACTIVATE VT_WAITACTIVE VT_GETSTATE CDROM_LOCKDOOR CDROMEJECT
       ) ],
);
push @macros, [ qw(int RPMTAG_NAME RPMTAG_GROUP RPMTAG_SIZE RPMTAG_VERSION RPMTAG_SUMMARY RPMTAG_DESCRIPTION RPMTAG_RELEASE RPMTAG_ARCH RPMTAG_OBSOLETES RPMTAG_REQUIRENAME RPMTAG_FILEFLAGS     RPMFILE_CONFIG) ]
  if $ENV{C_RPM};

$\= "\n";
print;

foreach (@macros) {
    my ($type, @l) = @$_;
    foreach (@l) {
	print<< "END"
$type
$_()
  CODE:
  RETVAL = $_;

  OUTPUT:
  RETVAL

END

    }
}
l'>-#: ../../diskdrake/interactive.pm_.c:1127
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1128
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1129
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "on channel %d id %d\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1160
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1161
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1164
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1165
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1168
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1169
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -1968,17 +1976,12 @@ msgstr ""
msgid "I don't know how to format %s in type %s"
msgstr ""
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:715 ../../fs.pm_.c:721
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:706
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:736 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -3253,7 +3256,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:115
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3261,7 +3264,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:170
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3300,7 +3303,7 @@ msgid ""
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:769
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr ""
@@ -3334,69 +3337,69 @@ msgstr ""
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr ""
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr ""
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
msgid "Resizing Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
+#: ../../install_interactive.pm_.c:137
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3408,63 +3411,63 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr ""
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr ""
@@ -3472,16 +3475,16 @@ msgstr ""
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr ""
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr ""
@@ -3535,15 +3538,15 @@ msgstr ""
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:688
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:703
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:627
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
@@ -3611,8 +3614,8 @@ msgstr ""
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
@@ -3629,11 +3632,11 @@ msgstr ""
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:532
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
@@ -3660,17 +3663,17 @@ msgid "Installing package %s"
msgstr ""
#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr ""
#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:795
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3681,16 +3684,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:807
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:807
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3864,7 +3867,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr ""
@@ -3881,86 +3884,86 @@ msgstr ""
msgid "Which installation class do you want?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:234
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:234
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:243
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:249
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:274
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:280 ../../standalone/mousedrake_.c:85
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:86
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:289
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:292
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:313
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:313
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:335
+#: ../../install_steps_interactive.pm_.c:337
msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:346
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:365
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -3971,168 +3974,175 @@ msgid ""
"Do you agree to loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:378
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:420
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:444
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:471
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:476
-msgid "Not enough swap space to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:484
+#: ../../install_steps_interactive.pm_.c:491
msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:488
+#: ../../install_steps_interactive.pm_.c:495
msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:498
msgid "Looking at packages already installed..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:509
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:547
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:566
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:640
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:654
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:655
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:745
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:750
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:779
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:825
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:837
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4171,7 +4181,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:896
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4183,172 +4193,172 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:911
+#: ../../install_steps_interactive.pm_.c:918
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:916
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:925
+#: ../../install_steps_interactive.pm_.c:932
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:957
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:958
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:999
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1014
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1000
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1026 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1032 ../../printerdrake.pm_.c:2347
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1081
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1082
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1119
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
msgid "Windows PDC"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1084
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1093
-#: ../../install_steps_interactive.pm_.c:1094 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1115
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1138
msgid "Authentication Windows PDC"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1139
msgid "Windows Domain"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1133
+#: ../../install_steps_interactive.pm_.c:1140
msgid "PDC Server Name"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1142
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add and reboot the server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1169
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4366,19 +4376,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1185
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1186
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4394,7 +4404,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1198
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4403,28 +4413,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1206
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1214
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1224
msgid "Creating bootdisk..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1231
msgid "Preparing bootloader..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4432,25 +4442,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1241
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1257
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1265
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4461,24 +4471,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1299
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1303
+#: ../../install_steps_interactive.pm_.c:1310
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1314
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1325
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4489,18 +4500,22 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1342
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4509,15 +4524,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1349
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1349
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr ""
@@ -4613,323 +4628,323 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr ""
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr ""
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr ""
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr ""
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr ""
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr ""
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr ""
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr ""
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr ""
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr ""
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr ""
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr ""
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:288
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:301
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:302
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:303
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:304
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:305
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:306
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:307
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:308
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:309
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5069,51 +5084,51 @@ msgstr ""
msgid "No mouse"
msgstr ""
-#: ../../mouse.pm_.c:440
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr ""
-#: ../../mouse.pm_.c:441
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:442
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../my_gtk.pm_.c:690
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:725
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:725 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:726 ../../printerdrake.pm_.c:1610
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1058
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr ""
-#: ../../my_gtk.pm_.c:1122 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
msgid "Info"
msgstr ""
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:1141
msgid "Expand Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:1144
+#: ../../my_gtk.pm_.c:1142
msgid "Collapse Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:1145
+#: ../../my_gtk.pm_.c:1143
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5156,7 +5171,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr ""
@@ -5186,10 +5201,10 @@ msgid "Host name"
msgstr ""
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr ""
@@ -5355,54 +5370,54 @@ msgstr ""
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5414,12 +5429,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5427,7 +5442,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -5435,95 +5450,95 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:172
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:173 ../../printerdrake.pm_.c:2541
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
#: ../../standalone/drakfloppy_.c:146
msgid "Expert Mode"
msgstr ""
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:206
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:231
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:256
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5531,20 +5546,20 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:271
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -5764,16 +5779,16 @@ msgid ""
"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:776
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:800
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr ""
@@ -6032,16 +6047,12 @@ msgstr ""
msgid "Automatic CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:163 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr ""
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6054,13 +6065,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:172 ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr ""
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6078,11 +6089,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:182
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr ""
-#: ../../printerdrake.pm_.c:200
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6096,11 +6107,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:219
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:220
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6110,15 +6121,19 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:223 ../../printerdrake.pm_.c:225
-#: ../../printerdrake.pm_.c:226
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr ""
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
@@ -7274,7 +7289,7 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../security/msec.pm_.c:48
+#: ../../security/msec.pm_.c:144
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
" but very sensitive: it must not be used for a machine "
@@ -7282,7 +7297,7 @@ msgid ""
" or to the Internet. There is no password access."
msgstr ""
-#: ../../security/msec.pm_.c:54
+#: ../../security/msec.pm_.c:150
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -7292,10 +7307,14 @@ msgid ""
"a client on the Internet, you should choose a lower level."
msgstr ""
-#: ../../security/msec.pm_.c:73 ../../standalone/drakfont_.c:680
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
msgid "Advanced Options"
msgstr ""
+#: ../../security/msec.pm_.c:199
+msgid "Basic Options"
+msgstr ""
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7739,11 +7758,11 @@ msgstr ""
msgid "Installing packages..."
msgstr ""
-#: ../../standalone/XFdrake_.c:129
+#: ../../standalone/XFdrake_.c:131
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../standalone/XFdrake_.c:133
+#: ../../standalone/XFdrake_.c:135
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -7942,26 +7961,26 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr ""
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr ""
@@ -8012,10 +8031,11 @@ msgstr ""
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:871
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
msgid ""
"\n"
-"Drakbackup activities via $daemon_media:\n"
+"Drakbackup activities via %s:\n"
"\n"
msgstr ""
@@ -8033,13 +8053,6 @@ msgid ""
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:895
-msgid ""
-"\n"
-"Drakbackup activities via $net_proto:\n"
-"\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:900
msgid ""
"\n"
@@ -8370,10 +8383,6 @@ msgstr ""
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1981
-msgid "\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
@@ -9036,7 +9045,7 @@ msgid "connecting to Bugzilla wizard ..."
msgstr ""
#: ../../standalone/drakbug_.c:129
-msgid "No browser available please! Please install one"
+msgid "No browser available! Please install one"
msgstr ""
#: ../../standalone/drakconnect_.c:80
@@ -9530,19 +9539,19 @@ msgstr ""
msgid "Post Uninstall"
msgstr ""
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9550,31 +9559,31 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9582,19 +9591,19 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9604,31 +9613,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr ""
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9638,17 +9647,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9658,15 +9667,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr ""
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9677,7 +9686,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9689,74 +9698,74 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr ""
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr ""
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr ""
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr ""
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9886,11 +9895,11 @@ msgstr ""
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:151
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:152
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10121,15 +10130,15 @@ msgstr ""
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:69
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr ""
-#: ../../standalone/mousedrake_.c:79
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:83
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 60896970c..1046b1a74 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -1,36 +1,69 @@
# KTranslator Generated File
-# Copyright (c) 1999-2000 MandrakeSoft
-# Schalk. W. Cronj <schalkc@ntaba.co.za>, 2000
+# KTranslator Generated File
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Schalk W. Cronj <schalkc@ntaba.co.za>, 2000
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-09-09 22:06-0000\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-20 21:28-0000\n"
"Last-Translator: Schalk W. Cronj <schalkc@uk.ntaba.com>\n"
"Language-Team: Afrikaans <mandrake@af.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigureer skyfkoppe afsonderlik"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-ekstensies"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigureer net die \"%s\" kaart (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64MB of meer"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Kies 'n X-bediener"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-bediener"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Multikopkonfigurasie"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +71,44 @@ msgstr ""
"U stelsel onderstuen multikopkonfigurasie.\n"
"Wat wil u doen?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Videokaart"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selekteer 'n videokaart"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree-konfigurasie"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Kies 'n X-bediener"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-bediener"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Kies 'n X-bediener"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-bediener"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Watter tipe XFree-konfigurasie verlang u?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -83,34 +117,18 @@ msgstr ""
"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D-hardwareversnelling"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
-"bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +140,60 @@ msgstr ""
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree-konfigurasie"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kies die geheue grootte van u videokaart"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Selekteer opsies vir bediener"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behou die veranderinge?\n"
+"Huidige konfigurasie is:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Aangepaste"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generies"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Herroep"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,512 +215,326 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor is nie opgestel nie"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikakaart is nog nie konfigureer nie"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolusie is nog nie gekies nie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Wil u die konfigurasie toets?"
-
-#
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 kleure (8 bis)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probeer van die parameters verander"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32-duisend kleure (15 bis)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Daar was 'n fout:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65-duisend kleure (16 bis)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "uitgang binne %ds"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16-miljoen kleure (24 bis)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Is dit korrek?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biljoen kleure (32 bis)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Hier is fout, probeer van die parameters verander"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolusies"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolusie"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 bediener: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Nog"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Kanselleer"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Kundige modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vertoon almal"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolusies"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Toets konfigurasie"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sleutelbord uitleg: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistipe: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muistoestel: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HoriSink: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertVerfris: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Videokaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Videokaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Video geheue: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Kleurdiepte: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusie: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 bediener: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window konfigurasie word opgestel"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Wat wil u doen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Verander monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Verander videokaart"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verander bedienerinstellings"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Verander resolusie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vertoon inligting"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Toets weer"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlaat"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behou die veranderinge?\n"
-"Huidige konfigurasie is:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kleure (8 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32-duisend kleure (15 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65-duisend kleure (16 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16-miljoen kleure (24 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljoen kleure (32 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64MB of meer"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standaard VGA, 640x480 teen 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 teen 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO installasie"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub installasie"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO met grafiese kieskaart"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laai vauit DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Videomodus"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "beperk"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Gebruik multiprofiele"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Gee die geheuegrootte in MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Beginboodskap"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Tydsbeperking vir stelselkernlaai"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Laat CD-herlaai toe?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Laat OF-herlaai toe?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Verstek bedryfstelsel?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -682,83 +543,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Verstek"
@@ -791,53 +652,75 @@ msgstr "U moet oor 'n ruilpartisie beskik"
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Sien hardeware inligting"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"U kan noue die opsies voorsien vir module %s.\n"
+"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
+"Bv. ``io=0x300 irq-7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Module opsies:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -853,37 +736,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"U kan noue die opsies voorsien vir module %s.\n"
-"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bv. ``io=0x300 irq-7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Module opsies:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -892,50 +753,55 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Hierdie genruikerskode bestaan alreeds"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -944,32 +810,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -977,125 +843,104 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Aangepaste"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Kanselleer"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoes"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1107,7 +952,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1115,7 +960,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1125,60 +970,61 @@ msgstr ""
"wat aan die internet as 'n klint konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie klinte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Gebruik sekuriteitsvlak"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1201,13 +1047,13 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1216,39 +1062,39 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
@@ -1261,17 +1107,21 @@ msgstr "Gee hulp beskikbaar nie (nog nie).\n"
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ler"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ler/_Verlaat"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<ctrl>Q"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1304,14 +1154,14 @@ msgstr "Yaboot metode"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigureer"
@@ -1321,7 +1171,7 @@ msgid "System mode"
msgstr "Stelselmode"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
#: ../../bootlook.pm_.c:148
@@ -1332,14 +1182,16 @@ msgstr "Nee, ek verlang outo-aanteken"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1388,7 +1240,7 @@ msgstr "Ek kan nie meer partisies byvoeg nie"
msgid "Screenshots will be available after install in %s"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankryk"
@@ -1396,7 +1248,7 @@ msgstr "Frankryk"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgies"
@@ -1424,11 +1276,12 @@ msgstr "Norweegs"
msgid "Sweden"
msgstr "Sien"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiaans"
@@ -1438,7 +1291,7 @@ msgstr "Italiaans"
msgid "Austria"
msgstr "seriaal"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1446,8 +1299,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -1460,11 +1313,12 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fout"
@@ -1472,11 +1326,11 @@ msgstr "Fout"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Kies aksie"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1488,78 +1342,78 @@ msgstr ""
"Ek stel voor u verstel eers die grootte van di partisie\n"
"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detail"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "Gejoernaliseer"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ander"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Uitwis"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1567,67 +1421,72 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Verlaat"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Nog"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle primre partisies is gebruik"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1635,35 +1494,35 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Verwyderbare media"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1671,11 +1530,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1683,124 +1542,131 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Hegpunt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opsies"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Teruglusler %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Watter lerstelsel verlang u?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u teruglusler %s heg?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1808,126 +1674,133 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "FAT lerstelselgrense word bereken"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nuut"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM naam?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Teruglus lernaam:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Ler word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ler bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Hegopsies:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Verskeie"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "toestel"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "vlak"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Watter tipe van partisionering?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Hierdie pakket moet opgradeer word\n"
+"Is u seker u wil dit deselekteer?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1940,7 +1813,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1953,7 +1826,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1963,137 +1836,137 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Teruglusler %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid het gefaal"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "LPD word verwyder..."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Teruglus ler(s): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2101,27 +1974,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lernaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2133,7 +2006,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2144,65 +2017,65 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2212,36 +2085,66 @@ msgstr "Verander tipe"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Magtiging"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS-domein"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck het gefaal met kode %d of sein %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2258,67 +2161,321 @@ msgstr ""
msgid "server"
msgstr "bediener"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lergids moet altyd in die wortellerstelsel bly"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "U benodig 'n ware lerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lerstelsels op "
"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "U get geen partisies nie!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Gebruik outobespeuring"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generies"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatering"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Verander tipe"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlaat"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Help/_Aangaande..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Muis"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Kanselleer"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Muis"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beskrywing"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Magtiging"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Selekteer lOer"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Netwerkportaaltoestel"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knoppies"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Hardeskyfdeteksie."
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Sien hardeware inligting"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Vertoon inligting"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Stel muistoestel op"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Op poort %s bespeur"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekondes"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Aftas"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
#, fuzzy
msgid ""
@@ -2333,7 +2490,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2444,9 +2601,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2635,7 +2791,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2647,9 +2803,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2695,21 +2850,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2725,9 +2879,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2748,9 +2902,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2867,38 +3020,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2973,11 +3120,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3001,7 +3148,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr "Kies asb. "
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3016,7 +3163,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3031,7 +3178,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3047,7 +3194,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3055,23 +3202,23 @@ msgstr ""
"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
"ttyS0 onder GNU/Linux is."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3093,7 +3240,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3115,7 +3262,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3123,7 +3270,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3144,7 +3291,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3168,7 +3315,7 @@ msgstr ""
"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3182,29 +3329,28 @@ msgstr ""
"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
"kies."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3213,7 +3359,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3239,7 +3385,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
@@ -3261,7 +3407,7 @@ msgstr ""
"Windows-bedryfstelsel te bekom.\n"
"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3271,9 +3417,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3285,7 +3430,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3311,7 +3456,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3338,18 +3483,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3357,12 +3501,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3378,14 +3521,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3396,7 +3539,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3404,12 +3547,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3424,20 +3567,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3445,7 +3588,7 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van ler %s"
@@ -3475,7 +3618,7 @@ msgstr "U moet oor 'n ruilpartisie beskik"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3483,59 +3626,59 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Gebruik beskikbare spasie"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Gebruik bestaande partisies"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Kies die groottes"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Basispartisiegrootte in MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ruilpartisiegrootte in MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Watter partisie se grootte wil u verander?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Windowslerstelselgrense word bereken"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3544,11 +3687,14 @@ msgstr ""
"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
"Fout: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3570,54 +3716,54 @@ msgstr ""
"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
"OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Watter grootte wil u vir Windows behou?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partisie %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-grootteverandering het gefaal: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
"spasie nie) te gebruik nie"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Wis hele skyf"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Verwyder Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Gespesialiseerde skyfpartisionering"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3626,11 +3772,11 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Die Windowspartisie beskik nie oor die nodige spasie nie."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ek kon geen plek vir installasie vind nie."
@@ -3638,16 +3784,16 @@ msgstr "Ek kon geen plek vir installasie vind nie."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Netwerk op pad op"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Netwerk op pad af"
@@ -3659,12 +3805,12 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3676,12 +3822,12 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -3691,9 +3837,9 @@ msgstr "Geen sagteskyaandrywer beskikbaar nie"
msgid "Entering step `%s'\n"
msgstr "Gaan stap '%s' binne\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3705,98 +3851,53 @@ msgstr ""
"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
"instruksielyn intik."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installasieklas"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
-"persentasie van pakkette wat u wil installeer.\n"
-"\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n persentasie van 100%% sal alles gekose pakkette installeer."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
-"\n"
-"Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Persentasie pakkette om te installeer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -3804,104 +3905,105 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds genstalleer"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimale installasie"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aanvaar "
#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3916,17 +4018,17 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf di CDROM te vermy."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -3971,11 +4073,11 @@ msgstr "'n Fout het voorgekom"
msgid "Do you really want to leave the installation?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3990,7 +4092,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4096,113 +4198,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Sleutelbord"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Watter installasieklas verlang u?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installeer/Opgradeer"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Is hierdie 'n installasie of opgradering?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Aanbevole"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Kundige"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Opgradeer"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Knoppie-emulasie"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Knop-2 Emulasie"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Knop-3 emulasie"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Stel PCMCIA op..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE word opgestel"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4214,7 +4320,7 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4222,7 +4328,7 @@ msgstr ""
"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
"Gaan aan op u eie risiko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4231,74 +4337,77 @@ msgstr ""
"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
"herlaai."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Geen wortellerstelsel gevind nie"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ler %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Soek vir beskikbare pakkette"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds genstalleer"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Klaar (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Aanbevole (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4306,55 +4415,55 @@ msgstr ""
"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Oplaai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakketkeuse"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4364,16 +4473,16 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4382,23 +4491,23 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4466,161 +4575,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spiel word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spiel waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spiel word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-bediener"
#
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Verwyder Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Plaaslike lers"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP-magtiging"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS-domein"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP-bediener"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4647,19 +4787,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4683,7 +4823,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4692,28 +4832,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4721,11 +4861,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4733,15 +4873,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4752,18 +4892,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n le floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4773,7 +4912,8 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4784,7 +4924,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4798,17 +4938,21 @@ msgstr ""
"bekyk die errata beskikbaar op\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisile Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4817,15 +4961,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -4852,414 +4996,398 @@ msgstr ""
msgid "Choose a file"
msgstr "Kies 'n ler"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Gevorderd"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Maak boom oop"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maak boom toe"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skakel tussen plat- en groepsortering"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Swak keuse, probeer weer\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opsies: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Wil u aboot gebruik?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanies"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romanies (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romanies (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabel"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik sleutelbord"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vitnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5272,7 +5400,31 @@ msgstr "Sirkulre heg %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefoonnommer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formateer partisies"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5313,10 +5465,6 @@ msgstr "1 knop"
msgid "Generic 2 Button Mouse"
msgstr "Generiese 2-knop muis"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generies"
-
#
#: ../../mouse.pm_.c:46
msgid "Wheel"
@@ -5383,39 +5531,55 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finnies"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Vorige"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Is dit korrek?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Maak boom oop"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Maak boom toe"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Skakel tussen plat- en groepsortering"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
@@ -5463,7 +5627,7 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie.\n"
"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
@@ -5476,7 +5640,7 @@ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -5493,15 +5657,15 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Rekenaarnaam"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Netwerkkonfigurasie-assistent"
@@ -5547,7 +5711,7 @@ msgstr "ISDN Konfigurasie"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Kies u internetdiensvoorsiener.\n"
"Indien nie in die lys nie kies Ongelys"
@@ -5567,14 +5731,14 @@ msgstr "Protokol vir die res van die wreld"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol vir die res vd wreld \n"
" geen D-Kanaal nie (bruikhuurlyne)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Watter protokol verlang u?"
#: ../../network/isdn.pm_.c:199
@@ -5598,7 +5762,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
@@ -5615,13 +5780,13 @@ msgid "Continue"
msgstr "Gaan voort"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Wat is u ISDN-kaart?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
@@ -5638,47 +5803,47 @@ msgstr "Op watter seriaalpoort is u modem gekoppel?"
msgid "Dialup options"
msgstr "Opbelopsies"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Konneksienaam"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefoonnommer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Aantekenkode"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skriptipe"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminaaltipe"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeinnaam"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Eerste DNS-bediener (opsioneel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5686,7 +5851,7 @@ msgstr ""
"\n"
"U kan diskonnekteer or herkonfigureer."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5694,11 +5859,11 @@ msgstr ""
"\n"
"U kan u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "U is tans aan die internet gekonnekteer."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5706,33 +5871,33 @@ msgstr ""
"\n"
"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konnekteer"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Diskonnekteer"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Stel netwerk op"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5751,12 +5916,12 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5767,9 +5932,9 @@ msgstr ""
"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -5779,66 +5944,72 @@ msgstr ""
"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Kies die profiel om te konfigureer"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Kundige bedryfsvlak"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normale modemkonneksie"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "Op poort %s bespeur"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN konneksie"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s bespeur"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL konneksie"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "op koppelvlak %s bespeur"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelkonneksie"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabelkonneksie bespeur"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN konneksie"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(e) bespeur"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -5848,23 +6019,23 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5875,7 +6046,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -5885,7 +6056,7 @@ msgstr ""
"\n"
"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -5893,16 +6064,16 @@ msgstr ""
"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
"om die rekenaarnaamveranderingprobleem te voorkom."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -5912,7 +6083,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5922,40 +6093,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Gelaai tydens herlaaityd"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5967,64 +6143,64 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetkonfigurasie"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wil u nou aan die internet konnekteer?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Konneksie word getoets..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Die stelsel is nou aan die internet gekonnekteer."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6033,111 +6209,116 @@ msgstr ""
"Probeer om u stelsel te herkonfigureer."
#
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konneksiekonfigurasie"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Vul asb. die velde hieronder in"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kaart IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kaartgeheue (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kaart I/O"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kaart IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kaart IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "U persoonlike telefoonnommer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Voorsienernaam (bv voorsiener.co.za)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Voorsiener se telefoonnommer"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Voorsiener DNS 1 (opsioneel)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Voorsiener DNS 2 (opsioneel)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Kies u land"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Belmetode"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Konneksiespoed"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Konneksie tydlimiet (in sekondes)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Gebruikerskode"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Wagwoord"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "heg het gefaal"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
"Die enigste oplossing is om die primre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van ler %s het gefaal: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Korrupte rugsteunler"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6148,194 +6329,194 @@ msgstr ""
"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
"eindig."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "benodig"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "belangrik"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "baie oulik"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "oulik"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "moontlik"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - Nuwe generasie LPR"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Lyndrukkerdiensprogram"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Druk sonder drukkertou"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Eksterne drukker"
#
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Eksterne CUPS-drukker"
#
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Eksterne LPD-drukker"
#
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Netwerkdrukker (sok)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Eksterne Netware-drukker"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Tik drukkertoestel URI in"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Onbekende model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Eksterne drukker"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fout in die skryf van %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(op %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(op hierdie rekenaar)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-bediener IP:"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Verstek)"
@@ -6359,13 +6540,13 @@ msgstr ""
"op te stel nie; drukkers wod outomaties bespeur.\n"
"Indien u twyfel, kies \"Eksterne CUPS-drukker\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Konfigurasie"
#
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Verwyder CUPS-bediener"
@@ -6395,7 +6576,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Die poortnommer moet heeltal wees."
@@ -6403,7 +6584,7 @@ msgstr "Die poortnommer moet heeltal wees."
msgid "CUPS server IP"
msgstr "CUPS-bediener IP:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Poort"
@@ -6411,22 +6592,13 @@ msgstr "Poort"
msgid "Automatic CUPS configuration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Toestel word afgetas..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Toets poorte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Voeg drukker by"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6439,14 +6611,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6465,12 +6637,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Eksterne drukker"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6484,11 +6656,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6498,36 +6670,40 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Gebruik outobespeuring"
#
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Toets poorte"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6535,43 +6711,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6579,7 +6755,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6587,73 +6763,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Kleurkonfigurasie"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Installeer pakket %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6663,28 +6849,28 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"voorsien word."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
#
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6697,35 +6883,35 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "f die bedienernaam f die bediener-IP moet verskaf word!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "SAMBA-deelnaam ontbreek!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6749,7 +6935,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6758,7 +6944,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6766,11 +6952,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6783,28 +6969,28 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-tounaam ontbreek!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6818,19 +7004,19 @@ msgstr ""
"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
"wat saam met die hardeware gekom het."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Drukkerbedienernaam"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -6840,11 +7026,11 @@ msgstr ""
"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
"spoelprogramme ondersteun nie."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -6854,30 +7040,26 @@ msgstr ""
"Die Beskrywing- en Liggingvelde is opsioneel.\n"
"Hulle dien as inligting vir gebruikers."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrywing"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Drukkerdata word gelees..."
#
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6892,27 +7074,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Is dit korrek?"
#
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Drukkermodelkeuse"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6921,18 +7103,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6942,12 +7124,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Internetkonfigurasie"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6955,7 +7137,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6968,7 +7150,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6978,22 +7160,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsie %s moet 'n nommer wees"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opsie %s is buite bereik!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7002,11 +7184,11 @@ msgstr ""
"Wil u hierdie drukker (\"%s\")\n"
"die verstek drukker maak?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Toetsbladsye"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7014,40 +7196,40 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Druk"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standaard toetsbladsy"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Fototoetsbladsy"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7062,7 +7244,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7070,16 +7252,16 @@ msgstr ""
"Toetsbladsy(e) is na die drukker gestuur.\n"
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Het dit reg gewerk?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Geen drukker"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7088,15 +7270,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7105,49 +7287,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7157,7 +7339,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7166,30 +7348,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sluit af"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Sluit af"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7197,36 +7390,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7236,51 +7429,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Moet nie drukkers oordra nie"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Oordrag"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7288,61 +7481,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nuwe drukkernaam"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "%s word oorgedra..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7350,12 +7543,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7365,7 +7558,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -7373,27 +7566,27 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Hoog"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoes"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7409,12 +7602,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7428,68 +7621,68 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Installeerde sagteware word deursoek..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "LPRng word verwyder..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "LPD word verwyder..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Kies drukkerspoelprogram"
#
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Drukkerstelsel:"
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Drukker"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7500,7 +7693,7 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7510,30 +7703,34 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Verlaat"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -7542,104 +7739,104 @@ msgstr ""
"Drukker %s: %s %s\n"
"Wil u hierdie drukker verander?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gaan voort!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Drukkerkonneksietipe"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Drukkervervaardiger, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Verwyder drukker"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Verstek drukker"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7720,24 +7917,62 @@ msgstr "Die wagwoorde stem nie ooreen nie. Probeer weer!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Kan nie ler %s skryf nie"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid het gefaal"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
+"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
+"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
+"wagwoord\n"
+"toegang nie."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
+"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie klinte\n"
+"af kan aanvaar."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Sluit konfigurasie af"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opsies"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -7794,7 +8029,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7865,7 +8100,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7941,7 +8176,7 @@ msgstr ""
"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8036,7 +8271,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8157,6 +8392,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
@@ -8261,6 +8497,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installeer pakket %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8269,6 +8514,160 @@ msgstr ""
"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
"Ek sal die nodige partisies skoonmak."
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Dra drukkerkonfigurasie oor"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datbasis"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datbasis"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Klint"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Uitwis"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Selekteer lOer"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-Klint"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurasie in aabou..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "herkonfigureer"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fout!"
@@ -8307,6 +8706,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Outoinstallasieskyf word geskep."
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8315,12 +8719,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Geluk!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8328,36 +8732,29 @@ msgstr ""
"Die floppie is sukselvol geskep.\n"
"U kan nou weer 'n installasie uitspeel."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installasie"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Voeg 'n gebruiker by"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Teruglusler %s word geformateer"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8365,15 +8762,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8381,715 +8770,781 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Fout met die les van ler %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Korrupte rugsteunler"
#
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN konneksie"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Kies drukkerkonneksie"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipe"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Stel lerstelsels op"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Muistoestel: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2083
+#
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Toets asb. die muis"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN konneksie"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Kies drukkerkonneksie"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Teks"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Kies pakkette om te installeer"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in ler"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Stel lerstelsels op"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9121,7 +9576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9130,7 +9585,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9171,7 +9626,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9199,12 +9654,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9221,7 +9681,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9261,7 +9721,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9272,7 +9732,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9285,7 +9745,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9329,105 +9789,527 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsole hulpprogramme"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Beheersentrum"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "verpligtend"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muis"
+
+#
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Eksterne drukker"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Drukkernaam:"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Drukker"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netwerkkonfigurasie-assistent"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Magtiging"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakketkeuse"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Wag asb."
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Verlaay installasie"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Poort"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netwerkkonfigurasie (%d toestelle)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiel:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Vee profiel uit..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profiel om uit te vee..."
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nuwe profiel..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Bedienernaam:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internettoegang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipe:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Portaal:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Koppelvlak:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigureer internettoegang..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN-konfigurasie"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drywer"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Koppelvlak"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Toestand"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Stel plaaslike netwerk op..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Pas toe"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Gekonnekteer"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konnekteer..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Diskonnekteer..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN konfigurasie"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Toestel %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Herlaaiprotokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Gelaai tydens herlaaityd"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-klint"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Aktiveer nou dadelik"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktiveer nou dadelik"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetkonneksiekonfigurasie"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetkonneksiekonfigurasie"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Konneksietipe:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Portaal"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernetkaart"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Klint"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "gebruik: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulenaam"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Grootte"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "herlaaiskyfskepping"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "verstek"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fout: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "bedryfstelselkernweergawe"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Algemeen"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Kundige area"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opsionele parameters"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Voeg module by"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forseer"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "indien nodig"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "laat SCSI-modules weg"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "laat RAID-modules weg"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Verwyder module"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Uitset"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Bou die skyf"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Daar is geen medium for toestel %s nie.\n"
+"Sit asb. een in."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kon nie vurk nie: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kon nie mkbootdisk ordentelik afsluit nie:\n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s is nie gevind nie"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Klaar"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formatteer floppie"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Berei installasie voor"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "Laai dit"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "beperk"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9436,124 +10318,123 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formateer partisies"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Denstallasie van RPMs"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Sluit konfigurasie af"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Hegpunt"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Kies die partisies om te formatteer"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Kantoor"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Aborteer"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Drukker"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Installeer stelsel"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Selekteer lOer"
#
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Verwyder drukker"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Beginboodskap"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installasie"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Verlaay installasie"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9565,31 +10446,31 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "deaktiveer"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9601,19 +10482,19 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "Aktiveer"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9630,21 +10511,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9652,12 +10533,12 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
#
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9672,19 +10553,19 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9694,17 +10575,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9715,7 +10596,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9727,33 +10608,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9761,44 +10642,44 @@ msgstr ""
"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
"dietyd self regstellings moet aanbring."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9808,206 +10689,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerkkonfigurasie (%d toestelle)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiel:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Vee profiel uit..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiel om uit te vee..."
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuwe profiel..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Bedienernaam:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internettoegang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipe:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Portaal:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Koppelvlak:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigureer internettoegang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN-konfigurasie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drywer"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Koppelvlak"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Toestand"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Stel plaaslike netwerk op..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pas toe"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Gekonnekteer"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nie gekonnekteer nieKabelkonneksie"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konnekteer..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Diskonnekteer..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfigurasie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Herlaaiprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Gelaai tydens herlaaityd"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-klint"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Aktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Konneksietipe:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Portaal"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetkaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klint"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sekuriteitsvlak word gestel."
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Beheersentrum"
@@ -10016,94 +10697,130 @@ msgstr "Beheersentrum"
msgid "Choose the tool you want to use"
msgstr "Kies die instrument wat u wil gebruik"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadees (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frankryk"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Yslandies"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seriaal"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10149,7 +10866,7 @@ msgstr "Kon nie die intydse opgradering begin nie !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10159,51 +10876,47 @@ msgstr ""
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr ""
+msgstr "/Ler/_Nuut"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr ""
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr ""
+msgstr "/Ler/_Oopmaak"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr ""
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr ""
+msgstr "/Ler/_Stoor"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr ""
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr ""
+msgstr "/Ler/Stoor _as"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
-msgstr ""
+msgstr "/Ler/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr ""
+msgstr "/_Opsies"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
+msgstr "/Opsies/Toets"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr ""
+msgstr "/Help/_Aangaande..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10263,7 +10976,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10272,12 +10985,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Konfigurasie"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -10289,69 +11002,99 @@ msgstr ""
"Hier kan u die HTTP en FTP-instaanbedieners\n"
"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "skadu's"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeinnaam"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Verlaat"
+msgid "Ftp Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix e-posbediener, Inn netnuusbediener"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS-bediener"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Dienste"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Drukkerbediener"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatering"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Kleurkonfigurasie"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "Geen 'serial_usb' gevind nie\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Toestel word afgetas..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10395,6 +11138,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Vuurmuurkonfigurasie"
@@ -10746,10 +11501,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - Klank"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Nutsprogramme"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "dokumentasie"
@@ -10855,10 +11606,6 @@ msgstr ""
"en om ook die web deur te blaai."
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Aaaargivering, emulators, monitorprogramme"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Persoonlike finansies"
@@ -10908,2016 +11655,154 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Aborteer"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Kies die verstek gebruiker:"
-
-#
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Pas toe/herlees drukkers"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "U kan die opsies vir module %s hier intik."
-
-#~ msgid "mount failed"
-#~ msgstr "heg het gefaal"
-
-#~ msgid "Low"
-#~ msgstr "Laag"
-
-#~ msgid "Medium"
-#~ msgstr "Medium"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "'n Aantal verbetering op heirdie sekuriteitsvlak, die hoof een is meer\n"
-#~ "sekuriteitswaarskuwings en -toetse."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Herlaaimodus"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Kundige"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux beheer tyd in GMT (Greenwichmeridiaantyd) en vertaal dit dan\n"
-#~ "in u lokale tyd volgends die gekose tydsone."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konnekteer aan die internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Diskonnekteer van die internet"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck het gefaal met kode %d of sein %d"
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigureer netwerkkonneksie (LAN or internet)"
+#~ msgid "Choose options for server"
+#~ msgstr "Selekteer opsies vir bediener"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Na watter skyf wil u skuif?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Kies die pakkette wat u wil installeer"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor is nie opgestel nie"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome werkstasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache is 'n WWW-bediener.\n"
-#~ "Dit kan HTML-lers uitstuur en CGI's hanteer"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafikakaart is nog nie konfigureer nie"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
-#~ "rekenaarname na IP-adresse toe om te skakel."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resolusie is nog nie gekies nie"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Wat is u muistoestel?"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Beskikbare NFS-gedelde hulpbronne word gesoek"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Beskikbare NFS-gedelde hulpbronne van bediner %s word gesoek."
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Beskikbare SAMBA-gedelde hulpbronne word gesoek"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Beskikbare SAMBA-gedelde hulpbronnevan bediener %s word gesoek"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Verlaat"
-
-#~ msgid "Removable media"
-#~ msgstr "Verwyderbare media"
-
-#~ msgid "Active"
-#~ msgstr "Aktief"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nee"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "'n Drukker, model \"%s\", is opgespoor op "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Plaaslikte drukkertoestel"
-
-#~ msgid "Printer Device"
-#~ msgstr "Drukkertoestel:"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Toestel/Lernaam ontbreek"
-
-#
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Stelselmode"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Ander"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipe:"
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Korrupte rugsteunler"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Drukkertoestel:"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Kanselleer"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Sluit af"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Konneksie word begin..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Konneksie word afgesluit..."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Die stelsel is nou ontkoppel."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Total size: "
-#~ msgstr "Totale grootte: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Wag asb.,"
-
-#~ msgid "Total time "
-#~ msgstr "Totale tyd "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Gebruik bestaande konfigurasie vir X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Watter toestel is die drukker aan gekoppel?\n"
-#~ "(let op dat /dev/lp0 ekwiwalent is aan LPT1:)\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Waarskuwing! Die netwerkkaart is alreeds opgestel. Ek gaan dit "
-#~ "herkonfigureer?"
-
-#~ msgid "New"
-#~ msgstr "Nuut"
-
-#~ msgid "Remote"
-#~ msgstr "Ekstern"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr ""
-#~ "Indien bo-gelyste inskrywings nie die nodige inskrywing bevat nie, voeg "
-#~ "dit hier by:"
-
-#~ msgid "Shared resource"
-#~ msgstr "Gedelde hulpbron"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Vaagheid (%s). Wees meer presies\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (verstek %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "U keuse? (Verstek %s tik 'none' vir geen)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "kan nie /etc/sysconfig/autologin oopmaak vir lees nie: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Wil u die netwerk herlaai?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Stem u saam?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ek gaan nou die netwerktoestel herlaai: \n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ek gaan nou die netwerktoestel %s herlaai. Stem u saam?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Indien u spesifiek anders weet, is die gewone keuse \"/dev/hda\"\n"
-#~ "(primre meester IDE-skyf) of \"/dev/sda\" (eerste SCSI-skyf)."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr ""
-#~ "Konneksie tydlimiet (in sekondes) [ beta, nog nie gemplementeer nie ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Kon nie \"%s\" die verstek drukker maak nie!"
-
-#
-#~ msgid "Test the mouse here."
-#~ msgstr "Toets die muis hier."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Kies voorkeurtaal vir installasie en stelselgebruik."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Kies die sleutelborduitleg uit die bostaande lys"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
-
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Die verskillende opsies vir u rekenaar se gebruik (indien u \"Afgemeet"
-#~ "\" \n"
-#~ "of \"Kundige\" sou kies) is die volgende:\n"
-#~ "\n"
-#~ " - Normaal: Indien die rekenaar primr vir daaglikse kantoorgebruik is.\n"
-#~ " Moenie programmeringspakette verwag nie.\n"
-#~ "\n"
-#~ " - Ontwikkeling: Indien die rekenaar vir programontwikkel;ing gebruik "
-#~ "sal\n"
-#~ " word. 'n Volledige stel kompileerders, saamstellers en ontfouters "
-#~ "sal \n"
-#~ " opgesit word.\n"
-#~ "\n"
-#~ " - Bediener: Indien die rekenaar primr 'n bediener sal wees, hetsy met "
-#~ "NFS,\n"
-#~ " SMB, drukkerbediening, NIS magtiging ens.\n"
-#~ " Moenie vensterstelsels soos KDE en GNOME verwag nie.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "U kan nou die pakketgroepe kies wat u wil installeer of opgradeer.\n"
-#~ "\n"
-#~ "DrakX sal dan kyk of daar genoegsame spasie is vir die volledige "
-#~ "installasie.\n"
-#~ "Indien nie sal u verwittig word. Indien u voortgaan, sal van die minder "
-#~ "belangrike\n"
-#~ "pakkette nie installeer word nie.Heel onder kan u die opsie \"Individuele "
-#~ "pakketkeuses\"\n"
-#~ "kies waarna u deur meer as 'n 1000 pakkette sal moet blaai....."
-
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Indienu al die CDs in die bogenoemde lys het, kliek OK.\n"
-#~ "Indien u geen het nie, kliek Kanselleer.\n"
-#~ "Indien sekere CDs weg is, onselekteer hulle en kliek dan OK."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Sleutel in:\n"
-#~ "\n"
-#~ " - IP-adres: Indien u dit nie weet nie vra u netwerkadministrateur of "
-#~ "ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Netmasker: \"255.255.255.0\" is gewoonlik 'n goeie keuse. Indien u "
-#~ "twyfel,\n"
-#~ " vra die netwerkadministrateur of ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Outomatiese IP: Indien u netwerk bootp of dhcp protokolle ondersteun, "
-#~ "kies\n"
-#~ " hierdie opsie. In so 'n geval is 'n IP-adresinskrywing nie nodig "
-#~ "nie. Indien u\n"
-#~ " twyfel, vra die netwerkadministrateur of ISP.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
-#~ "die netwerkadministrateur."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Indien u instaanbedieners wil gebruik, stel hulle hier op.. Indien u "
-#~ "twyfel vra\n"
-#~ "die netwerkadministrateur of ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "U kan 'n kriptografiese pakket installeer indien u internetkonneksie reg "
-#~ "opgestel is.\n"
-#~ "Kies eers die spiel waar u die pakket vanaf wil aflaai en kies dan die "
-#~ "pakkette\n"
-#~ "om te installeer.\n"
-#~ "\n"
-#~ "Let wel: U moet 'n spiel en pakkette selekteer n.a.l plaaslike wetgewing."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "U kan nou die 'root' wagwoord voorsien vir u Mandrake Linux stelsel.\n"
-#~ "Die wagworod moet twee keer ingevoer word en te verfier dat dit\n"
-#~ "korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is die administrateur van die stelsel en is die enigste gebruiker\n"
-#~ "wat toegelaat wiord om die stelselkonfigurasie te verander. In di lig,\n"
-#~ "kies asb. die wagwoord sorgvuldig. Ongemagtigde gebruik van die root\n"
-#~ "rekening kan uitermatiglik nadelig wees vir die integriteit van die\n"
-#~ "stelsel. Die wagwoord moet alfanumeries wees en ten minste 8 karakters\n"
-#~ "lank. MOENIE die wagwoord rens neerskryf nie. Moet dit nie te lank of "
-#~ "te\n"
-#~ "ingwikkeld maak nie, u moet dit met min moeite onthou."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "U mag nou een of meer gewone gebruikersrekeninge skep. Dit is in\n"
-#~ "teenstelling met die bevoorregte 'root' rekening. Elke "
-#~ "gebruikersrekening\n"
-#~ "sal oor sy eie voorkeure (grafiese omgewing, programstelling, ens.) en\n"
-#~ "tuisgids (waar hierdie instellings gestoor word) beskik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u in die stelsel intkeen met u eie gebruikerskode en slegs\n"
-#~ "'root' gebruik vir administratiewe doeleindes.\n"
-#~ "\n"
-#~ "Skep eerstens 'n rekening vir uself. Selfs indien u die enigste "
-#~ "gebruiker\n"
-#~ "op die stelsel sal wees, moet u NIE as 'root' vir u daaglikse gebruik\n"
-#~ "inteken NIE. 'n Onbruikbare stelsel kan net een tikfout ver weg wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u aanteken met die gebruikerskode wat u hier skep en "
-#~ "'root'\n"
-#~ "net vir admintratiewe doeleindes gebruik."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO en Grub hoof opsies is:\n"
-#~ " - Herlaaitoestel: Stel die naam van die toestel (bv. hardeskyfpartisie\n"
-#~ " wat die herlaaisektor bevat. Indien u spesifiek anders weet\n"
-#~ " kies \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Videomode: Kies die spesifieke VGA teksmode wat gebruik moet word "
-#~ "met\n"
-#~ " herlaai. Die volgende waardes is beskikbaar:\n"
-#~ " * normaal: selekteer normale 80x25 mode.\n"
-#~ " * syfer: die ooreenstemmende teksmode."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO 'n herlaaiprogram vir SPARC. Dir kan GNU/Linux of enige ander\n"
-#~ "bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word "
-#~ "hierdie\n"
-#~ "bedryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing "
-#~ "maak\n"
-#~ "op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
-#~ "\n"
-#~ "\n"
-#~ "U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
-#~ "nodige\n"
-#~ "inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om "
-#~ "die\n"
-#~ "betrokke bedryfstelsels te laai."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO hoofkeuses is:\n"
-#~ " - Herlaaitoestel: Waar wil u die inligting om GNU/Linux te laai plaas? "
-#~ "Die beste is\n"
-#~ "gewoonlik om \"Eerste hardeskyfsektor (MBR)\" te kies.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Dit is tyd om die X-vensterstelsel op te stel. Hierdie is die kern van\n"
-#~ "die GNU/Linux grafiese omgewing. Vir hierdie doeleindes, moet u 'n "
-#~ "videokaart\n"
-#~ "en monitor kies. Meeste van hierdie stappe is outomaties en u moet net\n"
-#~ "verifier of dit korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na konfigurasie sal X outmaties gelaai word, behalwe as u DrakX "
-#~ "andersins\n"
-#~ "aans. Indien die stelling u nie pas nie, kom terug en verander so veel\n"
-#~ "keer soos nodig."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Indien iets verkeerd is in die X-konfigurasie, gebruik hierdie opsies om\n"
-#~ "die X-vensterstelsel reg op te stel."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Indien u verkies om 'n grafiese intekenarea te kry, kies \"Ja\", "
-#~ "andersins \"Nee\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "U stelsel gaan nou herlaai.\n"
-#~ "\n"
-#~ "U nuwe Mandrake Linux stelsel sal outomaties laai. Indien u 'n ander\n"
-#~ " bedryfstelsel wil laai, lees die ekstra instruksies noukeurig deur."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skryf /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatteer almal"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Na formatering van alle partisies"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "alle data om hierdie partisies sal verloor word"
-
-#~ msgid "Reload"
-#~ msgstr "Herlaai"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Wil u 'n outoinstallasieskyf maak vir Linux replikasie?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL konfigurasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier\n"
-#~ "op te stel nie; drukkers wod outomaties bespeur.\n"
-#~ "Indien u twyfel, kies \"Eksterne CUPS-bediener\"."
-
-#~ msgid "Remote queue"
-#~ msgstr "Eksterne drukkertou"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Eksterne tounaam ontbreek!"
-
-#~ msgid "Command line"
-#~ msgstr "Instruksielyn"
-
-#~ msgid "Modify printer"
-#~ msgstr "Verander drukker"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Netwerkmonitor"
-
-#~ msgid "Profile "
-#~ msgstr "Profiel"
-
-#~ msgid "Connection Time: "
-#~ msgstr "Konneksietyd"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Internetkonneksie"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Internetdiskonneksie"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Diskonnekteer van die internet het misluk."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Diskonneksie van die internet sukssevol"
-
-#~ msgid "Connection complete."
-#~ msgstr "Konneksie suksesvol"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Verstek loopvlak"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Konfigurasielerinhoud is onverstaanbaar"
-
-#~ msgid "Adapter"
-#~ msgstr "Toestel"
-
-#~ msgid "Disable network"
-#~ msgstr "Sper netwerkstelsel"
-
-#~ msgid "Enable network"
-#~ msgstr "Aktiveer netwerk"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (of ADSL) konneksie"
-
-#~ msgid "Choose"
-#~ msgstr "kies"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "U kan die URI, om die drukker via CUPS te gebruik, direk spesifiseer"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Ja, druk ASCII toetsbladsy"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Ja, druk die PostScript toetsbladsy"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papiergrootte"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Stoot papier uit na voltooiing?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-dryweropsies"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kleurdiepte opsies"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Druk teks as PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Korrigeer trapsgewyse teks?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Aantal bladsye per uitsetblad?"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Regs/Links kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Bo/Onder kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Ekstra GhostScriptopsies"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Ekstra teksopsies"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Omgekeerde bladsyorde"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Kies eksterne drukkerkonneksie"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Elke drukker benodig 'n naam (bv. lp)\n"
-#~ "Ander parameters soos 'n beskrywing en 'n ligging kan ook gegee word.\n"
-#~ "Wat is die drukker se naam en wat is die konneksietipe?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Elke drukkertou (waar drukstukke heengaan) het 'n naam nodig \n"
-#~ "(baie keer 'lp') and 'n gekoppelde spoelgids. Watter naam en\n"
-#~ "spoelgids moet gebruik word?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Tounaam"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spoelgids"
-
-#~ msgid "Disable"
-#~ msgstr "Deaktiveer"
-
-#~ msgid "Enable"
-#~ msgstr "Aktiveer"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Om 'n veiliger stelsel te bou, moet u \"Gebruik skaduler\" \n"
-#~ "en \"Gebruik MD5 wagwoorde\" kies."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS wil gebruik, kies \"Gebruik NIS\" hier. Indien u "
-#~ "twyfel vra\n"
-#~ "die sysadmin.."
-
-#~ msgid "yellow pages"
-#~ msgstr "geelbladsye"
-
-#~ msgid "Light configuration"
-#~ msgstr "Ligte konfigurasie"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Voorsiener DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Voorsiener DNS 2"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Wil u nou aan die internet konnekteer?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Selekteer lOer"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Konfigureer internetkonneksie"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Hierdie skrip laai de nodige modules vir 'n USB-muis."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Nou dat u internetkonfigurasie opgestel is,\n"
-#~ "moet u die rekenaar opstel om dit te deel.\n"
-#~ "LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
-#~ "stel.\n"
-#~ "\n"
-#~ "Wil u internetdeling opstel?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Outomatiese afhanklikhede"
-
-#, fuzzy
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Stel X op"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Maar 'n herlaaiskyf"
-
-#~ msgid "Choice"
-#~ msgstr "Keuse"
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "U kan nou 'n paar diverse opsies vir u stelsel kies.\n"
-#~ "\n"
-#~ " - Optimeer hardeskyf. Hierdie kan hardeskyfwerksverrigting verbeter, "
-#~ "maar is net\n"
-#~ " vir kundige gebruikers bedoel. Sekere gebroke koppelvlakke kan data "
-#~ "runeer.\n"
-#~ " Die bedryfstelsel kern het 'n swartlys van hardeskywe, maar indien u "
-#~ "onaangename\n"
-#~ " verrassings wil voorkom los hierdie opsie uit.\n"
-#~ "\n"
-#~ " - Sekuriteitsvlak: Lees die handleiding vir volledigheid, maar in "
-#~ "kort:\n"
-#~ " Kies \"Medium\" indien u twyfel. Vir 'n hoogs veilige stelsel kies "
-#~ "\"Paranoes\",\n"
-#~ " maar pasop: OP HIERDIE VLAK KLAN SELFS NIE 'ROOT' OP DIE KONSOLE\n"
-#~ " AANTEKEN NIE. Vir 'root' toegang moet 'n gewone gebruiker eers "
-#~ "aanteken en dan\n"
-#~ " \"su\". Dit is uitsluitlik vir 'n bediener bedoel.\n"
-#~ "\n"
-#~ " - Presiese geheuegrootte: Daar is geen ongelukkig standaard metode om "
-#~ "die geheuegrootte\n"
-#~ " uit die BIOS te bepaal nie. Soms sal Linux nie die grootte korrek "
-#~ "bepaal nie. In hierdie geval\n"
-#~ " kan die korrekte grootte her gegee word. Let daarop dat 'n verskil "
-#~ "van 2-4MB normaal is.\n"
-#~ "\n"
-#~ " - Outohegting van verwyderbare media: Indien u nie elke keer die "
-#~ "hegting per intik wil doen\n"
-#~ " nie (van CDROMs, floppies, ZIpaandrywers ens.), selekteer hierdie "
-#~ "opsie.\n"
#~ "\n"
-#~ " - NumLock: Indien u NumLock wil aansit by herlaaityd, selekteer hierdie "
-#~ "opsie. Dit sal\n"
-#~ " nie noodwendig NumLock onder X aansit nie."
+#~ "probeer van die parameters verander"
-#~ msgid "Miscellaneous"
-#~ msgstr "Arbitrre items"
+#~ msgid "An error occurred:"
+#~ msgstr "Daar was 'n fout:"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Diverse vrae"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "uitgang binne %ds"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "U kan nie supermount in ho sekuriteitsvlak gebruik nie."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Is dit korrek?"
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Warskuwing: IN HIERDIE SEKURITEITSVLAK, kan ROOT nie by die KONSOLE "
-#~ "AANTEKEN nie.\n"
-#~ "OM 'root' te wees moet u eers as 'n gewone gebruiker aanteken en dan 'su'."
-#~ "Hierdie is spesifiek vir bedienergebruik. U is gewaarsku!"
-
-#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Wees versigtig, met NumLock aan sal heelwat sleutels as syfers eerder as "
-#~ "karakters na vore kom. (Bv 'n 'p' mag dalk '6' wees)"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Eerste DNS bediener"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Tweede DNS bediener"
-
-#~ msgid "loopback"
-#~ msgstr "teruglus"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Watter herlaaistelsel(s) verlang u?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Outoinstallasieskyf"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Soekj vir 'n modem?"
-
-#~ msgid "Configure local network"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Plaaslike netwerk is alreeds opgestel: Wil u?"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Konfigureer tydsone"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(kan data korrupteer)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Aansit van NumLock met herlaai"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Bevestig wagwoord"
-
-#~ msgid "default"
-#~ msgstr "verstek"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Waarvoor word u stelsel gebruik?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Gebruik diskdrake"
-
-#
-#~ msgid "Customized"
-#~ msgstr "Gespesialiseerde"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Is u 'n kundige? U sal sal toegelaat word om kragtige, maar\n"
-#~ "gevaarlike keuses uit te oefen\n"
-#~ "\n"
-#~ "U sal vrae gevra word soos: \"Gebruik skaduwagwoorde?\"\n"
-#~ "Is u reg vir sulke vrae?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Gebruik skaduler"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Gebruik MD5 wagwoorde"
-
-#~ msgid "Search"
-#~ msgstr "Soek"
-
-#~ msgid "Package"
-#~ msgstr "Pakket"
-
-#~ msgid "Tree"
-#~ msgstr "Boom"
-
-#~ msgid "Sort by"
-#~ msgstr "Gesorteer volgens"
-
-#~ msgid "Category"
-#~ msgstr "Kategorie"
-
-#~ msgid "Installed packages"
-#~ msgstr "Installeerde pakkette"
-
-#~ msgid "Available packages"
-#~ msgstr "Beskikbare pakkette"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Wys net eindnodes"
-
-#~ msgid "Expand all"
-#~ msgstr "Maak boom oop"
-
-#~ msgid "Collapse all"
-#~ msgstr "Maak boom toe"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Voeg pakketareas by"
-
-#~ msgid "Update location"
-#~ msgstr "Dateer ligging op"
-
-#~ msgid "Find Package"
-#~ msgstr "Soek pakket"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Soek pakket met ler"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Skakel tussen installeerde en beskikbare"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Afhanklikhede word getoets"
-
-#
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Die volgende pakkette gaan verwyder word"
-
-#~ msgid "Regexp"
-#~ msgstr "Regex"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Watter pakket soek vir"
-
-#~ msgid "No match"
-#~ msgstr "Geen treffer"
-
-#~ msgid "No more match"
-#~ msgstr "Niks meer treffers nie"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake is in lae-geheue opstelling.\n"
-#~ "Ek gaan rpmdrake herlaai om soektogte toe te laat."
-
-#
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Watter ler verlang u?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Wat soek vir?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Gee 'n (engelse) naam (bv. 'extra')"
-
-#~ msgid "Directory"
-#~ msgstr "Lergids"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Geen cdrom beskikbaar nie (niks in /mnt/cdrom nie)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL van die lergids met die RPM's"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Vir FTP en HTTP, moet die pad vir die hdlist gegee word\n"
-#~ "Dit moet relatief tot bg. URL wees."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Voorsien asb. die volgende inligting"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s is lareeds in gebruik"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Hier is fout, probeer van die parameters verander"
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Die RPM's se basis word opgedateer"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 bediener: %s"
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Inskrywing %s gaan verwyder word"
+#~ msgid "Show all"
+#~ msgstr "Vertoon almal"
-#~ msgid "Finding leaves"
-#~ msgstr "Eindnodes word gesoek"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window konfigurasie word opgestel"
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Soek van eindnodes neem 'n tydjie"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Ek het 'n ISDN-kaart gevind\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Ander lande"
-
-#
-#~ msgid "In which country are you located ?"
-#~ msgstr "In watter land is u?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Alcatel modem"
-
-#~ msgid "ECI modem"
-#~ msgstr "ECI modem"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr "Indien u ADSL-modem 'n Alcatel is, kies Alcatel, andersins ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "moenie pppoe gebruik nie"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (belangrik)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (baie oulik)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (oulik)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-
-#~ msgid "Czech"
-#~ msgstr "Tseggies"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovaaks"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "Kon nie ipchains RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "Kon nie dhcp RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "Kon nie linuxconf RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "Kon nie bind RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "Kon nie caching-nameserver RPM m.b.v. urpmi installeer nie. "
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Herkonfigureer plaaslike netwerk"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr "U rekenaar is opgestel om sy internet konneksie te deel.\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Internetkonneksiedeling is ontsper.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Konnekteer aan die internet met gewone modem"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Konnekteer aan die internet met ISDN"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Konnekteer aan die internet met DSL (of ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Konnekteer aan die internet met kabel"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Tyd, in sekondes, van onaktiwiteit voor diskonneksie.\n"
-#~ "Los oop om di funksie te sper."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Duitsland (1TR6)"
-
-#~ msgid "What do you wish to do?"
+#~ msgid "What do you want to do?"
#~ msgstr "Wat wil u doen?"
-#~ msgid "Install/Rescue"
-#~ msgstr "Installasie/Redding"
+#~ msgid "Change Monitor"
+#~ msgstr "Verander monitor"
-#~ msgid "Rescue"
-#~ msgstr "Redding"
+#~ msgid "Change Graphics card"
+#~ msgstr "Verander videokaart"
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Watter partisietipe verlang u?"
+#~ msgid "Change Server options"
+#~ msgstr "Verander bedienerinstellings"
-#, fuzzy
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
+#~ msgid "Change Resolution"
+#~ msgstr "Verander resolusie"
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
-#~ "\n"
-#~ "- Ctrl-c to create a new partition (when an empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ "- Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ "- Ctrl-m to set the mount point\n"
-#~ msgstr ""
-#~ "U kan nou kies watter partisie(s) gebruik kan word om Mandrake Linux\n"
-#~ "op te installeer indien hulle reeds bestaan (geskep uit 'n vorige "
-#~ "installasie,\n"
-#~ "of met 'n ander partisieprogram). In ander gevalle moet die partisies nog "
-#~ "geskep\n"
-#~ "word. Hierdie operasie bestan uit die logiese verdeling van die hardeskyf "
-#~ "in\n"
-#~ "aparte bruikbare areas\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u nuwe partisies moet skep, gebruik \"Outo-allokasie\" om "
-#~ "outomaties\n"
-#~ "partisies vir Linux te skep. U kan die skyf vir partisionering selekteer "
-#~ "deur\n"
-#~ "op \"hda\" te kliek vir die eerste IDE hardeskyf, hdb vir die tweede of "
-#~ "\"sda\"\n"
-#~ "vir die eerste SCSI skyf ens.\n"
-#~ "\n"
-#~ "\n"
-#~ "Twee algemene partisies is die \"root\" partisie (/), wat die wortel is\n"
-#~ "van die lergidsstelsel, en /boot, wat die nodige lers bevat om die\n"
-#~ "bedryfstelsel aan die gang te kry wanneer die rekenaar aangesit word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Omdat die gevolge van hierdie proses onomkeerbaar is, kan partisionering "
-#~ "baie\n"
-#~ "intimiderend en stresvol vir die onervare gebruiker wees. DiskDrake maak "
-#~ "di\n"
-#~ "proses heelwat makliker. Lees die dokumentasie en neem u tyd voor u "
-#~ "voortgaan.\n"
-#~ "\n"
-#~ "\n"
-#~ "U kan enige opsie gebruik deur die sleutelbord te gebruik. Navigeer deur "
-#~ "diepartisies met\n"
-#~ "Tab en die pyltjies. Wanneer 'n partisie gekies is, gebruik:\n"
-#~ "\n"
-#~ "- Ctrl-c om 'n partisie te skep (wanneer 'n le partisie gekies is)\n"
-#~ "\n"
-#~ "- Ctrl-d om 'n partisie uit te vee\n"
-#~ "\n"
-#~ "- Ctrl-m om 'n partisie te heg\n"
+#~ msgid "Show information"
+#~ msgstr "Vertoon inligting"
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Enige partisies wat nuut geskep is, moet eers formateer word voor "
-#~ "gebruik.\n"
-#~ "(Formateering beteken die skep van 'n lOerstelsel). U kan nou kies om "
-#~ "ook\n"
-#~ "bestaande partisies te herformateer en die data daarop te vernietig.\n"
-#~ "NOTA: Dit is nie nodig om alle bestaande partisies te herformateer nie,\n"
-#~ "veral indien daar data op is wat u wil hou. 'n Tipiese voorbeeld is /home."
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Die gekose pakette gaan nou installeer word. Hierdie proses\n"
-#~ "sal 'n paar minute neem. Indien u 'n opgradering gekies, kan dit\n"
-#~ "nog langer neem voordat die opgradering begin."
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Indien DrakX nie u muis kon vind nie, of as u wil sien\n"
-#~ "wat gedoen is, sal u moet die bg. lys van muistoestelle gepresenteer\n"
-#~ "word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u met DrakX saamstem, spring na die afdeling wat u\n"
-#~ "verlang deur op die kierkaart links te kliek. Andersins kies\n"
-#~ "'n muistoetsel in die kieskaart wat u dink die beste klop met die\n"
-#~ "muis wat u het.\n"
-#~ "\n"
-#~ "In geval van 'n seriaalmuis, moet u ook vir DrakX die seriaalpoort\n"
-#~ "gee."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Hierdie afdeling is vir die konfigurasie van 'n lokaalareanetwerk\n"
-#~ "of 'n modem.\n"
-#~ "\n"
-#~ "Kies \"LAN\" en DrakX sal probeer om 'n Ethernetkaart in u rekenaar\n"
-#~ "te vind. PCI-kaarte sal heelwaarskynlik outomaties gevind en\n"
-#~ "inisialiseer word. Indien u 'n ISA-kaart het sal daar 'n kieslys\n"
-#~ "vertoon word waaruit u dan u kaart moet selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "indien u Mandrake Linux installeer op 'n stelsel wat deel is van 'n\n"
-#~ "bestaande netwerk, sal due netwerk administrateur u alreeds met die\n"
-#~ "nodige inligting (IP adres, netmasker en rekenaarnaam) voorsien het.\n"
-#~ "Indien u 'n privaat netwerk opstel (sso by die huis), dan moet u die\n"
-#~ "adresse kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kies \"Uitbel met Modem\" en die internetkonneksie vir 'n modem\n"
-#~ "sal opgestel word. DrakX sal u modem probeer bepaal. Indien di faal\n"
-#~ "sal u die modem en korrekte seriaalpoort moet selekteer."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "GNU/Linux kan verskeie drukkers gebruik. Elkeen van hierdie tipes\n"
-#~ "verlang 'n ander opstelling. Let asb. daarop dat die verstek drukkernaam "
-#~ "'lp' is.\n"
-#~ "U moet so 'n drukker skep. U kan egter addisionele name bysit deur dit "
-#~ "met die '|' karakterte skei.\n"
-#~ "Derhalwe kan u dus die drukker 'n meer betekenisvolle naam ook toeken.\n"
-#~ "Die drukker met 'lp' in die naam sal die verstek drukker wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u drukker direk aan die rekenaar gekoppel is, selekteer\n"
-#~ "\"Lokale Drukker\". U moet dan die korrekte poort uitwys\n"
-#~ "en die gepaslike filter selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n drukker om 'n ander Unix-rekenaar wil gebruik, kies\n"
-#~ "\"Eksterne lpd\". In hierdie geval moet u die naam van die drukkertou\n"
-#~ "op die ander rekenaar ken.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u toegang tot 'n SMB drukker (op 'n Windows-rekenaar) verlang,\n"
-#~ "moet u die SMB/NETBIOS naam (nie TCP/IP-naam nie) ken en moontlik ook "
-#~ "die\n"
-#~ "IP-adres. Daarby moet u ook 'n gebruikerskode, werkgroep en wagwoord en "
-#~ "die\n"
-#~ "drukkernaam voorsien. Dieselfde geld vir 'n Netware-drukker, behalwe dat "
-#~ "u\n"
-#~ "die werkgroep hoef te voorsien nie."
-
-# ../help.pm_.c:240 ../help.pm_.c:481 msgid ""
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "Dit word sterk aanbeveel dat u \"Ja\" antwoord. Indien u Windows sou\n"
-#~ "herinstalleer, sal dit die herlaaisektor oorskryf. Indien u die die "
-#~ "herlaaiskyf\n"
-#~ "gemaak het nie, sal u nie weer in GNU/Linux kan inkom nie."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Draai u wiel!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Vergeet van die veranderinge?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Wat is u muistipe?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "OUtomatiese resolusies"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Ek gaan nou probeer m die beskikbare resolusies te kry.\n"
-#~ "Die skerm sal 'n paar maal flits...\n"
-#~ "U kan die skerm afsit indien u wil, ek sal biep wanneer ek klaar is"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Ek kan probeer om al die beskikbare resolusies te kry (bv. 800x600).\n"
-#~ "Soms kan die rekenaar ophang.\n"
-#~ "Wil u probeer?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Geen geldige modes was gevind nie\n"
-#~ "Probeer 'n ander videokaart of monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Outomatiese resolusie soektog"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "DHCP-klint"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB-muis"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB-muis (2 knoppe)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB-muis (3+ knoppe)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB-muis"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB-muis (2 knoppe)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB-muis (3+ knoppe)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
+#~ msgid "Test again"
+#~ msgstr "Toets weer"
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
+#~ msgid "Setting security level"
+#~ msgstr "Sekuriteitsvlak word gestel."
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Busmuis"
+#~ msgid "Graphics card"
+#~ msgstr "Videokaart"
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft busmuis"
+#~ msgid "Select a graphics card"
+#~ msgstr "Selekteer 'n videokaart"
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech busmuis"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Muis (3 knoppe of meer)"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standaard VGA, 640x480 teen 60 Hz"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A of beter (seriaal)"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 teen 56 Hz"
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (seriaal)"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (seriaal)"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (seriaal)"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generiese Muis (seriaal)"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft aanpasbaar (seriaal)"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Generiese 3-knopmuis (seriaal)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (seriaal)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Ek moet u netwerkkaart konfigureer om aan die internet te konnekteer."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "NFS heg het gefaal"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-#~ msgid "Socket"
-#~ msgstr "Sok"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-#~ msgid "Cryptographic"
-#~ msgstr "Kriptografie"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "DrakX sal konfigurasielers maak vir beide XFree 3.3 en XFree 4.0.\n"
-#~ "By verstek sal die 4.0 bediener gebruik word indien u videokaart "
-#~ "ondersteun. word\n"
-#~ "\n"
-#~ "Wil u XFree 3.3 behou?"
-
-#~ msgid "Configure LAN"
-#~ msgstr "Stel LAN op"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "Moenie netwerk opstel nie"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Wil u die netwerk vir u stelsel opstel?"
-
-#~ msgid "Show less"
-#~ msgstr "Vertoon minder"
-
-#~ msgid "Show more"
-#~ msgstr "Vertoon meer"
-
-#, fuzzy
-#~ msgid "tie"
-#~ msgstr "koppel"
-
-#~ msgid "brunette"
-#~ msgstr "brunette"
-
-#~ msgid "girl"
-#~ msgstr "meisie"
-
-#~ msgid "woman-blond"
-#~ msgstr "blondine"
-
-#, fuzzy
-#~ msgid "automagic"
-#~ msgstr "automagic"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Soek PCMCIA-kaarte?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Soek vir %s-toestelle?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Wil u die opbelkonneksie (modem) konfigureer?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Soek vir PCI-toestelle?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Wortelpartisisie word gesoek."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Hierdie is nie 'n wortellerstelsel nie, kies asb. 'n ander een."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Watter partisie moet u wortelpartisie wees?"
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "U het geen Windows-partisies nie!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "U het nie genoeg spasie vir Lnx4win nie."
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#, fuzzy
#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
+#~ "persentasie van pakkette wat u wil installeer.\n"
#~ "\n"
+#~ "'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
+#~ "'n persentasie van 100%% sal alles gekose pakkette installeer."
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#, fuzzy
#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
#~ "\n"
+#~ "Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
+#~ "'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
+#~ "'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-#~ msgid "SILO main options"
-#~ msgstr "SILO hoofopsies"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Hier is die huidige SILO-inskrywings\n"
-#~ "U kan byvoeg or verwyder soos nodig."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Hierdie etiket is alreeds in gebruik"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO installasie het gefaal a.g.v. hierdie fout: "
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "DrakX will probeer om eers te kyk vir een of meer bekende PCI\n"
-#~ "SCSI kaarte. Indien iets gevind word, en die drywers daarvoor\n"
-#~ "bekend is, sal dit outomaties bygevoeg word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n ISA SCSI kaart het, of 'n onbekende PCI SCSI kaart, of\n"
-#~ "geen SCSI kaart nie, sa; u gevra word of daar enige SCSI kaarte is.\n"
-#~ "Indien daar geen is nie, antwoord \"Nee\". Indien daar wel is, antwoord\n"
-#~ "\"Ja\" en 'n lys van kaarte sal gegee word waaruit u moet kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na seleksie van die drywer, sal DrakX of vra vir opsies. Probeer eers\n"
-#~ "dat die drywer die hardeware ondervra; dit werk gewoonlik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien nie, moenie die dokumentasie van u hardeware vergeet nie; ook nie\n"
-#~ "enige inligting van Windows (indien u dit gennstalleer het). Hierdie is\n"
-#~ "opsies wat u die drywer moet verskaf."
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Persentasie pakkette om te installeer"
-#~ msgid "Shutting down"
-#~ msgstr "Stelselafsluiting"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Gebruik sekuriteitsvlak"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index bad02e711..8f5d7ac41 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -1,39 +1,68 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2000 Free Software Foundation, Inc.
-# Djaghlouli Kamel <djkamel@chez.com>, 2000.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Amr Fathy <amr10@menanet.net>, 2001.
# Mohammed Gamal <f2c2001@yahoo.com>, 2002
-# Boujaj Mostapha Ibrahim <mboujaj@yahoo.de>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-08 02:00GMT\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
-"Language-Team: ARABIC <ar@li.org>\n"
+"Language-Team: Arabic \n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "اعداد كل الرؤوس بشكل مستقل"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 كيلوبايت"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "استخدام امتداد Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 كيلوبايت"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 ميغابايت أو أكثر"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "إختر خادم X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "خادم X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "إعداد متعدد الرؤوس"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,41 +70,44 @@ msgstr ""
"نظامك يدعم الإعداد متعدد الرؤوس.\n"
"ماذا تريد أن تفعل؟"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "بطاقة الشاشة"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "اختر بطاقة شاشة"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "إعداد XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "إختر خادم X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "أي اعداد لـXFree تريد؟"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "خادم X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "اعداد كل الرؤوس بشكل مستقل"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "إختر مشغل X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "استخدام امتداد Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "مشغل X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "أي اعداد لـXFree تريد؟"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +117,17 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل أفضل في الوضع "
"ثنائي الأبعاد."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
-"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +139,58 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل أفضل في وضعية "
"الرسوم ثنائية الأبعاد."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
+"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (مشغل عرض التثبيت)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "إعداد XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "إختر خيارات الخادم"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"هل تريد حفظ التغييرات؟\n"
+"الإعداد الحالي هو:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "إختر شاشة"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "الشاشة"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "مخصص"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generic"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "تراجع"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,510 +211,325 @@ msgstr ""
"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "نسبة الإنعاش الأفقي"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "نسبة الإنعاش الرأسي"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "الشاشة غير معدّة"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ام يتم اعداد دقة العرض حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "هل تريد تجربة الإعداد؟"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "اختبار الإعداد"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 لون (8 بت)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"حاول تغيير بعض المعاملات"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ألف لون (15 بت)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "ظهر خطأ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ألف لون (16 بت)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "المغادرة في %d ثوان"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 مليون لون (24 بت)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "هل هذا هو الضبط الصحيح؟"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 بليون لون (32 بت)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "دقة العرض"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "دقة العرض"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "اختر دقة العرض و عمق الألوام"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "بطاقة الشاشة: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "خادم XFree86 :%s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "أكثر"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "الغاء"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "موافق"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "وضعية الخبير"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "اظهار الكل"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "هل تريد تجربة الإعداد؟"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "دقة العرض"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "اختبار الإعداد"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "لوحة المفاتيح: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "نوع الفأرة: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "جهاز الفأرة: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "الشاشة: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "تزامن الشاشة الأفقي: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "انعاش الشاشة الرأسي: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "بطاقة الشاشة: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "معرف بطاقة الشاشة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "عمق الألوان: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "دقة العرض: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "خادم XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "مشغل XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "جاري تجهيز تهيئة X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ماذا تريد أن تفعل؟"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "تغيير الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "تغيير بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "تغيير خيارات الخادم"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "تغيير دقة العرض"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "عرض المعلومات"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
+msgstr "واجهة رسومية عند بدء التشغيل"
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "اختبر مرة أخرى"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "خروج"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"هل تريد حفظ التغييرات؟\n"
-"الإعداد الحالي هو:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X عند بدء التشغيل"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 لون )8 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ألف لون )15 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ألف لون )16 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 مليون لون )24 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 بليون لون )32 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 ميغابايت أو أكثر"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor that can do 1600x1200 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor that can do 1600x1200 at 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "القطاع اول من تجزئة الإقلاع"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "القطاع الأول من القرص (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "تثبيت SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "تثبيت LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO مع قائمة رسومية"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "الإقلاع من DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "تثبيت محمل الإقلاع"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA )لا يعمل مع أنظمة الـBIOS القديمة("
+msgstr "LBA (لا يعمل مع أنظمة الـBIOS القديمة)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "مدمج"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "مدمج"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "وضعية الفيدية"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "توقيت ما قبل اقلاع الصورة الافتراضية"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
-msgstr "???§?????????© ?§???³?????????±"
+msgstr "كلمة المرور"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
-msgstr "كلمة المرور )ثانيةً("
+msgstr "كلمة المرور (ثانية)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "تشديد خيارات سطر الأوامر"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "تشديد"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "قم بتنظيف /tmp عند كل إقلاع"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "حجم الذاكرة الدقيق عند الحاجة )تم ايجاد %d ميغابايت("
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "تمكين التشكيلات المتعددة"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "اكتب حجم الذاكرة بالميغابايت"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "رجاء جاول مرة أخرى"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "رسالة Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware Delay"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "الوقت الأقصى لإقلاع النواة"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "تمكين الإقلاع من القرص المدمج؟"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "تمكين اقلاع OF؟"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "نظام التشغيل الافتراضي؟"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -679,83 +538,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-"ها هنا المخلات المختلفة.\n"
+"ها هنا المدخلات المختلفة.\n"
"يمكنك اضافة مدخلات أخرى أو تغيير الموجودين."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
-msgstr "إضافة"
+msgstr "اضافة"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "انتهى"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "تعديل"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل الذي تريد اضافته؟"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "لينكس"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "نظام آخر (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "نظام آخر (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "نظام آخر (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "صورة"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "الجذر"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "الحاق"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "للقراءة و الكتابة"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "الجدول"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
-msgstr "Unsafe"
+msgstr "غير آمن"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "عنوان"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "الإفتراضي"
@@ -787,53 +646,75 @@ msgstr "يجب عليك تحديد تقسيم جذر"
msgid "This label is already used"
msgstr "هذه العلامة مستخدمة مسبقا"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "تم ايجاد %s %s واجهات"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "هل عندك واحدة أخرى؟"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "لا"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "نعم"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "عرض معلومات العتاد"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
-msgstr ")الوحدة %s("
+msgstr "(الوحدة %s)"
+
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
+"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
+"مثلا, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "خيارات الوحدة:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -851,37 +732,15 @@ msgstr ""
"لكن\n"
"لا يجب أن يتسبب ذلك في أي مشاكل."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "تحقق آلي"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "حدد الخيارات"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
-"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
-"مثلا, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "خيارات الوحدة:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -890,49 +749,54 @@ msgstr ""
"فشل تحميل الوحدة %s.\n"
"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "الوصول الى برامج X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "اسمح بـ\"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "الوصول الى ملفات الإدارة"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(تم اضافة %s مسبقا)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "كلمة المرور هذه بسيطة جدا"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "رجاءً قم بإعطاء اسم مستخدم"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجب أن يحتوي فقط على الحروف الصغيرة, الأرقام, `-' و `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "اسم المستخدم مُضاف مسبقا"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "اضف مستخدم"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -941,32 +805,32 @@ msgstr ""
"أدخل مستخدم\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "وافق على المستخدم"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "اسم المستخدم"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "الغلاف"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "أيقونة"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "دخول آلي"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -974,87 +838,67 @@ msgstr ""
"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
"هل تريد استخدام هذه الميزة؟"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "اختر المستخدم الافتراضي:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "اختر مدير النوافذ الذي سيتم تشغيله:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "رجاء اختر لغة الاستخدام."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "يمكنكن اختيار لغات أخرى و التي ستكون متوفرة بعد التثبيت"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "الكل"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "اسمح لكل المستخدمين"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "مخصص"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "لا مشاركة"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "إلغاء"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "شغّل userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1062,89 +906,90 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "مرحبا بالمخترقين"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "فقير"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "القياسي"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "مرتفع"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "مرتفع أكثر"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "مرتفع جدا"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "اختر مستوى الأمن"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "مستوى الأمن"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "إستخدم libsafe للملقمات"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1161,52 +1006,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "لا توجد مساحو كافية في /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "سطح المكتب"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
@@ -1219,17 +1064,21 @@ msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
msgid "Boot Style Configuration"
msgstr "اعداد أسلوب الإقلاع"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_ملف"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/ملف/_خروج"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>خ"
+msgstr "<تحكم>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1262,14 +1111,14 @@ msgstr "وضع Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"أنت تستخدم %s كمدير اقلاع حاليا.\n"
"اضغط على تهيئة لتشغيل معالج الإعداد"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "إعداد"
@@ -1279,7 +1128,7 @@ msgid "System mode"
msgstr "وضع النظام"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "شغّل X-Window عند بدء التشغيل"
#: ../../bootlook.pm_.c:148
@@ -1290,14 +1139,16 @@ msgstr "لا, لا أريد دخولا أليا"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "موافق"
@@ -1312,11 +1163,11 @@ msgstr "غيغابايت"
#: ../../common.pm_.c:94
msgid "KB"
-msgstr "كيلوبايا"
+msgstr "كيلوبايت"
#: ../../common.pm_.c:94
msgid "MB"
-msgstr "م.ب"
+msgstr "ميغابايت"
#: ../../common.pm_.c:102
msgid "TB"
@@ -1345,7 +1196,7 @@ msgstr "لا يمكنني غمل لقطات للشاشة قبل التجزئة"
msgid "Screenshots will be available after install in %s"
msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "فرنسا"
@@ -1353,7 +1204,7 @@ msgstr "فرنسا"
msgid "Costa Rica"
msgstr "كوستاريكا"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "بلجيكا"
@@ -1377,11 +1228,12 @@ msgstr "النرويج"
msgid "Sweden"
msgstr "السويد"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "هولندا"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "إيطاليا"
@@ -1389,7 +1241,7 @@ msgstr "إيطاليا"
msgid "Austria"
msgstr "النمسا"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "الولايات المتحدة"
@@ -1397,8 +1249,8 @@ msgstr "الولايات المتحدة"
msgid "Please make a backup of your data first"
msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "اقرأ جيدا!"
@@ -1411,11 +1263,12 @@ msgstr ""
"اذا كنت تريد استخدام aboot, فلا تنسى أن تترك مساحة فارغة في\n"
"بداية القرص (2048 قطاعات كافية)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "خطأ"
@@ -1423,11 +1276,11 @@ msgstr "خطأ"
msgid "Wizard"
msgstr "المعالج"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "اختر حدثا"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1435,177 +1288,182 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"لديك تجزئة FAT واحدة كبيرة\n"
-")يستخدم عامة عن طريق Microsoft DOS/Windows(.\n"
+"(يستخدم عامة عن طريق Microsoft DOS/Windows).\n"
"اقترح أن تغير حجم هذه التجزئة\n"
-")اضغط عليها ثم اختر \"تغيير الحجم\"("
+"(اضغط عليها ثم اختر \"تغيير الحجم\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "فضلا اضغط على تجزئة"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "تفاصيل"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "التبديل"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "فارغ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "أخرى"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "أنواع أنظمة الملفات:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "عمل تجزئة"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "النوع"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "استخدم ``%s'' بدلا من ذلك"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "إلغاء"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "استخدم ``ازالة التجهيز'' أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "بعد تغيير نوع التجزئة %s, فإنك ستسخر كل البيانات على التجزئة"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "إختر تجزئة"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "إختر شاشة"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "خروج"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "النتقال الى وضعية الخبير"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "الانتقال الى الوضع العادي"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "تراجع"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "هل تريد الاكمال على أي حال؟"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "الخروج بدون الحفظ"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "تحديد آلي"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "أمسح الكل"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "أكثر"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "معلومات القرص الصلب"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "كل التجزئات الرئيسية مستخدمة"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "لا يمكنني اضافة أي تجزئة أخرى"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "لكي تمتلك تجزئات أكثر, يرجى الغاء تجزئة كي تتمكن من عمل تجزئة ممتدة"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "حفظ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "استعادة جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "إنقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "إعادة تحميل جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "التجهيز الآلي للوسائط القابلة للإزالة"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "اختر ملف"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1613,11 +1471,11 @@ msgstr ""
"جدول التقسيم المحفوظ ليس بنفس الحجم\n"
"لا زلت تريد الإكمال؟"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "تحذير"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1625,122 +1483,129 @@ msgstr ""
"أدخل قرصا مرنا في السواقة\n"
"كل البيانات على القرص ستمحى"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "جاري محاولة انقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "معلومات مفصّلة"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "نقطة التجهيز"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "خيارات"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "نقل"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "تنسيق"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "جهز"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "اضافة الى RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "اضافة الى LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "ازل التجهيز"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "ازالة من RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "ازالة من LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "تعديل RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "استخدام لـloopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "اعمل تجزئة جديدة"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "قطاع البداية: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "الحجم باليغابايت: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "نوع نظام المفات: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "نقطة التجهيز: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "التفضيل: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "هل تريد ازالة ملف loopback؟"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "غير نوع التجزئة"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "أي نظام ملفات تريد؟"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "جاري التغيير من ext2 الى ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "أين تريد تجهيز ملف loopback %s؟"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "أين تريد بجهيز الجهاز%s؟"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1748,125 +1613,130 @@ msgstr ""
"لم يمكن ازالة تعيين نقطة التجهيز نظرا لأن هذه التجزئة مستخدمة لـloop back.\n"
"قم بإزالة الـloopback أولا"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "جاري حساب روابط نظام ملفات FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "جاري تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "هذا التقسيم غير قابل لتغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "كل البيانات على هذه التجزئة يجب حفظها احتياطيا"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "بعد تغيير حجم التجزئة %s, فإن كل البيانات على هذه التجزئة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "اختر الحجم الجديد"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "الحجم الجديد بالميغابايت: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "أي قرص تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "القطاع"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "أي قطاع تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
-msgstr "نقل"
+msgstr "جاري النقل"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "جاري نقل التجزئة..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "اختر RAID موجود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "جديد"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "اختر LVM l,جود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "اسم LVM؟"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "هذه التجزئة لا يمكن استخدامها لـloopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "اسم ملف Loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "اعط اسم ملف"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "هذا الملف مستخدم من loopback أخرى, اختر ملفا آخر"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "الملف موجود مسبقا, هل تريد استخدامه؟"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "خيارات التجهيز"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "متنوعة"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "الجهاز"
+msgstr "وحدة"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "المستوى"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "حجم chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "كن حذرا: هذه العملية خطيرة"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "أي نوع من التجزئة؟"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1874,7 +1744,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1882,169 +1752,169 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "جدول اتتقسيم للقرص %s سيتم كتابته الى القرص!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "ستحتاج الى اعادة التشغيل قبل أن يتم تفعيل التعديلات"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "بعد تهيئة التقسيم %s, فإن كل البيانات الموجودة على التجزئة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "جاري التهيئة"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "جاري تهيئة ملف loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "جاري تهيئة التجزئة %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "خبء الملفات"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "انقل الملفات الى تجزئة جديدة"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"الدليل %s يحتوي مسبقا على بعض البيانات\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "جاري نقل الملفات الى التجزئة الجديدة"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "جاري نسخ %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "جاري ازالة %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "التجزئة %s معروفة الآن بالإسم %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "الجهاز: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "حرف سواقة DOS: %s (مجرد تخمين)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "النوع: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "الاسم: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "البداية: قطاع %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "الحجم: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s قطاع"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "الاسطوانة %d الى %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "غير مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "محمل\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "المستوى %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "حجم Chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "أقراص RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "اسم ملف Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2052,7 +1922,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2060,62 +1930,62 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "الحجم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "معلومات: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "أقراص LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "نوع جدول التقسيم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "على bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "مفتاح تشفير نظام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "اختر مفتاح تشفير نظام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %d حرفا على الأقل)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "مفاتيح التشفير غير متطابقة"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "مفاتح التشفير"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "مفاتح التشفير (مرة أخرى)"
@@ -2124,35 +1994,65 @@ msgid "Change type"
msgstr "غيّر النوع"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "فضلا اضعط على وسيط"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "التحقق"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "إنترنت"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "اسم المستخدم"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "اسم المستخدم"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "ابحث في أجهزة الخادم"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تجهيز %s قد فشل"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "لا أعرف كيف أجهز %s في النوع %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2163,68 +2063,319 @@ msgstr "بسيط"
#: ../../fsedit.pm_.c:25
msgid "with /usr"
-msgstr ""
+msgstr "مع /usr"
#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "خادم"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
-msgstr ""
+msgstr "لا شيئ للعمل"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
-msgstr ""
+msgstr " فتحة الخطإ %s للكتابة :%s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
+msgstr "ليس لديك أيّ فواصل ! "
+
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "تحقق آلي"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generic"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Card mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "حمل الإعدادات"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "غيّر النوع"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "خروج"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_مساعدة"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_مساعدة"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/مساعدة/_حول البرنامج..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "وحدة"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Card mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "الغاء"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "وحدة"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "الوصف"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "التحقق"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "اختر ملف"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway device"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 buttons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "التحقق من الأقراص الصلبة"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "عرض معلومات العتاد"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "اعرض المعلومات"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "إعداد الفأرة"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "من فضلك انتظر"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ثوان"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "تحقق آلي"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
#: ../../help.pm_.c:13
@@ -2240,7 +2391,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2256,6 +2407,33 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
+"لينكس هو نظام متعدد المستخدمين, أي أن كل مستخدم سيكون له اعداداته الخاصة و "
+"ملفاته\n"
+"الخاصة, الخ. يمكنك قراءة ``دليل المستخدم'' لتفاصيل أكثر.\n"
+"و على عكس \"الجذر\", أي مدير النظام, فإن المستخدمين الذين ستضيفهم هنا لن\n"
+"يتم السماح لهم بتغيير أي شئ ما عدا ملفاتهم و إعداداتهم الخاصة. سيجب عليك\n"
+"أن تضيق مستخدماً عادياً لك. و هذا الحساب هو الذي يجب أن تدخل عليه\n"
+"للاستخدام العادي. و برغم أنه من العملي الدخول بصفة \"جذر\" يوميا إلا أن\n"
+"هذا قد يكون خطيرا جدا! فأقل غلطة قد تعني أن نظامك لن يعمل بعد ذلك مطلقا.\n"
+"أما إذا ارتكبت خطأ كبيراً كمستخدم عادي, فقد تخسر بعض البيانات, ولكن ليس "
+"النظام ككل.\n"
+"\n"
+"أولا سيجب عليك أن تكتب اسمك الحقيقي. هذا ليس الزامياً بالطبع\n"
+"بما أنه من الممكن أن تكتب ما تريد. DrakX سيأخذ أول كلمة تدخلها في الصندوق\n"
+"و سيجلبها في خانة \"اسم المستخدم\". هذا الإسم هو الذي سيستخدمه المستخدم\n"
+"للدخول الى النظام. يمكنك تغييره أيضا. بعد ذلك ستحتاج لإدخال كلمة المرور "
+"هنا.\n"
+"كلمة المرور الخاصة بالمستخدم العادي ليست مهمة مثل كلمة مرور \"الجذر\"\n"
+"من وجهة نظر أمنية, لكن هذا ليس سببا لتناسي الموضوع لأنه في هذه الحال\n"
+"فإن ملفات ستكون في خطر.\n"
+"\n"
+"إذا ضغطت على زر \"وافق على المستخدم\", فسيمكنك بعد ذلك أن تضيف بقدر ما "
+"تريد.\n"
+"مثلا يمكنك أن تضيف اسم مستخدم لكل من أصدقائك أو والدك أو أختك. عندما تنتهي\n"
+"من إضافة كل المستخدمين الذين تريدهم, اختر زر \"انتهى\".\n"
+"\n"
+"ضغط زر \"متقدم\" سيسمح لك بتغيير \"الغلاف\" أو سطر الأوامر الإفتراضي لهذا\n"
+"المستخدم (bash هو الغلاف الإفتراضي)."
#: ../../help.pm_.c:41
msgid ""
@@ -2289,6 +2467,34 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
+"في الأعلى ستجد تقسيمات لينكس الموجودة و التي تم ايجادها على القرص الصلب "
+"الخاص بك.\n"
+"يمكنك أن تُبقي إختيارات المعالج, و هي جيدة لأغلب أنواع التثبيت.\n"
+"إذا قمت بعمل أي تغييرات فيجب عليك أن تعرف التقسيم الجذر (\"/\"). لا تختر\n"
+"تقسيمات ضغيرة جدا و إلا لن تستطيع تثبيت برامج كافية. إذا كنت تريد تخزين "
+"البيانات\n"
+"على تقسيم مستقل فستحتاج الى عمل تقسيم لـ\"/home\"\n"
+"(ممكن فقط إذا كان لديك أكثر من تقسيم للينكس).\n"
+"\n"
+"كل تقسيم مُعطى بالسكل التالي: \"الإسم\", \"السعة\".\n"
+"\n"
+"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\", \"رقم القرص الصلب\",\n"
+"\"رقم التقسيم\" (مثلا, \"hda1\").\n"
+"\n"
+"\"رقم القرص الصلب\" دائما هو حرف بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
+"الصلبة\n"
+"من نوع IDE فإن:\n"
+" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\",\n"
+"\n"
+" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\",\n"
+"\n"
+"أما بالنسبة لأقراص سكزي SCSI فالحرف \"a\" يعني \"أقل معرف SCSI\", و الحرف \"b"
+"\"\n"
+"يعني \"ثاني أقل معرف SCSI\", الخ."
#: ../../help.pm_.c:72
msgid ""
@@ -2296,6 +2502,9 @@ msgid ""
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
+"تثبيت Mandrake Linux موزع على العديد من الأقراص. DrakX\n"
+"يعلم إذا كانت حزمة ما في قرص آخر و سيخرج القرص\n"
+"الحالي و سيطلب منك أن تدخل قرصاً مختلفا كما هو مطلوب."
#: ../../help.pm_.c:77
msgid ""
@@ -2311,9 +2520,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2495,7 +2703,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2507,9 +2715,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2555,21 +2762,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2585,9 +2791,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2608,9 +2814,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2720,38 +2925,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2825,11 +3024,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2853,7 +3052,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2868,7 +3067,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2883,7 +3082,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2899,29 +3098,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -2943,7 +3142,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -2965,7 +3164,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -2973,7 +3172,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -2994,7 +3193,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3007,7 +3206,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3016,29 +3215,28 @@ msgid ""
"(MBR)\"."
msgstr ""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3047,7 +3245,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3072,11 +3270,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3086,9 +3284,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3100,7 +3297,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3126,7 +3323,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3153,18 +3350,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3172,12 +3368,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3193,14 +3388,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3211,7 +3406,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3219,12 +3414,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3239,26 +3434,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr ""
@@ -3283,75 +3478,78 @@ msgstr ""
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr "استمرّ بأيّة حال"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "استعمل مكانا حرا"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr ""
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3363,63 +3561,63 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr ""
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr ""
@@ -3427,16 +3625,16 @@ msgstr ""
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr ""
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr ""
@@ -3446,12 +3644,12 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr ""
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3459,12 +3657,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr ""
@@ -3474,192 +3672,158 @@ msgstr ""
msgid "Entering step `%s'\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "قبول"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3669,17 +3833,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3723,11 +3887,11 @@ msgstr ""
msgid "Do you really want to leave the installation?"
msgstr "هل تريد فعلا مغادرة التثبيت؟"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3742,7 +3906,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -3848,284 +4012,290 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "لوحة المفاتيح"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "رجاء, اختر لوحة المفاتيح."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
-msgstr ""
+msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "ترقية"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "رجاء اختر لغة نوع الفأرة."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
-msgstr ""
+msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
-msgstr ""
+msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "اختر الحزم التي ستُثبَّت"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
-msgid "Recommended (%dMB)"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4162,157 +4332,187 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "خادم NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "بطاقة الصّوت ISA هل عندك عند"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "الفأرة"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "طابعة"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
-msgstr ""
+msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
+msgstr " الخادم NIS"
+
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "التحقق"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "احصل على خطوط Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "خادم NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4330,19 +4530,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
-msgstr ""
+msgstr "المدخل المرن الثّاني"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "تخطي"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4358,7 +4558,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4367,28 +4567,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
-msgstr ""
+msgstr "آسف , لا مدخل مرن متاح"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
-msgstr ""
+msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
+msgstr " إنشاء قرص الا قلا ع "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
+msgstr " bootloader إعداد "
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4396,25 +4596,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
-msgstr ""
+msgstr " aboot هل تريد أن تستخدم "
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
-msgstr ""
+msgstr "bootloader التّركيب "
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4425,25 +4625,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4454,18 +4654,23 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4474,15 +4679,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr ""
@@ -4498,531 +4703,535 @@ msgstr ""
#: ../../interactive.pm_.c:87
msgid "kdesu missing"
-msgstr ""
+msgstr "kdesu missing"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "consolehelper missing"
#: ../../interactive.pm_.c:152
msgid "Choose a file"
msgstr "إختر ملف"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "متقدم"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
+msgstr "Basic"
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
-msgstr ""
+msgstr "اختيارك ? (default %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr ""
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
-msgstr ""
+msgstr "Button `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "هل تريد الضغط على هذا الزر؟ "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr ""
+msgstr "اختيارك ? (default `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
-msgstr ""
+msgstr "إعادة تسليم"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
-msgstr ""
+msgstr "التشيكية (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "الألمانية"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
-msgstr ""
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "الإسبانية"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "الفنلندية"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "الفرنسية"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "النرويجية"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "البولندية"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "الروسية"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "السويدية"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح البريطانية"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح الأمريكية"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
-msgstr ""
+msgstr "الألبانيةّ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
-msgstr ""
+msgstr "الأرمينية (قديم)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
-msgstr ""
+msgstr "الأرمينية (آلة كاتبة)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
-msgstr ""
+msgstr "الأرمينيةّ (صوتي)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
-msgstr ""
+msgstr "الأذربيجانية (لاتيني)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "البلجيكية"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "البلغارية (صوتية)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "البلغارية (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
-msgstr ""
+msgstr "البرازيليةّ (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "البيلاروسية"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
-msgstr ""
+msgstr "السويسرية (تصميم ألماني)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
-msgstr ""
+msgstr "السويسرية (تصميم فرنسي) "
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
-msgstr ""
+msgstr "التشيكية (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
-msgstr ""
+msgstr " الألمانيةّ (no dead keys)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "الدنماركية"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
-msgstr ""
+msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
-msgstr ""
+msgstr "Dvorak (نرويجيةّ) "
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (سويدية)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "الإستونية"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
-msgstr ""
+msgstr "الجورجية (التصميم الروسي)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
-msgstr ""
+msgstr "الجورجيةّ (التصميم اللاتيني)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
-msgstr "يوناني"
+msgstr "اليونانية"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
-msgstr "المجرية (الهنغارية)"
+msgstr "المجرية الهنغارية"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "الكرواتية"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "العبرية"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
-msgstr ""
+msgstr "العبرية (صوتية)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
-msgstr ""
+msgstr "الإيرانيّة"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "الآيسلاندية"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "الإيطالية"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
-msgstr ""
+msgstr "اليابانية 106 مفاتيح"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح الكورية"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
-msgstr ""
+msgstr "الأمريكية اللاتينية"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
-msgstr ""
+msgstr "اللّيتوانيةّ AZERTY ( قديم ) "
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
-msgstr ""
+msgstr "اللّيتوانيّة AZERTY ( جديد ) "
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
+msgstr "اللّيتوانيةّ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr ""
+msgstr " اللّيتوانيةّ \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "اللاتفية"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "المقدونية"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
-msgstr ""
+msgstr "الهولنديّة"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
-msgstr ""
+msgstr "البولندية (qwerty layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
-msgstr ""
+msgstr "البولندية (qwertz layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "البرتغالية"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
-msgstr ""
+msgstr "الكنديّة (كيبيك)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
-msgstr ""
+msgstr "الرّومانيّة (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
-msgstr ""
+msgstr "الرّومانيةّ (qwertz)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
-msgstr ""
+msgstr "الرّوسيةّ (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "السلوفينية"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
-msgstr ""
+msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
-msgstr ""
+msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
-msgstr ""
+msgstr "الصّربيةّ (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "التاميل"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح التّايلانديّة"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
-msgstr ""
+msgstr "لوحة مفاتيح الطّاجيكيّة"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
-msgstr ""
+msgstr "التّركيّ (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
-msgstr ""
+msgstr "التّركيّ (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "الأوكرانية"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
-msgstr ""
+msgstr "( "
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr ""
+msgstr "الفيتناميّ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
-msgstr ""
+msgstr "( يوغسلافيّ ( اللّاتينيّة "
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
-msgstr ""
+msgstr "مفتاح Alt key"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr ""
+msgstr "مفتاح CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Ctrl and Alt keys simultaneously"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Alt and Shift keys simultaneously"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menu\" key"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
-msgstr ""
+msgstr "Left \"Windows\" key"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Right \"Windows\" key"
#: ../../loopback.pm_.c:32
#, c-format
msgid "Circular mounts %s\n"
-msgstr ""
+msgstr "Circular mounts %s\n"
#: ../../lvm.pm_.c:88
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "رقم التّليفون "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "تجهيز التجزئات"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
-msgstr ""
+msgstr "Sun - Mouse"
#: ../../mouse.pm_.c:32
msgid "Logitech MouseMan+"
-msgstr ""
+msgstr "Logitech MouseMan+"
#: ../../mouse.pm_.c:33
msgid "Generic PS2 Wheel Mouse"
-msgstr ""
+msgstr "Generic PS2 Wheel Mouse"
#: ../../mouse.pm_.c:34
msgid "GlidePoint"
-msgstr ""
+msgstr "GlidePoint"
#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
msgid "Kensington Thinking Mouse"
-msgstr ""
+msgstr "Kensington Thinking Mouse"
#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
msgid "Genius NetMouse"
-msgstr ""
+msgstr "Genius NetMouse"
#: ../../mouse.pm_.c:38
msgid "Genius NetScroll"
-msgstr ""
+msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
msgid "1 button"
-msgstr ""
+msgstr "1 button"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
msgid "Generic 2 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
+msgstr "Generic 2 Button Mouse"
#: ../../mouse.pm_.c:46
msgid "Wheel"
-msgstr ""
+msgstr "Wheel"
#: ../../mouse.pm_.c:49
msgid "serial"
-msgstr ""
+msgstr "serial"
#: ../../mouse.pm_.c:52
msgid "Generic 3 Button Mouse"
-msgstr ""
+msgstr "Generic 3 Button Mouse"
#: ../../mouse.pm_.c:53
msgid "Microsoft IntelliMouse"
-msgstr ""
+msgstr "Microsoft IntelliMouse"
#: ../../mouse.pm_.c:54
msgid "Logitech MouseMan"
-msgstr ""
+msgstr "Logitech MouseMan"
#: ../../mouse.pm_.c:55
msgid "Mouse Systems"
-msgstr ""
+msgstr "Mouse Systems"
#: ../../mouse.pm_.c:57
msgid "Logitech CC Series"
-msgstr ""
+msgstr "Logitech CC Series"
#: ../../mouse.pm_.c:58
msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
+msgstr "Logitech MouseMan+/FirstMouse+"
#: ../../mouse.pm_.c:60
msgid "MM Series"
-msgstr ""
+msgstr "MM Series"
#: ../../mouse.pm_.c:61
msgid "MM HitTablet"
-msgstr ""
+msgstr "MM HitTablet"
#: ../../mouse.pm_.c:62
msgid "Logitech Mouse (serial, old C7 type)"
-msgstr ""
+msgstr "Logitech Mouse (serial, old C7 type)"
#: ../../mouse.pm_.c:66
msgid "busmouse"
-msgstr ""
+msgstr "busmouse"
#: ../../mouse.pm_.c:69
msgid "2 buttons"
-msgstr ""
+msgstr "2 buttons"
#: ../../mouse.pm_.c:70
msgid "3 buttons"
-msgstr ""
+msgstr "3 buttons"
#: ../../mouse.pm_.c:73
msgid "none"
@@ -5030,43 +5239,59 @@ msgstr "ولا واحد"
#: ../../mouse.pm_.c:75
msgid "No mouse"
-msgstr ""
+msgstr "No mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
-msgstr ""
+msgstr "من فضلك اختبر الفأرة"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
-msgstr ""
+msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr ""
+msgstr " WHEEL! حرّك "
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "إنتهاء"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "التالي ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
-msgstr ""
+msgstr "<-سابق "
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
+msgstr "هل هذا صحيح ? "
+
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "المعلومات"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expand Tree"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Collapse Tree"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
msgstr ""
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
-msgstr ""
+msgstr "وصّل إلى الإنترنت "
#: ../../network/adsl.pm_.c:20
msgid ""
@@ -5077,25 +5302,27 @@ msgstr ""
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
-msgstr ""
+msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
-msgstr ""
+msgstr "use dhcp"
#: ../../network/adsl.pm_.c:22
msgid "use pppoe"
-msgstr ""
+msgstr "use pppoe"
#: ../../network/adsl.pm_.c:22
msgid "use pptp"
-msgstr ""
+msgstr "use pptp"
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcpcd"
msgstr ""
+"تريد أن تستخدم dhcp أيّ عميل ?\n"
+" Default is dhcpcd"
#: ../../network/ethernet.pm_.c:88
msgid ""
@@ -5103,9 +5330,9 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
-msgstr ""
+msgstr "اختر السّطح البينيّ للشبكة "
#: ../../network/ethernet.pm_.c:93
msgid ""
@@ -5114,11 +5341,11 @@ msgstr ""
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
-msgstr ""
+msgstr "لا بطاقة شبكة وجدت "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
-msgstr ""
+msgstr "ا عداد شبكة"
#: ../../network/ethernet.pm_.c:203
msgid ""
@@ -5128,25 +5355,25 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
-msgstr ""
+msgstr "Host اسم "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "معالج إعداد الشبكة"
#: ../../network/isdn.pm_.c:22
msgid "External ISDN modem"
-msgstr ""
+msgstr "External ISDN modem"
#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
-msgstr ""
+msgstr "Internal ISDN card"
#: ../../network/isdn.pm_.c:22
msgid "What kind is your ISDN connection?"
@@ -5177,12 +5404,12 @@ msgstr "إعداد قديم (isdn4net)"
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
#: ../../network/isdn.pm_.c:215
msgid "ISDN Configuration"
-msgstr ""
+msgstr "ISDN إعداد "
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5199,12 +5426,12 @@ msgstr ""
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr ""
#: ../../network/isdn.pm_.c:199
@@ -5213,22 +5440,23 @@ msgstr ""
#: ../../network/isdn.pm_.c:200
msgid "I don't know"
-msgstr ""
+msgstr "لا أعرف "
#: ../../network/isdn.pm_.c:200
msgid "ISA / PCMCIA"
-msgstr ""
+msgstr "ISA / PCMCIA"
#: ../../network/isdn.pm_.c:200
msgid "PCI"
-msgstr ""
+msgstr "PCI"
#: ../../network/isdn.pm_.c:206
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5240,13 +5468,13 @@ msgid "Continue"
msgstr "تابع"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr ""
+msgid "Which is your ISDN card?"
+msgstr "ISDN ما هية بطاقتك"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
#: ../../network/isdn.pm_.c:244
@@ -5259,96 +5487,96 @@ msgstr ""
#: ../../network/modem.pm_.c:44
msgid "Dialup options"
-msgstr ""
+msgstr "Dialup options"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr ""
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
-msgstr ""
+msgstr "رقم التّليفون "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
-msgstr ""
+msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
-msgstr ""
+msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
-msgstr ""
+msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
-msgstr ""
+msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
-msgstr ""
+msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
-msgstr ""
+msgstr "Domain name"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
-msgstr ""
+msgstr "( خادم ا الأوّل ( اختياريّ "
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "اتصل"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "اقطع الإتصال"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "قم بإعداد الإتصال"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5360,12 +5588,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5373,97 +5601,103 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "وضعية الخبير"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
-msgstr ""
+msgstr "ISDN connection"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
-msgstr ""
+msgstr "detected %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "وصلة ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "وصلة LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "وصلة انترنت"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
-msgstr ""
+msgstr "ا عداد الشّبكة "
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5471,73 +5705,77 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
-msgstr ""
+msgstr "(driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
-msgstr ""
+msgstr "IP address"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
-msgstr ""
+msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
-msgstr ""
+msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
-msgstr ""
+msgstr "Automatic IP"
+
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "ابدأ عند الإقلاع"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5545,357 +5783,362 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
-msgstr ""
+msgstr "الخادم DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
-msgstr ""
+msgstr "Gateway device"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
-msgstr ""
+msgstr "Proxies اعداد"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
-msgstr ""
+msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
-msgstr ""
+msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr ""
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
-msgstr ""
+msgstr "اعداد Internet "
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr ""
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr ""
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr ""
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
-msgstr ""
+msgstr "Card mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
-msgstr ""
+msgstr "Card IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
-msgstr ""
+msgstr "Card IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
-msgstr ""
+msgstr "Card IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr ""
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "إختر بلدك"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "سرعة الإتصال"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
+msgstr "Account Password"
+
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:600
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "فشل التحميل: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr ""
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr ""
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr ""
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr ""
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
-msgstr ""
+msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr ""
+msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
-msgstr ""
+msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
-msgstr ""
+msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
-msgstr ""
+msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr ""
+msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
-msgstr ""
+msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
-msgstr ""
+msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "طابعة محلية"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "طابعة بعيدة"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr ""
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "طابعة شبكة (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr ""
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr ""
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr ""
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "الطابعات المحلية"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "الطابعات البعيدة"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ""
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr ""
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "على خادم CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr ""
@@ -5914,11 +6157,11 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr " CUPS اعدادات"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "الخادم CUPS حدّد"
@@ -5947,7 +6190,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -5955,7 +6198,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "عنوان IP لخادم CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "البوابة"
@@ -5963,20 +6206,12 @@ msgstr "البوابة"
msgid "Automatic CUPS configuration"
msgstr "تهيئة CUPS آلية"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "أضف طابعة جديدة"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -5989,13 +6224,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "طابعة محلية"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6013,11 +6248,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "تحقق من الطابعات آليا"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6031,11 +6266,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6045,33 +6280,37 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "تحقق آلي"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr ""
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "تم التحقق من %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6079,12 +6318,12 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr ""
#
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -6092,31 +6331,31 @@ msgstr ""
"لم يتم ايحاد طابعة محلية!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6124,7 +6363,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6132,92 +6371,103 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "رجاء اختر المنفذ الموصلة إليه طابعتك."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "إعداد يدوي"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr ""
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr ""
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "تركيب طرود ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "تركيب طرود ..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr ""
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6225,35 +6475,35 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "مجموعة العمل"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6277,7 +6527,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6286,7 +6536,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6294,11 +6544,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6306,27 +6556,27 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6334,56 +6584,52 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "اسم مستضيف الطابعة"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr ""
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "الوصف"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "المكان"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr ""
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6398,24 +6644,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr ""
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "تم اختيار النّموذج يدويًّا"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "ما هو نوع الطابعة لديك؟"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6424,17 +6670,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "إعداد OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6444,11 +6690,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "إعداد Lexmark Inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6456,7 +6702,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6469,7 +6715,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6479,22 +6725,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -6503,11 +6749,11 @@ msgstr ""
"هل تريد تعيين هذه الطابعة (\"%s\")\n"
"كطابعة افتراضية؟"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6515,39 +6761,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "إطبع"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6557,21 +6803,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "طابعة خام"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6580,15 +6826,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -6597,49 +6843,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6649,7 +6895,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -6658,29 +6904,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "إغلاق"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "جاري الطباعة على الطابعة \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "إغلاق"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "قائمة خيارات الطابعة"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -6688,36 +6945,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "نقل إعدادات الطابعة"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6727,51 +6984,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -6779,56 +7036,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "جاري بدء الشبكة..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "لم يتم تحديد وظيفية الشبكة"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -6836,11 +7093,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -6850,31 +7107,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "مرتفع"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -6889,11 +7146,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -6907,63 +7164,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "أي نظام طباعة تريد أن تستخدم؟"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "إعداد الطابعة \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
+msgstr "جاري إعداد الطابعة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "جاري إعداد التطبيقات..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -6971,35 +7228,39 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "تغيير نظام الطباعة"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "خروج"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "تعديل اعدادات الطابعة"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -7008,103 +7269,103 @@ msgstr ""
"الطابعة %s\n"
"هل تريد تعديل تلك الطابعة؟"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "نوع وصلة الطابعة"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "اعرف كيف تستخدم هذه الطابعة"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
+msgid "Removing old printer \"%s\"..."
+msgstr "جاري ازالة الطابعة القديمة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr ""
+msgid "Removing printer \"%s\"..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -7178,24 +7439,51 @@ msgstr ""
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/msec.pm_.c:144
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+
+#: ../../security/msec.pm_.c:150
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "خيارات متقدمة"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "خيارات"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7238,7 +7526,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7294,7 +7582,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7351,7 +7639,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -7428,7 +7716,7 @@ msgstr "إنترنت"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "نظام"
@@ -7540,6 +7828,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "مركز تحكم Mandrake"
@@ -7562,13 +7851,15 @@ msgstr ""
#: ../../share/advertising/07-server.pl_.c:9
msgid "Server Software"
-msgstr ""
+msgstr "برامج الخادم"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"حوّل ماكينتك إلى خادم قويّ مع/ب فقط نقرات قليلة من ال الفأرة : خادم الويب , "
+"البريد الإلكترونيّ , فيروول , الحفّار , الملفّ و خادم الطّبع ,"
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -7579,10 +7870,12 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
+" يمدّون أفضل لعب بمصادر مفتوحة Mandrake Linux 8.2 - arcade, action, "
+"cards, sports, strategy,...."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -7593,7 +7886,7 @@ msgstr ""
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
-msgstr ""
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -7616,7 +7909,7 @@ msgstr ""
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
@@ -7632,21 +7925,186 @@ msgstr ""
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
#: ../../standalone.pm_.c:25
msgid "Installing packages..."
-msgstr ""
+msgstr "تركيب طرود ..."
+
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
+" لا يمكن أن أقرأ جدول فاصلك هو يفسد أيضًا سوف أحاول أن أستمرّ فواصل سيّئة "
+
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "نقل إعدادات الطابعة"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "خادم قواعد بيانات"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "خادم قواعد بيانات"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "اضف مستخدم"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "مساعدة"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "لم يتم ايجاد بطاقة تلفاز!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "غير متصل"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "إلغاء"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "تم اختيار الكل"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "اضف مستخدم"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "جاري الإعداد..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "إعداة الإعداد"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "أدخل قرص مرن بالدّاخل %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "آسف , لا مدخل مرن متاح"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
-msgstr ""
+msgstr "خطأ ! "
#: ../../standalone/drakautoinst_.c:46
#, c-format
@@ -7682,6 +8140,10 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -7690,44 +8152,37 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "تثبيت آلي"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "أزل المادة الأخيرة"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -7735,15 +8190,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -7751,161 +8198,177 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
-" "
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
+" "
+msgstr "ارسال الملفات عن طريق FTP"
+
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr ""
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "رجاء كلمة المرور"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "وصلة FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "وصلة آمنة"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -7913,72 +8376,83 @@ msgstr ""
" من فضلك فحص إذا أردت أن تتضمّن \n"
"ركّب الجدر على قرصك المدمج"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "الشبكة"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "النوع"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "يوميًّا "
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "أسبوعيّا"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "شهريا"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -7986,7 +8460,7 @@ msgstr ""
"فضلا اختر الفترة \n"
"ما بين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -7994,71 +8468,66 @@ msgstr ""
"رجاء اختر\n"
"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTPاستخدم مع المراقب"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "ماذا "
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "أين"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "متى "
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "إعدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "على القرص الصّلب"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "عبر الشّبكة"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "نظام المساعد"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -8066,7 +8535,7 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -8074,7 +8543,7 @@ msgstr ""
"\n"
"-ملفّات النّظام :\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -8082,7 +8551,7 @@ msgstr ""
"\n"
"-ملفّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -8090,7 +8559,7 @@ msgstr ""
"\n"
"-الملفّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -8099,23 +8568,52 @@ msgstr ""
"\n"
"- احفد القرص الصّلب على الطّريق :%s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "جهاز الفأرة: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"-FTP و على host احفد على : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"-FTP و على host احفد على : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -8123,19 +8621,19 @@ msgstr ""
"\n"
"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -8144,271 +8642,293 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
-msgstr ""
+msgstr "اضغط موافق لاستعادة ملفات اخرى"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
+msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
-msgstr ""
+msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
+
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "وصلة FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "وصلة آمنة"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr ""
+msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "استعد النّظام"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr ""
+msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
+msgstr "قم بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "أزل أدلة المستخدمين قبل الإستعادة"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
-msgstr ""
+msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "السابق"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "حفظ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
-msgstr ""
+msgstr "ابني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "استعادة"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "التالي"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "قائمة الحزم المطلوب تثبيتها"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
+"لم يتم ايجاد ملف تهيئة \n"
+"فضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
-msgstr ""
+msgstr "تحت التطوير ... انتظر فضلا"
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
-msgstr ""
+msgstr "انسخ ملفات النظام"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
-msgstr ""
+msgstr "انسخ ملفات المستخدم"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr ""
+msgstr "انسخ ملفات أخرى"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
-msgstr ""
+msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
-msgstr ""
+msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
-msgstr ""
+msgstr "جاري ارسال الملفات..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr ""
+msgstr "قائمة البيانات التي ستضمن في القرص."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
+msgstr "فضلا اختر اسم جهاز كتابة الأقراص (مثال: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
-msgstr ""
+msgstr "فضلا تأكد بأنك تريد تضمين إقلاع التثبيت في قرصك المدمج."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "قم بالنسخ الآن من ملف التهيئة"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
-msgstr ""
+msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
-msgstr ""
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -8440,7 +8960,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8449,7 +8969,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -8490,7 +9010,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -8518,12 +9038,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
+" جميع الحقوق محفوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
+"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -8539,8 +9066,24 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
+" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
+" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما نُشِرت عن طريق\n"
+" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
+" أي نسخة تالية (حسب اختيارك).\n"
+"\n"
+" هذا البرنامج يُوزَّع على أمل أن يكون مفيدا,\n"
+" لكن دون أي ضمان’; حتى بدون الضمانة المفهومة\n"
+" للإتجار أو المناسبة لغرض معين. انظر\n"
+" رخصة GNU العمومية الشاملة للتفاصيل.\n"
+"\n"
+" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
+" مع البرنامج; في حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
+"التالي\n"
+" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
+"02111-1307,\n"
+" USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -8580,7 +9123,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -8591,7 +9134,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -8604,7 +9147,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -8648,99 +9191,526 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "فشل تثبيت %s. ظهر الخطأ التالي:"
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "أدوات سطر الأوامر"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "على القرص الصّلب"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "استشارات Mandrake"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "الفأرة"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "طابعة بعيدة"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "معالج إعداد الشبكة"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "التحقق"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr ""
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "من فضلك انتظر"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "ما بعد ازالة التثبيت"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "استعادة"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "اعدادات الشبكة (%d موائمات)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "التشكيل:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "احذف التشكيل..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "التشكيل المطلوب حذفه:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "تشكيل جديد..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"لإسم التشكيل الذي ستعمله (التشكيل الجديد يتم عمله كنسخة من التشكيل الحالي) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "اسم المستضيف :"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "الدخول الى الإنترنت"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "النوع:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "البوابة:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "الواجهة:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "الحالة:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "الانتظار من فضلك"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "إعداد الدخول الى الإنترنت..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "إعداد LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "المحرك"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "الواجهة"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "البروتوكول"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "الحالة"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "إعداد الشبكة المحلية..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "انقر هنا لتشغيل المعالج ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "المعالج..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "تطبيق"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "متّصل "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "غير متصل"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "اتصل..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "اقطع الإتصال..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"لم تقم بتهيئة أي واجهات.\n"
+"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "إعداد LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "المحوّل %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "بروتوكول الإقلاع"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "يتم بدءه عند الإقلاع"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP العميل "
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "قم بالتنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "قم بإزالة التنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"لم يتم تهيئة الواجهة بعد.\n"
+"قم بتشغيل معالج التهيئة في النافذة الرئيسية"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"ليست لديك أي اتصالات إنترنت.\n"
+"قم بعمل اتصال أولا باستخدام 'تهيئة'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "نوع العلاقة"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet Card"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "الاستخدام: دريك للاقراص المرنة\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-متنوع-ثابت-وسط-ر-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "اسم الوحدة"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "حجم"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "دريك للاقراص المرنة"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "صنع قرص مرن لبدء النظام"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "المرجع"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "خطأ فى دريك لعمل قرص بدء النظام: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "اصدارة اللب"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "عام"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "منطقة الخبراء"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd الخصائص الاختيارية"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "اضافة وحدة"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "اجبار"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "اذا احتجته"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "SCSI اهمل وحدات ال"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "RAID اهمل وحدات ال"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "ازالة وحدة"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "الناتج"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "جهز القرص"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "تأكد من وجود الوسيط للوحدة %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
+"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
+"فضلاً ادخل وسط فى الوحدة."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "تعذر تنفيذ: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"غير قادر على غلق mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
+msgid "Search installed fonts"
+msgstr "ابحث في الخطوط المثبتة"
+
+#: ../../standalone/drakfont_.c:234
+msgid "Unselect fonts installed"
+msgstr "أزل اختيار الخطوط المثبتة"
+
+#: ../../standalone/drakfont_.c:258
+msgid "parse all fonts"
+msgstr "تحليل كل الخطوط"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:261
+msgid "no fonts found"
+msgstr "لا توجد خطوط"
+
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "انتهى"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgstr "لم أتمكن من ايجاد أي خطوط في تجزئاتك المحملة"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "أعد اختيار الخطوط الصحيحة"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
-msgstr ""
+msgstr "لم أتمكن من إيجاد أي خط.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "ابحث عن الخطوط في القائمة المثبتة"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr ""
+msgstr "نقل الخطوط"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr ""
+msgstr "تثبيت خطوط True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
-msgstr ""
+msgstr "تم تثبيت خطوط True Type"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
-msgstr ""
+msgstr "تحويل الخطوط"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
-msgstr ""
+msgstr "بناء type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "Ghostscript referencing"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "تحويل خطوط ttf"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "تحويل خطوط pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "أبطل الملفات المؤقتة"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
-msgstr ""
+msgstr "أعد تشغيل XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "أبطل ملفات الخطوط"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs restart"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -8749,107 +9719,107 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "استيراد الخطوط"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "احصل على خطوط Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr ""
+msgstr "اخذف الخطوط"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "خيارات متقدمة"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "قائمة الخطوط"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
-msgstr ""
+msgstr "اختر التطبيقات التي ستدعم الخطوط :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
-msgstr ""
+msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "طابعات عادية (Generic)"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "اختر ملف أو دليل الخطوط و اضغط 'اضافة'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
-msgstr ""
+msgstr "ثبّت القائمة"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
-msgstr ""
+msgstr "اضغط هنا إذا كنت متأكدا."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
-msgstr ""
+msgstr "إضغط هنا إذا لم تكن متأكدا."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
-msgstr ""
+msgstr "تم ازالة اختيار الكل"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "تم اختيار الكل"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "ازل القائمة"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "الإختبارات الأولية"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
-msgstr ""
+msgstr "انسخ الخطوط الى نظامك"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "ثبّت و حوّل الخطوط"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "ما بعد التثبيت"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
-msgstr ""
+msgstr "أزل الخطوط من النظام"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "ما بعد ازالة التثبيت"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت"
+
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "آسفون, نحن ندعم اصدارات النواة 2.4"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت ممكنة حاليا"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -8857,51 +9827,51 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
-msgstr "أعق"
+msgstr "تعطيل"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
-msgstr ""
+msgstr "اهمال"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
-msgstr ""
+msgstr "إعداة الإعداد"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
-msgstr ""
+msgstr "جاري تعطيل الخوادم..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
-msgstr "ماذا تحبّ أن تعمل"
+msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
-msgstr ""
+msgstr "تمكين"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
-msgstr ""
+msgstr "جاري تمكين الخوادم..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -8911,31 +9881,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
-msgstr "السّطح البينيّ %s(استعمال مركبة%s)"
+msgstr "الواجهة %s (باستخدام الوحدة %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
-msgstr "السّطح البينيّ %s"
+msgstr "الواجهة %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "لا محوّل الشّبكة على نظامك"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "سطح بينيّ للشبكة "
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -8945,17 +9915,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "واجهة الشبكة معدّة مسبقا!"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -8965,15 +9935,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "اعداة تهيئة آلية"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "أظهر تهيئة الواجهة الحالية"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -8983,13 +9953,14 @@ msgid ""
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
-"الشّكل الحاليّ من `%s':\n"
-"n/الشّبكة : %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"الإعداد الحالي لـ`%s':\n"
+"\n"
+"الشبكة: %s\n"
+"عنوان الـIP: %s\n"
+"صفة الـIP: %s\n"
+"المشغل: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9001,74 +9972,80 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
-msgstr ""
+msgstr "شبكة محلية من الفئة C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "عنوان IP لخادم DHCP (هذا)"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "إعادة إعداد الواجهة و خادم DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+msgstr "الشبكة المحلية لم تنته بـ`0', جاري الخروج."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
+"تم ايجاد تعارض في عنوان الشبكة المحلية المبدئي في الإعداد الحالي لـ%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
-msgstr "Firewalling configuration تم اكتشاف "
+msgstr "تم اكتشاف إعداد للجدار الناري!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
+"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج الى اصلاح يدوي بعد "
+"التثبيت."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
-msgstr ""
+msgstr "جاري الإعداد..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
+msgstr "جاري إعداد النصوص البرمجية و تثبيت البرمجيات و بدء الخدمات..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
-msgstr ""
+msgstr "كانت هناك مشاكل في تثبيت الحزمة %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
+"تم إعداد كل شئ.\n"
+"يمكنك الآن مشاركة اتصال الإنترنت مع الأجهزة الأخرى في شبكتك المحلية باستخدام "
+"إعداد الشبكة الأوتوماتيكي (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
+msgstr "تم عمل التنصيب, و لكنه غير ممكَّن الآن"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
+msgstr "تم عمل التنصيب, و هو ممكَّن الآن."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "لم يتم اعداد أي مشاركة اتصال بالإنترنت"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "إعدادات مشاركة إتصال الإنترنت"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9077,206 +10054,11 @@ msgid ""
"\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr ""
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "النّبذة :"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "نبذة جد يد ة..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname :"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "النوع:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "الانتظار من فضلك"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "إعداد LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "المحرك"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "الواجهة"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "الحالة"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "المعالج..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "تطبيق"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "متّصل "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "غير متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "إعداد LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP العميل "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "نوع العلاقة"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet Card"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP العميل"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
+"أهلا بك في أداة مشاركة الإتصال بالإنترنت!\n"
+"\n"
+"%s\n"
+"\n"
+"اضغط على تهيئة لتشغيل معالج الإعداد."
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
@@ -9284,93 +10066,127 @@ msgstr "مركز التّحكّم "
#: ../../standalone/drakxconf_.c:48
msgid "Choose the tool you want to use"
+msgstr "اختر الأداة التي تريد استخدامها"
+
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "كندة (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "الولايات المتّحدة الأمريكيّة (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "الولايات المتّحدة الأمريكيّة (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "الولايات المتّحدة الأمريكيّة (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "الولايات المتّحدة الأمريكيّة (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "الصين (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "الصين (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "اليابان (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "اليابان (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "اليابان (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "أوروبّا الشّرقيّة"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "فرنسا [سيكام]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "أيرلندا"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "أوروبّا الغربيّة"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "أوستراليا"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "نيوزيلندا "
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "جنوب أفريقيا "
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "الأرجنتين "
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-"من فضلك\n"
-" في معيار تليفزيونك و البلد type"
+"فضلاً,\n"
+"اطبع tv norm الخاص بك و بلدك"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV norm :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
-msgstr "Area :"
+msgstr "المنطقة :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "ضيط قنوات التلفاز في تقدم ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
-msgstr ""
+msgstr "جاري ضبط قنوات التلفاز"
+
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "كان هناك خطأ أثناء ضبط قنوات التلفاز"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV غير مثبت!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "نتمنى لك يوماً سعيداً!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "الآن يمكنك تشغيل XawTV (في الواجهة الرسومية!) !\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "لم يتم ايجاد بطاقة تلفاز!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -9381,6 +10197,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"لم يتم ايجاد بطاقة تلفاز على جهازك. فضلاً تأكد من أن بطاقة الفيديو/التلفاز "
+"المدعومة في لينكس موصولة بشكل صحيح.\n"
+"\n"
+"\n"
+"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -9392,27 +10216,29 @@ msgstr "من فضلك اختر تصميم لوحة مفاتيحك"
#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
+msgstr "هل تريد أن يقوم زر BackSpace بعمل وظيفة زر Delete في سطر الأوامر؟"
#: ../../standalone/livedrake_.c:24
msgid "Change Cd-Rom"
-msgstr "Cd-Romتغيير"
+msgstr "غيّر القرص المدمج"
#: ../../standalone/livedrake_.c:25
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"فضلا أدخل قرص التثبيت في سواقتك و اضغط موافق عندما تنتهي.\n"
+"إذا لم يكن قرص التثبيت لديك اضغط الغاء للإمتناع عن التحديث الحي."
#: ../../standalone/livedrake_.c:35
msgid "Unable to start live upgrade !!!\n"
-msgstr ""
+msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr ""
+msgstr "تم عمل التغيير, و لكن ليتم تفعيله يجب عليك الخروج"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -9426,7 +10252,7 @@ msgstr "/ملف/_جديد"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>ج"
+msgstr "<تحكم>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -9434,7 +10260,7 @@ msgstr "/ملف/_فتح"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>ف"
+msgstr "<تحكم>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -9442,11 +10268,11 @@ msgstr "/ملف/_حفظ"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>ح"
+msgstr "<تحكم>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/ملف/حفظ با_سم"
+msgstr "/ملف/حفظ _باسم"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -9454,19 +10280,15 @@ msgstr "/ملف/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr "/خ_يارات"
+msgstr "/_خيارات"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/خيارات/احتبار"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_مساعدة"
+msgstr "/خيارات/اختبار"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/مساعدة/_حول"
+msgstr "/مساعدة/_حول البرنامج..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -9524,7 +10346,7 @@ msgstr "التقويم"
msgid "Content of the file"
msgstr "محتويات الملف"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "تنبية البريد/SMS"
@@ -9533,11 +10355,11 @@ msgstr "تنبية البريد/SMS"
msgid "please wait, parsing file: %s"
msgstr "يرجى الإنتظار, جاري تحليل الملف: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "تهيئة تنبيه البريد/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -9547,62 +10369,93 @@ msgstr ""
"\n"
"هنا سيمكنك الإعداد \n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domain name"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "خادم البريد Postfix, خادم الأخبار Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr " الخادم NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "الخدمات"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "الخدمات"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "إعدادات الخدمات"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
-msgstr ""
+msgstr "سوف تستلم تنبيهاً إذا كانت أحد الخدمات المختارة غير عاملة."
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "حمل الإعدادات"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "سوف تستلم تنبيها اذا كان التحميل أعلى من هذه القيمة"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "إعدادات التنبيه"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "أعدّ الطريقة التي سينبهك النظام بها"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "حفظ بإسم.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
-msgstr ""
+msgstr "فضلاً, اختر نوع الفأرة الخاصة بك."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no serial_usb found\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
-msgstr ""
+msgstr "محاكاة الزر الثالث؟"
+
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "جاري قراءة بيانات الطابعة ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "جاري التحقق من الأجهزة ..."
#: ../../standalone/scannerdrake_.c:53
#, c-format
@@ -9626,9 +10479,8 @@ msgid ""
msgstr ""
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "جهاز الإقلاع"
+msgstr "اختر الجهاز "
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -9637,6 +10489,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"الماسح الضوئي %s يجب اعداده عن طريق PrinterDrake.\n"
+"يمكن تشغيل PrinterDrake من مركز التحكم في قسم العتاد."
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -9645,6 +10499,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"تمت تهيئة الماسح الضوئي %s.\n"
+"يمكنك الآن مسح المستندات باستخدام ``XSane'' من فرع وسائط متعددة/برامج رسومية "
+"في قائمة التطبيقات."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -9661,6 +10530,10 @@ msgid ""
"You already have set up a firewall.\n"
"Click on Configure to change or remove the firewall"
msgstr ""
+"الجدار الناري\n"
+"\n"
+"لقد قمت بإعداد جدار ناري مسبقا.\n"
+"اضغط تهيئة لتغيير أو إزالة الجدار الناري"
#: ../../standalone/tinyfirewall_.c:83
msgid ""
@@ -9668,6 +10541,9 @@ msgid ""
"\n"
"Click on Configure to set up a standard firewall"
msgstr ""
+"الجدار الناري\n"
+"\n"
+"اضغط تهيئة لإعداد جدار ناري قياسي"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -9749,6 +10625,11 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
+"أداة تهيئة الجدار الناري البسيط\n"
+"\n"
+"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام Mandrake Linux هذا.\n"
+"إذا كنت تريد جدارا ناريا متخصصا, الق نظرة على\n"
+"توزيعة MandrakeSecurity Firewall."
#: ../../tinyfirewall.pm_.c:14
msgid ""
@@ -9760,6 +10641,13 @@ msgid ""
"it off. You can change this configuration anytime you like by\n"
"re-running this application!"
msgstr ""
+"الآن سنسألك بعض الأسئلة حول أي الخدمات تريد أن تسمح لها\n"
+"بالإتصال بالإنترنت. فضلا فكر بعناية حول هذه\n"
+"الأسئلة لأن أمن كمبيوترك مهم.\n"
+"\n"
+"رجاء, اذا كنت لا تستخدم أياً من هذه الخدمات فاحجبها عن\n"
+"الجدار الناري. يمكنك تغيير التهيئة في أي وقت تريد عن طريق\n"
+"تشغيل هذا البرنامج مرة أخرى!"
#: ../../tinyfirewall.pm_.c:21
msgid ""
@@ -9768,6 +10656,10 @@ msgid ""
"accessed by this machine, you can safely answer NO here.\n"
"\n"
msgstr ""
+"هل تشغّل خادم ويب على هذا الجهاز و تريد كل الإنترنت أن\n"
+"تراه؟ اذا كنت تستخدم خادم ويب تحتاج فقط أن تصل اليه عن طريق\n"
+"هذا الجهاز فيمكنك أن تجيب بـ\"لا\" هنا.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:26
msgid ""
@@ -9776,6 +10668,10 @@ msgid ""
"answer no.\n"
"\n"
msgstr ""
+"هل تشغل خادم أسماء نطاقات هنا؟ إذا لم تكن أعددت واحدا\n"
+"لإعطاء معلومات الـIP و المكان لكل الإنترنت, فضلا أجب\n"
+"بـ\"لا\".\n"
+"\n"
#: ../../tinyfirewall.pm_.c:31
msgid ""
@@ -9785,6 +10681,11 @@ msgid ""
"encrypted -- so some attackers can steal your password if you use\n"
"it. ssh is encrypted and doesn't allow for this eavesdropping."
msgstr ""
+"هل تريد السماح لإتصالات ssh الواردة؟ هذا\n"
+"بديل عن telnet و يمكنك استخدامه للدخول. لإذا كنت تستخدم\n"
+"telnet الآن فيجب عليك حتما بالتبديل الى ssh. Telnet غير\n"
+"مشفر -- مما يسمح للمخترقين بسرقة كلمة المرور إذا كنت تستخدمها.\n"
+"SSH مشفر و لا يسمح بالتلصص."
#: ../../tinyfirewall.pm_.c:36
msgid ""
@@ -9793,6 +10694,10 @@ msgid ""
"strongly recommend answering No here and using ssh in place of\n"
"telnet.\n"
msgstr ""
+"هل تريد السماح لإتصالات Telnet الواردة؟\n"
+"هذا غير آم بشكل مخيف كما شرحنا في الخطوة السابقة. نحن ننصح بقوة\n"
+"بالإجابة ب\"لا\" هنا و استخدام SSH بدلا\n"
+"من Telnet.\n"
#: ../../tinyfirewall.pm_.c:41
msgid ""
@@ -9801,6 +10706,11 @@ msgid ""
"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
"attackers, since FTP also uses no encryption for transferring passwords.\n"
msgstr ""
+"هل تشغل خادم FTP هنا و تريد أن يُسمح للوصل اليه عن طريق\n"
+"الإنترنت؟ إذا كنت كذلك فنحن ننصح بقوة باستخدامه فقط\n"
+"لنقل الملفات عن طريق الدخول اللاإسمي [Anonymous]. أي كلمات مرور مبعوثة\n"
+"عن طريق FTP يمكن سرقتها عن طريق بعض المخترقين بما أن FTP أيضا لا يستخدم "
+"التشفير لنقل كلمات المرور.\n"
#: ../../tinyfirewall.pm_.c:46
msgid ""
@@ -9809,6 +10719,10 @@ msgid ""
"you probably are. Otherwise, you should firewall this off.\n"
"\n"
msgstr ""
+"هل تشغل خادم بريد هنا؟ إذا كنت ترسل الرسائل من خلال \n"
+"pine أو mutt أو أي برنامج بريد يعمل في سطر الأوامر,\n"
+"فالأرجح أنك تفعل ذلك. إذا كان غير ذلك, فسيجب عليك حجب الجدار الناري عن هذا.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:51
msgid ""
@@ -9817,6 +10731,10 @@ msgid ""
"this machine.\n"
"\n"
msgstr ""
+"هل تشغل خدمة POP أو IMAP هنا؟ هذا سوف\n"
+"يستخدم لاستضافة حسابات البريد غير المعتمدة على الإنترنت\n"
+"عبر هذه الماكينة.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:56
msgid ""
@@ -9825,6 +10743,10 @@ msgid ""
"(dynamically assigned), we need to allow for this. Is\n"
"this the case?\n"
msgstr ""
+"يبدو أنك تشغل نواة من الإصدار 2.2. إذا كان عنوان IP الخاص\n"
+"بشبكتك يتم تحديده عن طريق الكمبيوتر في بيتك أو مكتبك \n"
+"(مُعيَّن ديناميكياً), سيجب عليك السماح بهذا. هل\n"
+"هذه هي القضية؟\n"
#: ../../tinyfirewall.pm_.c:61
msgid ""
@@ -9834,6 +10756,11 @@ msgid ""
"of a larger office and haven't heard of this, you probably \n"
"aren't."
msgstr ""
+"هل التوقيت في جهازك متزامن مع جهاز آخر؟\n"
+"غالبا, هذه الطريقة تستخدم في أنظمة يونيكس/لينكس المتوسطة و الكبيرة.\n"
+"لتحديث أوقات الدخول و أشياء أخرى كهذه. إذا لم تكن جزءا من\n"
+"مكتب أكبر (أو شئ من هذا القبيل) أو لم تسمع بهذا من قبل, فالأرجح أن\n"
+"هذا لا يحصل."
#: ../../tinyfirewall.pm_.c:66
msgid ""
@@ -9842,15 +10769,15 @@ msgid ""
"\n"
"\n"
msgstr ""
-"?قد نكتب التّغييرات هذه للقرص. اعد اد كامل \n"
-" \n"
+"اكتملت التهيئة. هل يمكننا كتابة هذه التغييرات الى القرص؟\n"
+"\n"
"\n"
"\n"
#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
+#, c-format
msgid "Can't open %s: %s\n"
-msgstr "استطع"
+msgstr "لا يمكن أن ينفتح %s: %s\n"
#: ../../tinyfirewall.pm_.c:84
#, c-format
@@ -9904,6 +10831,8 @@ msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"فشل تثبيت الحزم الضرورية: %s و Bastille.\n"
+" حاول تثبيتهم يدوياً."
#: ../../share/compssUsers:999
msgid "Web/FTP"
@@ -9990,10 +10919,6 @@ msgid "Multimedia - Sound"
msgstr "وسائط متعددة - صوت"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "أدوات خدمية"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "وثائق المساعدة"
@@ -10097,10 +11022,6 @@ msgstr ""
"لتصفح الإنترنت"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "الأرشفة, محاكيات, أدوات مراقبة النظام"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "الميزانية الشخصية"
@@ -10148,122 +11069,193 @@ msgstr "وسائط متعددة - نسخ أقراص"
msgid "Scientific Workstation"
msgstr "محطة عمل علمية"
-#~ msgid "About"
-#~ msgstr "حول"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "معرف بطاقة الشاشة: %s\n"
-#~ msgid " Help "
-#~ msgstr " مساعدة "
+#~ msgid "Choose options for server"
+#~ msgstr "إختر خيارات الخادم"
-#~ msgid "None"
-#~ msgstr "ولا واحدة"
+#~ msgid "Monitor not configured"
+#~ msgstr "الشاشة غير معدّة"
-#~ msgid "Choose a default printer!"
-#~ msgstr "اختر الطابعة الافتراضية:"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "يمكنك الآن اعطاء الخيارات للوحدة %s"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "ام يتم اعداد دقة العرض حتى الآن"
-#~ msgid "mount failed"
-#~ msgstr "فشل التحميل"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "حاول تغيير بعض المعاملات"
+
+#~ msgid "An error occurred:"
+#~ msgstr "ظهر خطأ:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "المغادرة في %d ثوان"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "هل هذا هو الضبط الصحيح؟"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "خادم XFree86 :%s"
+
+#~ msgid "Show all"
+#~ msgstr "اظهار الكل"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "جاري تجهيز تهيئة X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "ماذا تريد أن تفعل؟"
+
+#~ msgid "Change Monitor"
+#~ msgstr "تغيير الشاشة"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "تغيير بطاقة الشاشة"
+
+#~ msgid "Change Server options"
+#~ msgstr "تغيير خيارات الخادم"
+
+#~ msgid "Change Resolution"
+#~ msgstr "تغيير دقة العرض"
-#~ msgid "Low"
-#~ msgstr "منخفض"
+#~ msgid "Show information"
+#~ msgstr "اعرض المعلومات"
-#~ msgid "Medium"
-#~ msgstr "متوسط"
+#~ msgid "Test again"
+#~ msgstr "اختبر مرة أخرى"
-#~ msgid "Export"
-#~ msgstr "تصدير"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "FTPاستخدم مع المراقب"
-#~ msgid "click here"
-#~ msgstr "انقر هنا"
+#~ msgid "Package List to Install"
+#~ msgstr "قائمة الحزم المطلوب تثبيتها"
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "تم التخقق من وجود %s, هل تريد اعداده؟"
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "رجاء اختر الطابعة التي تريد تهيئتها."
+#~ msgid "sshd"
+#~ msgstr "sshd"
-#~ msgid "authentification"
-#~ msgstr "المصادقة"
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "user"
-#~ msgstr "المستخدم"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة"
+#~ msgid "Setting security level"
+#~ msgstr "جاري ضبط مستوى الأمن"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة للخادم %s"
+#~ msgid "Graphics card"
+#~ msgstr "بطاقة الشاشة"
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة"
+#~ msgid "Select a graphics card"
+#~ msgstr "اختر بطاقة شاشة"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة للخادم %s"
+#~ msgid "Choose a X driver"
+#~ msgstr "إختر مشغل X"
-#~ msgid "\\@quit"
-#~ msgstr "\\@خروج"
+#~ msgid "X driver"
+#~ msgstr "مشغل X"
-#~ msgid "Removable media"
-#~ msgstr "وسائط قابلة للإزالة"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-#~ msgid "Active"
-#~ msgstr "نشط"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 at 60 Hz"
-#~ msgid "No X"
-#~ msgstr "لا X"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 at 56 Hz"
-#~ msgid " Linux "
-#~ msgstr " لينكس "
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgid " System "
-#~ msgstr " نظام "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgid " Other "
-#~ msgstr " أخرى "
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgid "please choose your CD space"
-#~ msgstr "رجاء اختر مساحة القرص المدمج"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgid " Tape "
-#~ msgstr " الشريط "
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgid " Cancel "
-#~ msgstr " إلغاء "
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgid " Ok "
-#~ msgstr " موافق "
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgid "close"
-#~ msgstr "إغلاق"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "لم يمكن فتح /etc/sysconfig/autologin للقراءة: %s"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgid "New"
-#~ msgstr "جديد"
+#~ msgid "Choose security level"
+#~ msgstr "اختر مستوى الأمن"
-#~ msgid "Remote"
-#~ msgstr "بعيد"
+#~ msgid "hide expert mode"
+#~ msgstr "اخفاء اسلوب المحترف"
+
+#~ msgid "show expert mode"
+#~ msgstr "اظهار اسلوب المحترف"
#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "فضلا اضغط الزر بالأعلى\n"
-#~ "\n"
-#~ "أو استخدم \"جديد\""
+#~ "اذا كان الجهاز '%s' قابلاً للتغيير,\n"
+#~ " تأكد من أن الوسيط داخل الجهاز."
+
+#~ msgid ""
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
+#~ msgstr ""
+#~ "تحذير! هذا سيقوم بتهيئة '%s'.\n"
+#~ "كل البيانات الموجودة على الوسط '%s' سيتم محوها.\n"
+#~ "اذا كنت تريد المتابعة, اضغط موافق. "
+
+#~ msgid "unknown"
+#~ msgstr "غير معروف"
+
+#~ msgid "Select a module or write his name:"
+#~ msgstr "اختار الوحدة أو اكتب اسمها:"
+
+#~ msgid "Category"
+#~ msgstr "صنف"
+
+#~ msgid "preload module"
+#~ msgstr "وحدة ما قبل التحميل"
+
+#~ msgid "click on a category"
+#~ msgstr "اضغط على الصنف"
+
+#~ msgid "Remove"
+#~ msgstr "محو"
+
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "اداة لتجهيز قرص مرن لبدء النظام"
-#~ msgid "Use \"New\""
-#~ msgstr "استخدم \"جديد\""
+#~ msgid "Show expert mode"
+#~ msgstr "اظهار اسلوب المحترف"
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "اذا لم تتضمن القائمة المدخل المطلوب, قم بإدخاله هنا:"
+#~ msgid "modules"
+#~ msgstr "وحدات"
-#~ msgid "Shared resource"
-#~ msgstr "مصدر مشترك"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "صانع القرص لبدء النظام. لم يزل فى مرحلة مبكرة.\n"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index fb71a4b28..502ff3346 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -1,11 +1,13 @@
-# Azerbaijani Turkish translation of DrakX
-# Copyright (C) 1999 MandrakeSof
-# Vasif Ismailoglu MD <azerb_linux@hotmail.com>, 2000
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Vasif Ismailoglu MD<azerb_linux@hotmail.com> , 2000-2001
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-06-09 23:30GMT +0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
"MIME-Version: 1.0\n"
@@ -13,24 +15,56 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Bütün başlıqları ayrı ayrı quraşdır"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama ifadələrini işlət"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Təkcə \"%s\" kartını qur (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+#, fuzzy
+msgid "64 MB or more"
+msgstr "16 MB və ya daha çox"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Bir X vericisi seçin"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X verici"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Çoxlu Başlıq quraşdırılması"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +72,44 @@ msgstr ""
"Sizin sisteminiz çoxlu başlıq quraşdırmasını dəstəkləyir.\n"
"Nə etmək istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ekran kartı"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ekran kartınızı seçin"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree quraşdırılması"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Bir X vericisi seçin"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X verici"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Bütün başlıqları ayrı ayrı quraşdır"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Bir X vericisi seçin"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X verici"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Təkcə \"%s\" kartını qur (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,32 +121,17 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir fikir olar."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
-"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "SINAQ MƏRHƏLƏSİNDƏKİ 3D sür'ətləndirmə dəstəkli XFree %s"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +145,58 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir seçki olar."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
+"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree quraşdırılması"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "X verici üçün seçənəkləri göstərin"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Mövcud qurğuları saxlayım?\n"
+"Hal-hazırkı qurğular:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Xüsusi"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ümumi"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Geri al"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,512 +214,326 @@ msgstr ""
"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
"Seçərkən bir qərarsızlığa düşərsəniz, alçaq rezolyusiya seçin."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Üfüqi yeniləmə sür'əti"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Şaquli yeniləmə sür'əti"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor qurulmayıb"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ekran kartı hələ qurulmayıb"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolyusiya hələ seçilməyib"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 rəng (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bə'zi parametrləri dəyişdirin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 min rəng (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Bir xəta oldu:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 min rəng (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d saniyə sonra çıxılacaq"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milyon rəng (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Bu qurğular doğrudur?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyard rəng (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Bir xəta oldu, parametrləri dəyişdirin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolyusiyalar"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolyusiya"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Rezolyusiya və rəng dərinliyini seçin"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Ekran kartı: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 verici: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Daha Çox"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Ləğv et"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Oldu"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Usta Modu"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Hamısını Göstər"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolyusiyalar"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Qurğuların sınağı"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavatura düzülüşü: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Siçan növü: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorun Şaquli Daraması: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorun Üfüqi Yeniləməsi: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Ekran kartı: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Ekran kartı: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Ekran kartı yaddaşı: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Rəng dərinliyi: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolyusiya: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 verici: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sürücü: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window qurğuları hazırlanır"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Nə etmək istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitoru Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ekran kartını dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verici seçənəklərini dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Rezolyusiyanı Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mə'lumatı göstər"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Yenidən sına"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Çıx"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Mövcud qurğuları saxlayım?\n"
-"Hal-hazırkı qurğular:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 rəng (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 min rəng (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 min rəng (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milyon rəng (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyard rəng (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB və ya daha çox"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standart VGA, 60 Hz-də 640x480 "
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 87 Hz-də titrəşimli 1024x768, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Titrəşimsiz SVGA, 60 Hz-də 1024x768, 72 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "70 Hz də 1600x1200 qadir Monitor"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "76 Hz də 1600x1200 qadir Monitor"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Açılış qisminin ilk sektoru"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Qurulumu"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grup Qurulumu"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Qrafiki menyulu LILO"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Wİndowsdan açıl (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Sistem yükləyicisi ana seçənəkləri"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Açılış yükləyici quruluşu"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (köhnə BIOSlarda işləməz)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Bəsit"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "bəsit"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Ekran modu"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Parol (təkrar)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Əmr sətiri seçənəklərini məhdudlaşdır"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "məhdudlaşdır"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər açılışda təmizlə"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ümumi yaddaş miqdarı (%d MB tapıldı)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Birdən artıq profilə icazə ver"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Yaddaş miqdarını Mb cinsindən verin"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "İnit İsmarıcı"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Firmware Gecikməsini Aç"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Çəkirdək Açılışı Vaxt Dolması"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CDdən Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Əsas OS"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -681,83 +542,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Əlavə et"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Qurtardı"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ne cür bir giriş istəyirsiniz?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Digər sistemlər (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Digər sistemlər (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Əks"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Kök"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Sonuna əlavə et"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Cədvəl"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "E'tibarsız"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Əsas"
@@ -790,53 +651,75 @@ msgstr "Bir swap sahəsinə ehtiyacınız var"
msgid "This label is already used"
msgstr "Bu etiket istifadə edilməz"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara üzü tapıldı"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Başqa var?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara üzü var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Bəli"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Avadanlıq mə'lumatına bax"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
+"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
+"Məsələn ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modul seçənəkləri:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hansı %s sürücüsü sınansın?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -853,37 +736,15 @@ msgstr ""
"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
"kompüterinizə heç bir şey olmaz."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
-"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
-"Məsələn ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul seçənəkləri:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -892,51 +753,56 @@ msgstr ""
"%s modulunun yüklənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Bu istifadəçi adı artıq vardır"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -945,32 +811,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Qabıq"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -979,123 +845,103 @@ msgstr ""
"Kompüterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
"İstəmirsiniz isə rədd edin."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Hamısı"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Xüsusi"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ləğv et"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Yüksək"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Yüksək"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Şübhəci"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1106,7 +952,7 @@ msgstr ""
"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1114,7 +960,7 @@ msgstr ""
"Parollar fəallaşdırıldı, yenə də bir şəbəkə üstündə istifadə edilməməsi "
"tövsiyə edilir."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1123,62 +969,63 @@ msgstr ""
"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
"təhlükəsizlik səviyyəsidir."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
"mümkündür. \n"
"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
"artırılmışdır. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Biz dördüncü səviyyə haqlarını verdik və sistem xarici bağlantılara qarşı "
"tamamilə qapalıdır.\n"
"Təhlükəsizlik səviyyəsi indi ən üstdədir."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Təhlükəsizlik səviyyəsini seçin"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1203,7 +1050,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1217,7 +1064,7 @@ msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
@@ -1232,7 +1079,7 @@ msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1246,7 +1093,7 @@ msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1261,27 +1108,27 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Masa Üstü"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Başlama Menyusu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
@@ -1294,17 +1141,21 @@ msgstr "hələlik yardım sistemi mövcud deyildir.\n"
msgid "Boot Style Configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fayl"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Fayl/Çı_x"
+msgstr "/Fayl/_Çıx"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>x"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1337,14 +1188,14 @@ msgstr "Yaboot modu"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Qur"
@@ -1354,7 +1205,7 @@ msgid "System mode"
msgstr "Sistem modu"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
#: ../../bootlook.pm_.c:148
@@ -1366,14 +1217,16 @@ msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Oldu"
@@ -1422,7 +1275,7 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "Screenshots will be available after install in %s"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Fransızca"
@@ -1431,7 +1284,7 @@ msgstr "Fransızca"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belçika dili"
@@ -1460,11 +1313,12 @@ msgstr "Norveçcə"
msgid "Sweden"
msgstr "İsveçcə"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "İtalyanca"
@@ -1474,7 +1328,7 @@ msgstr "İtalyanca"
msgid "Austria"
msgstr "serial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1482,8 +1336,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Əvvəlcə datanızın yedəyini alın"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Diqqətlə Oxuyun!"
@@ -1496,11 +1350,12 @@ msgstr ""
"Aboot istifadə etməyi istəyirsinizsə, boş disk sahəsi (2048 sektor bəsdir.)\n"
"buraxmayı unutmayın."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Xəta"
@@ -1508,11 +1363,11 @@ msgstr "Xəta"
msgid "Wizard"
msgstr "Sehirbaz"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1525,78 +1380,78 @@ msgstr ""
"tövsiyə edirik. Əvvəlcə bölmənin üstünə, sonra \"Böyüklüyü\n"
"Dəyişdir\" düyməsinə tıqlayın"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ətraflı"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "bağlama iflas etdi"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Boş"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Digər"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Fayl sistemi növü:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Yarat"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Növ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Yerinə ``%s'' işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Sil"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Əvvəlcə ``Ayır'-ı işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1604,106 +1459,111 @@ msgstr ""
"%s bölməsinin növünü dəyişdirdikdən sonra, bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Usta moduna keç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Normal moda keç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Qeyd etmədən Çıx"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Avtomatik ayır"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Hamısını təmizlə"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Daha Çox"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Sabit disk seçkisi"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Bütün birinci bölmələr istifadədədir"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib məntiqi bölmə yaradın"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Bölmə cədvəlini yaz"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Fayl seç"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1711,11 +1571,11 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
"Davam etmək istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1723,124 +1583,131 @@ msgstr ""
"Disket sürücüyə bir disket yerləşdirin\n"
"Bu disketdəki bütün mə'lumatlar yox olacaqdır"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Mə'lumatı göstər"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Böyüklüyünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Daşı"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Şəkilləndir"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Bağla"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "RAIDə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "LVMə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ayır"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "RAIDdən ayır"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "LVMdən ayır"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAIDi dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Loopback üçün istifadə et"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Başlanğıç sektoru: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Fayl sistemi növü: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Xüsusiyyətlər: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Bölmə növünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hansı dili istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1849,132 +1716,139 @@ msgstr ""
"nöqtəsindən ayrıla bilinmir.\n"
"Əvvəlcə loopback-ı ləğv edin."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Böyüklüyü dəyişdirilir"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Hansı bölmə növünü istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Bu bölmədəki bütün mə'lumatlar yedəklənməlidir"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi böyüklüyü dəyişdirildirkdən sonra bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Yeni böyüklük seçin"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hansı diskə daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Daşınır"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Bölmə daşınır..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Əlavə etmək üçün mövcud bir RAID seçin"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "yeni"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM adı?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölməsi loopback üçün işlədilməz"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback fayl adı: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Həqiqi adı"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fayl başqa bir loopback tərəfindən istifadədədir, başqa\n"
"birini seçin"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da vardır. İşlədilsin?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Modul seçənəkləri:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "avadanlıq"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "səviyyə"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "parça böyüklüyü"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Nəcə bölməlandirmə istəyirsən?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bu paket yenilənməlidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1986,7 +1860,7 @@ msgstr ""
"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO işləməyə "
"bilər."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1998,7 +1872,7 @@ msgstr ""
"istəyirsinizsə, \n"
"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2009,132 +1883,132 @@ msgstr ""
"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
"əlavə etməyi unutmayın"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Şəkilləndirilir"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid iflas etdi"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezolyusiya: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Avadanlıq: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü hərfi: %s (sadəcə təxmini)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Növ: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ad: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Böyüklüyü: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d -dən silindr %d-yə\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Şəkilləndirilmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Şəkilləndirilməmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2143,7 +2017,7 @@ msgstr ""
"Loopback faylı:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2151,27 +2025,27 @@ msgstr ""
"Ana açılma bölməsi\n"
" (MS-DOS açılışı üçün)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça böyüklüyü %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylı adı: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2182,7 +2056,7 @@ msgstr ""
"Bəlkə də bu bir Sürücü bölməsidir.\n"
"Onda bunu ele beləcə buraxın.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2193,64 +2067,64 @@ msgstr ""
"Bu, ikili açılış üçün xüsusi\n"
"Bootstrap-dır.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Böyüklük: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Mə'lumat: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növü: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "%d data yolunda, %d nö'li\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Fayl sistemi növü: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2261,36 +2135,66 @@ msgstr "Bölmə növünü Dəyişdir"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Tanıtma"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "İnternet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "İstifadəçi adı"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "İstifadəçi adı"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS sahəsi"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2307,69 +2211,323 @@ msgstr ""
msgid "server"
msgstr "verici"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bir bölmə var\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
"ehtiyac vardır.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Heç disk bölməniz yoxdur!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Avtomatik təsbit işlət"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ümumi"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Şəkilləndirilir"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Bölmə növünü Dəyişdir"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Çıx"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Kömək/_Haqqında..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Siçan"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Ləğv et"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Siçan"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "İzah"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Tanıtma"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Fayl seç"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Keçit avadanlığı"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 düyməli"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Sabit disk seçkisi"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Avadanlıq mə'lumatına bax"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mə'lumatı göstər"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Siçan qurğuları"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "%s qapısında tapıldı"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d saniyə sonra çıxılacaq"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "CUPS sürücü datası oxunur..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Avtomatik yoxla"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2383,7 +2541,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2488,9 +2646,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2681,7 +2838,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2693,9 +2850,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2742,21 +2898,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2772,9 +2927,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
@@ -2843,9 +2998,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2991,38 +3145,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3196,11 +3344,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3253,7 +3401,7 @@ msgstr ""
" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
"sinifi seçin."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3268,7 +3416,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3283,7 +3431,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3299,7 +3447,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3308,23 +3456,23 @@ msgstr ""
"Xahiş edirik doğru qapını seçin. Məsələn, MS Windowsdakı COM1'in qarşılığı\n"
"Linuksda ttyS0'dır."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3346,7 +3494,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3368,7 +3516,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3376,7 +3524,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3397,7 +3545,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3419,7 +3567,7 @@ msgstr ""
"bilərlər.\n"
"Parametrlər mövzusunda diqqətli olun."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3431,29 +3579,28 @@ msgstr ""
"\n"
"Nə etdiyinizi bilmirsinizsə, \"Diskin ilk sektoru (MBR)\" seçin."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3462,7 +3609,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3488,7 +3635,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX PCI SCSI adapterleri axtarmağa cəhd edəcək. Əgə DrakX SCSI\n"
@@ -3517,7 +3664,7 @@ msgstr ""
"ya da Microsoft Windowsdan (Əgər sisteminizdə qurulu isə)\n"
"mə'lumat alın."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3528,9 +3675,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3542,7 +3688,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3632,7 +3778,7 @@ msgstr ""
"TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
"'*' işarətilə işıqlandırılacaqdır."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3660,9 +3806,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3710,10 +3855,10 @@ msgstr ""
" - Ana OS: OF gecikməsi müddəti dolduğu vaxt hansı OSnin açılacağını "
"göstərir."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3721,12 +3866,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3742,7 +3886,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3753,7 +3897,7 @@ msgstr ""
"Diqqətli olun, sürücüdəki bütün mə'lumatlar silinəcək\n"
"və geri gəlməyəcək."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3773,7 +3917,7 @@ msgstr ""
"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
"əməliyyatı ləğv edə bilərsiniz."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3781,12 +3925,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3810,20 +3954,20 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "%s sürücüsünə FAT şəkilləndirilmiş bir disket taxın"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3831,7 +3975,7 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
@@ -3863,67 +4007,67 @@ msgstr "Bir swap sahəsinə ehtiyacınız var"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Bir swap sahəniz yoxdur\n"
"Davam edim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Boş sahəni istifadə et"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Var olan bölmələri işlədimmi"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Loopback üçün Windows bölməsini işlət"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Linuks4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Böyüklüklərini seçin"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap sahəsi böyüklüyü (Mb): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Windows bölməsindəki boş sahəni işlət"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Hansı bölmənin böyüklüyünü dəyişdirəcəksiniz?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3932,13 +4076,16 @@ msgstr ""
"FAT tədqiqatçımız sizin bölümləri işlədə bilmir,\n"
"bu xəta oldu: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
"(defraq)"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3958,56 +4105,56 @@ msgstr ""
"Ardından quruluma \n"
"davam edin. Verilərinizin yedəyini almağı da unutmayın!"
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "bölmə %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "FAT bölməsi yoxdur ya da loopback üçün lazımi yer buraxılmayıb"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Bütün diski sil"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "\"Windows\"u sil"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
"edəcəksiniz?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"%s bölüməsinin böyüklüyü dəyişdirildikdən sonra bu bölmədəki bütün "
"mə'lumatlar silinəcəkdir"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Hazırkı disk bölmələndirməsi"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Fdisk istifadə et"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4016,11 +4163,11 @@ msgstr ""
"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Heç Windows disk bölməniz yoxdur!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Artıq bölmə əlavə edilə bilməz"
@@ -4028,16 +4175,16 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmə cədvəli növü: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Şəbəkə fəallaşdırılır"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Şəbəkə dayandırılır"
@@ -4049,12 +4196,12 @@ msgstr ""
"Bir xəta oldu, fəqət necə düzəldiləcəyini bilmirəm.\n"
"Davam edin, riski sizə aitdir!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4066,12 +4213,12 @@ msgstr ""
"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadə edərək Cd-Rom'u yoxlayın.\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Disket sürücü yoxdur"
@@ -4081,9 +4228,9 @@ msgstr "Disket sürücü yoxdur"
msgid "Entering step `%s'\n"
msgstr "Başlanğıc addımı `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4094,198 +4241,156 @@ msgstr ""
"dəCDROMdan başlatdığınız zaman,\n"
" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Qurulum Sinifi"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Seçdiyiniz paket qruplarının ümumi böyüklüyü təximən %d MBdır.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
-"qurmaq istədiyiniz paket faizini seçin.\n"
-"100%%'i seçərsəniz bütün paketlər qurulacaqdır."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
-"var.\n"
-"Bundan daha azını qurmaq istəsəniz,\n"
-"daha az bir faiz sadəcə ən vacib paketləri ;\n"
-"%d%% isə qurula biləcək bütün paketləri quracaqdır."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Qurulacaq paketlərin faizi"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ümumi böyüklük: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Xətalı paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Buraxılış: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Böyüklüyü: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Əhəmiyyət: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Avtomatik seçili paketləri göstər"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Qurulumdan çıx"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Təxmini olaraq hesaplanır"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Qalan müddət"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Qəbul Et"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4299,17 +4404,17 @@ msgstr ""
"\"%s\" adlı Cd-Romu sürücünüzə taxın və OLDU'ya basın.\n"
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'ə basın."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4382,11 +4487,11 @@ msgstr "Bir xəta oldu"
msgid "Do you really want to leave the installation?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisenziya sözləşməsi"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4401,7 +4506,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4519,7 +4624,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4624,113 +4729,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatura"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Bütün mövcud klaviaturaların siyahısı"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Hansı qurulum sinifini istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Qurulum/Güncəlləmə"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Bu bir qurulum mu, yoxsa güncəlləməmidir?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Tövsiyə edilən"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Usta"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Güncəlləmə"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Siçan Qapısı"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Düymə emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Düymə 2 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Düymə 3 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kartlar qurulur..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE qapıları qurulur"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "uyğun bölmə tapılmadı"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Bağlama nöqtələri üçün bölmələr daranır"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Bağlama nöqtələrini seçin"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4744,7 +4853,7 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək istəyirsiniz?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4752,139 +4861,142 @@ msgstr ""
"DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
"Özünüz davam edə bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Kök (root) Bölməsi"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyişikliklərin daxil olması üçün kompüterinizi yenidən "
"başlatmalısınız."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Xətalı bloklar sınansınmı?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Bölmələr şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylı yaradılır və şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik əlavə edin"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Mövcud olan paketlər axtarılır."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Güncəllənəcək paketlar tapılır"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Sisteminizdə qurulum ya da güncəlləmə üçün lazımi boş yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Hamısı (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ən az (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Tövsiyə edilən (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Seçili böyüklük var olandan daha böyükdür"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4895,16 +5007,16 @@ msgstr ""
"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
"basın."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlı Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Qurulum hazırlanır"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4913,23 +5025,23 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4997,166 +5109,197 @@ msgstr ""
"USA\n"
"ünvanına yazınız."
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Başqa var?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Mündəricat"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartı"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartı"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "\"Windows\"u sil"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Tanıtma"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS sahəsi"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS Verici"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5187,19 +5330,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "İlk disket sürücü"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "İkinci disket sürücü"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5229,7 +5372,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5238,28 +5381,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sürücü yoxdur"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açılış disketi yaratmaq üçün istifadə ediləcək disket sürücüyü seçin"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5267,11 +5410,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5279,16 +5422,16 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yükləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5305,18 +5448,17 @@ msgstr ""
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5326,8 +5468,8 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1337
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5338,7 +5480,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5352,11 +5494,15 @@ msgstr ""
"Sisteminizin qurğuları haqqında daha geniş bilgiyi Linuks Mandrake \n"
"İstifadəçi Kitabcığında tapa bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5370,15 +5516,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5406,421 +5552,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Monitorunuzu seçin"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Ətraflı"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Mə'lumat"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ağacı Aç"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Ağacı Qapat"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Otaq və grup sıralaması arasında gəz"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Xətalı tərcih, təkrar sınayın\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Seçənəklər: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Çex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "İspanca"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fincə"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Fransızca"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveçcə"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "İsveçcə"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "İngiliz (UK) klaviaturası"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturası"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ermenicə (köhnə) "
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ermenicə (yazı maşını)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azərbaycanca (latın)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "İsveçcə (Alman sırası)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "İsveçcə (Fransız sırası)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Çex dili (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Almanca (ölü düymələr olmasın)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveçcə)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gürcü dili (\"Rus\" sırası)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gürcü dili (\"Latın\" sırası)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Xırvatca"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "İsrail"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "İsrail (Fonetik)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "İzlandiya dili"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "İtalyanca"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Yaponca 106 düyməli"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreya klaviaturası"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latın Amerika dili"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (köhnə)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedoniya dili"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sırası)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sırası)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Fransızca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovencə"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Cədvəl"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türkcə (müasir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Yugoslavca (latın/kiril)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5833,7 +5963,31 @@ msgstr "Dairəvi bağlama %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Məntiqi ciltləri birinci olaraq sil\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefon nömrəsi"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Bölmə şəkilləndirilməsi"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5874,10 +6028,6 @@ msgstr "1 düymə"
msgid "Generic 2 Button Mouse"
msgstr "Sıravi 2 Düyməli Siçan"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ümumi"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Çərx"
@@ -5942,38 +6092,54 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "Siçansızs"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "TƏKƏRİ OYNADIN!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sonrakı ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Əvvəlki"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Doğrudur?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Mə'lumat"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Ağacı Aç"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Ağacı Qapat"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Otaq və grup sıralaması arasında gəz"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "İnternetə bağlan"
@@ -6020,7 +6186,7 @@ msgstr ""
"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
"Bu bağlantı şəklini qura bilmərəm."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Şəbəkə ara üzünü seçin"
@@ -6033,7 +6199,7 @@ msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
msgid "no network card found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6048,15 +6214,15 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgə şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Ev sahibi adı"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
@@ -6104,7 +6270,7 @@ msgstr "ISDN quraşdırılması"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"İnternet xidmət vericinizi seçin.\n"
"Siyahıda deyilsə Siyahıda deyil'i seçin."
@@ -6127,14 +6293,14 @@ msgstr "Bütün dünya"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Bütün dünya \n"
" D-Channel'lə xaric (kiralıq xətlər)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
#: ../../network/isdn.pm_.c:199
@@ -6158,7 +6324,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"ISA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
@@ -6174,13 +6341,13 @@ msgid "Continue"
msgstr "Davam et"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Hansısı sizin ISDN kartınızdır?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
"kartlardan birini seçin."
@@ -6197,47 +6364,47 @@ msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
msgid "Dialup options"
msgstr "Çevirməli şəbəkə seçənəkləri"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Bağlantı adı"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefon nömrəsi"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Giriş adı"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript əsaslı"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal əsaslı"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Sahə(domain) adı"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Birinci DNS Vericisi (arzuya görə)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6246,7 +6413,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6254,11 +6421,11 @@ msgstr ""
"\n"
"Bağlantınızı yenidən quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Artıq İnternetə bağlısınız."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6266,28 +6433,28 @@ msgstr ""
"\n"
"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Hələ İnternetə bağlı deyilsiniz."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Bağlan"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Bağlantını kəs"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Şəbəkəni qur"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "İnternet bağlantısı & quraşdırılması"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
@@ -6295,7 +6462,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6310,12 +6477,12 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6326,9 +6493,9 @@ msgstr ""
"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
"et'ə basın.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6338,93 +6505,99 @@ msgstr ""
"İnternet/Şəbəkə qurğularınızı edəcəyik.\n"
"Avtomatik təsbit istəmirsiniz isə işarəti qaldırın.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Usta Modu"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Avadanlıqlar tanınır..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normal modem təsbiti"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "%s qapısında tapıldı"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN Bağlantısı"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s tapıldı"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "%s ara üzündə tapıldı"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "eternet kart tapıldı"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6435,7 +6608,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6445,7 +6618,7 @@ msgstr ""
"\n"
"Qurğular indi sisteminizə əlavə ediləcək.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6453,16 +6626,16 @@ msgstr ""
"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
"verici adı xəsarətləri meydana gələ bilər."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6472,45 +6645,50 @@ msgstr ""
"OLDU ya basın.\n"
"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (sürücü %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ünvanı"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Açılışda başladılır"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6521,64 +6699,64 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgər şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Vəkil verici ftp://... olmalıdır."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "İnternet qurğuları"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "İnternete girişi indi sınamaq istəyirsiniz?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Bağlantınız sınanır..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "İnternetə artıq bağlısınız"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Təhlükəsizlik səbəbi ilə indi bağlantı qopacaqdır."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6586,115 +6764,120 @@ msgstr ""
"Sisteminiz İnternetə bağlı deyil.\n"
"Bağlantını yenidən quraşdırın"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Bağlantı quraşdırılması"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kart IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kart mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kart IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kart IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kart IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Sizin şəxsi telefon nömrəniz"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "İXM telefon nömrəsi"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns xidmətcisi 1 (arzuya görə)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns xidmətcisi 2 (arzuya görə)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Klaviaturanızı seçin"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Yığma modu"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Hesab Girişi (istifadəçi adı)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Hesap Parolu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "bağlama iflas etdi: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Bölmə cədvəlinizdə bir boşluq var, amma o da işlədilə bilməz.\n"
"Bu boşluğu, birinci bölmənizi en yaxınındakı genişlədilmiş bölməyə "
"daşıyaraq\n"
"məsələni həll edə bilərsiniz."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s faylından qurtarılışda xəta: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6704,194 +6887,194 @@ msgstr ""
"Datanın bütövlüyü yoxlaması bacarılmadı. \n"
"Bu o demekdir ki diskə yazılan hər şey təsadüfi olacaqdır"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "alınmalı"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vacib"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "əla"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "gözəl"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "bəlkə"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Uzaq çap edici vericisi(lpd)"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Çap Edici Vericisi"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS verici IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Əsas)"
@@ -6914,12 +7097,12 @@ msgstr ""
"Buradakı hər çap edici avtomatik tapılacaqdır.\n"
"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Uzaq CUPS vericisi"
@@ -6950,7 +7133,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
@@ -6959,7 +7142,7 @@ msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
msgid "CUPS server IP"
msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Qapı"
@@ -6968,22 +7151,13 @@ msgstr "Qapı"
msgid "Automatic CUPS configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Avadanlıqlar tanınır..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Qapıları sına"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6996,14 +7170,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7021,12 +7195,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7040,11 +7214,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7054,35 +7228,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Qapıları sına"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tapıldı"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7090,43 +7268,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7134,7 +7312,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7142,73 +7320,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Quraşdırma"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "%s paketi qurulur"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7218,31 +7406,31 @@ msgstr ""
"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
"adınını verməlisiniz."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7255,35 +7443,35 @@ msgstr ""
"IP ünvanı, çap edicinin paylaşdırma adı, işləmə grupu, istifadəçi adı və \n"
"parol verilməlidir."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB verici adı"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Paylaşdırma adı"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "İş qrupu"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7307,7 +7495,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7316,7 +7504,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7324,11 +7512,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7340,28 +7528,28 @@ msgstr ""
"edici \n"
"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Çap Edici Vericisi"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Çap Edici Növbə Adı"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Soket Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7372,60 +7560,56 @@ msgstr ""
"Soket çap edicidən yekun almaq üçün, çap edicinin ev sahibi adını ve "
"mümkünsə, qapısının nömrəsini verməlisiniz."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Çap edici adı"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "İzah"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7440,28 +7624,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Doğrudur?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Nə cür bir çap ediciniz var?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7470,18 +7654,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7491,12 +7675,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7504,7 +7688,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7517,7 +7701,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7527,34 +7711,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Çap edicini sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Qapıları sına"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7562,45 +7746,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Bəli, hər iki sınaq səhifəsini də çap et"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standart"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7616,7 +7800,7 @@ msgstr ""
"\n"
"Düz mü işləyir?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7626,16 +7810,16 @@ msgstr ""
"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
"Düz mü işləyir?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7644,15 +7828,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7661,49 +7845,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7713,7 +7897,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7722,30 +7906,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Qapat"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Şəbəkə dayandırılır"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Qapat"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7753,38 +7948,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7794,51 +7989,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7846,61 +8041,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Çap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Bağlantınız başladılır..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor qurulmayıb"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7908,12 +8103,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Şəbəkə Qurğuları"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7923,34 +8118,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Yüksək"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Şübhəci"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7965,12 +8160,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7984,70 +8179,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Bir çap edici qurmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8058,7 +8253,7 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8068,139 +8263,143 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normal Mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Çıx"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "CUPS sürücü datası oxunur..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8284,24 +8483,62 @@ msgstr "Parollar uyğun gəlmir"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Şəkilləndirilmiş RAID md%d-yə disk bölməsi əlavə edilə bilinmədi"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "%s faylına yazıla bilinmədi"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid iflas etdi"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
+"asand\n"
+"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
+"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
+"mümkündür. \n"
+"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
+"artırılmışdır. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Seçənəklər"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
@@ -8359,7 +8596,7 @@ msgstr ""
"HardDrake texniki tə'minat sınağı aparar və onları bir ön quraşdırmadan "
"keçirər."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8435,7 +8672,7 @@ msgid ""
msgstr ""
"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8514,7 +8751,7 @@ msgstr ""
"bağlantılarını təşkilatlandırır. Portmap vericisi RPC mexanizmini işlədən\n"
"protokollarla xidmət edən kompüterlərdə qurulmalıdır və işlədilməlidir."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8613,7 +8850,7 @@ msgstr "İnternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -8736,6 +8973,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "İdarə Mərkəzi"
@@ -8839,6 +9077,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "%s paketi qurulur"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8847,6 +9094,161 @@ msgstr ""
"Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
"Xəsərli hissələri düzəltməyə cəhd edəcəm"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "İnternet qurğuları"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Databeyz"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Databeyz"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "İstifadəçini əlavə et"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP Alıcısı"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Yardım"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Sil"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Fayl seç"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "İstifadəçini əlavə et"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP Alıcısı"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Quraşdırılır..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "yenidən quraşdır"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "%s sürücüsünə bir disket taxın"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Disket sürücü yoxdur"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8888,6 +9290,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Avtomatik qurulum disketi hazırlanır"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8896,47 +9303,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Təbriklər!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Qurulum"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "İstifadəçi əlavə et"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8944,15 +9344,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8960,709 +9352,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "%s faylı oxunurkan xəta oldu"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Çap Edici Bağlantısı Seçin"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Növ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Sabit disk seçkisi"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Siçan avadanlığı: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Xahiş edirik siçanınızı seçin"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Yerli Şəbəkə quraşdırılması"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Çap Edici Bağlantısı Seçin"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Xüsusi"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Yardım"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Əvvəlki"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Sonrakı ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Qurulacaq paketləri seçin"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9694,7 +10149,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9703,7 +10158,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9744,7 +10199,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9772,12 +10227,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9794,7 +10254,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9834,7 +10294,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9845,7 +10305,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9858,7 +10318,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9902,104 +10362,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s qurulumu iflas etdi. Olan xəta:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsol Vasitələri"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "İdarə Mərkəzi"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Usta"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Siçan"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Uzaq Çap Edici"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Paylaşdırma adı"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Çap Edici"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Şəbəkə Quraşdırılması Sehirbazı"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Tanıtma"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Paket Qrup Seçkisi"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Qurulumdan çıx"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Qapı"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Şəbəkə quraşdırılması (%d adapter)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Profili sil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Silinəcək profil:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Yeni profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Ev sahibi adı:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "İnternet imkanı"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Növ: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Keçit:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Ara üz"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Hal:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "İnternet keçişini Qur..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Yerli Şəbəkə quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Sürücü"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Ara üz"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Hal:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Yerli Şəbəkəni Quraşdır..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Sehirbaz..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Əlavə Et"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Bağlandı"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Bağlan..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Bağlantını Kəs..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Qurulu ara üzünüz yoxdure.\n"
+"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "%s Adapteri: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Açılış Protokolu"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Açılışda başladılır"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP alıcısı"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Fəal"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Fəal"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Heç İnternet bağlantınız yoxdur.\n"
+"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "İnternet bağlantısı quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "İnternet Bağlantısı Quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Bağlantı növü:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametrlər"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Keçit"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Eternet Kartı"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP Alıcısı"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "istifadə qaydası: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modul adı"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Böyüklük"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "açılış disketi yaradılması"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "əsas"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy xətası: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "çəyirdək buraxılışı"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Ümumi"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ustaların Sahəsi"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrdin arzuya bağlı olan arqumentləri"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Modul əlavə et"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "zorla"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "lazım olarsa"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "scsi modulları keç"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "raid modulları keç"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Modulu çıxart"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Nəticə"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Diski yarat"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "%s avadanlığında medya olduğundan əmin olun"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"%s avadanlığında medya yoxdur.\n"
+"Xahiş edirik. birini taxın."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Fork edilə bilmir: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Düzgün mkbootdisk aparıla bilmir: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Qurtardı"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Qurulum hazırlanır"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10008,122 +10896,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Bağlama nöqtəsi"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "İş Yeri"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Dayandır"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Çap Edici"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Sistemi qur"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Fayl seç"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Uzaq Çap Edici"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "İnit İsmarıcı"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Qurulum"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Qurulumdan çıx"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10135,31 +11022,31 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "passivləşdir"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "keç"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10171,19 +11058,19 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "fəallaşdır"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Xidmətlər fəallaşdırılır..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10199,21 +11086,21 @@ msgstr ""
"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
"ehtiyacınız var."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ara Üz %s (%s modulu işlədilir)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Ara üz %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10221,11 +11108,11 @@ msgstr ""
"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
"salın."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10240,18 +11127,18 @@ msgstr ""
"\n"
"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seçin"
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor qurulmayıb"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10261,17 +11148,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "İnternet qurğuları"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10282,7 +11169,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10294,33 +11181,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS verici IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s quğusunda dəyəsən bir LAN ünvan çaxışması tapıldı!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10328,20 +11215,20 @@ msgstr ""
"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
"gəzdirə bilərsiniz."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkən xəta oldu"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10352,23 +11239,23 @@ msgstr ""
"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
"işlədilir."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Quraşdırma artıq qurtarıbdır, amma fəaliyyəti dayandırılıb."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Quraşdırma artıq qurtarıbdır və fəaliyyətdədir."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "İnternet Bağlantısı Bölüşdürmə Quraşdırması aparılmayıb."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10383,213 +11270,6 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Şəbəkə quraşdırılması (%d adapter)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profili sil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Silinəcək profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Yeni profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ev sahibi adı:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "İnternet imkanı"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Növ: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Keçit:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Ara üz"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "İnternet keçişini Qur..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Sürücü"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Ara üz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Yerli Şəbəkəni Quraşdır..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sehirbaz..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Əlavə Et"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Bağlandı"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Bağlı deyil"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Bağlan..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Bağlantını Kəs..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Qurulu ara üzünüz yoxdure.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s Adapteri: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Açılış Protokolu"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Açılışda başladılır"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP alıcısı"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Heç İnternet bağlantınız yoxdur.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "İnternet bağlantısı quraşdırılması"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "İnternet Bağlantısı Quraşdırılması"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Bağlantı növü:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrlər"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Keçit"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Eternet Kartı"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP Alıcısı"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "İdarə Mərkəzi"
@@ -10598,94 +11278,130 @@ msgstr "İdarə Mərkəzi"
msgid "Choose the tool you want to use"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Fransızca (Kanada/Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Fransızca"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "İzlandiya dili"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serial"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Paketlər qurulurkən bir xəta oldu:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10729,7 +11445,7 @@ msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10740,11 +11456,11 @@ msgstr "Təkcə bu gününkünü göstər"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/Fayl/_Yeni"
+msgstr "/Fayl/_Təze"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>Y"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10752,7 +11468,7 @@ msgstr "/Fayl/_Aç"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>A"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10760,7 +11476,7 @@ msgstr "/Fayl/_Qeyd Et"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>Q"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
@@ -10778,13 +11494,9 @@ msgstr "/_Seçənəklər"
msgid "/Options/Test"
msgstr "/Seçənəklər/Sınaq"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Yardım"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Yardım/_Haqqında..."
+msgstr "/Kömək/_Haqqında..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10845,7 +11557,7 @@ msgstr "Təqvim"
msgid "Content of the file"
msgstr "Fayl məzmunu"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10854,80 +11566,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache və Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Sahə(domain) adı"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix məktub vericisi, Inn xəbər vericisi"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Verici"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "avadanlıq"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Çap Edici Vericisi"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "avadanlıq"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Şəkilləndirilir"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Quraşdırma"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Fərqli qeyd et..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_USB avadanlığı tapılmadı\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "3 düymə emulasiyası"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "CUPS sürücü datası oxunur..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Avadanlıqlar tanınır..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10971,6 +11714,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Firewall quraşdırılması"
@@ -11378,10 +12133,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedya - Səs"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vasitələr"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Sənədlər"
@@ -11484,10 +12235,6 @@ msgstr ""
"Elektronik məktub və xəbər oxuyucusu (pine, mutt, tin..) və Web səyyahları"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivləmə, emulyatorlar, izləmə"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Şəxsi Maliyyə"
@@ -11534,1391 +12281,149 @@ msgstr "Multimedya - CD Yandırma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Dayandır"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Choose options for server"
+#~ msgstr "X verici üçün seçənəkləri göstərin"
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Qurtardı"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Uzaq Çap Edici"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "İndi %s moduluna parametrlər girə bilərsiniz."
-
-#~ msgid "mount failed"
-#~ msgstr "bağlama iflas etdi"
-
-#~ msgid "Low"
-#~ msgstr "Alçaq"
-
-#~ msgid "Medium"
-#~ msgstr "Orta"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Bu təhlükəsizlik səviyyəsi üçün əlavə olaraq artırılmış təhlükəsizlik "
-#~ "xəbərdarlığı və \n"
-#~ "yoxlama var."
-
-#~ msgid "Boot mode"
-#~ msgstr "Açılış modu"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Usta"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linuks zamanı GMT-yə (Greenwich Mean Time) görə qurğular və olduğunuz \n"
-#~ "yerdəki zamana görə lazımi dəyişiklikləri edər."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "İnternetə bağlantı"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "İnternetə bağlantını kəs"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Şəbəkə (İnternet/LAN) bağlantınızı quraşdırın"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Hansı diskə daşımaq istəyirsiniz?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Mə'lumat"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome iş stansiyası"
-
-#~ msgid "authentification"
-#~ msgstr "tanıtma"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor qurulmayıb"
-#~ msgid "user"
-#~ msgstr "istifadəçi"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi "
-#~ "üçün istifadə edilir."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ekran kartı hələ qurulmayıb"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) verici adlarını IP ünvanlarına çevirən\n"
-#~ "Sahə Adı Vericisidir(DNS)."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezolyusiya hələ seçilməyib"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Çıx"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-
-#~ msgid "Active"
-#~ msgstr "Fəal"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Xeyr"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "\"%s\" modelində bir çap edici tapıldı:"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Yerli Çap Edici Avadanlığı"
-
-#~ msgid "Printer Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linuks"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistem modu"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Digər"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Klaviatura quruluşunu seçiniz."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Növ: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Xətalı yedəkləmə faylı"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X qur"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Ləğv et"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Oldu"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Qapat"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Bağlantınız başladılır..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Bağlantınız kəsilir..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "Bağlantı kəsildi. Buna əllə kökdə\n"
-#~ "/etc/sysconfig/şəbəkə-scripts/net_cnx_down\n"
-#~ "əmrini icra edərək nail ola bilərsiniz."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistem indi bağlantısını kəsib."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#~ msgid "Total size: "
-#~ msgstr "Hamısı: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Xahiş edirik gözləyin, "
-
-#~ msgid "Total time "
-#~ msgstr "Ümumi müddət"
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "X11 qurğuları üçün mövcud qurğulardan istifadə edək?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Çap ediciniz hansı avadanlığa bağlıdır? \n"
-#~ "(/dev/lp0, LPT1'nin qarşılığıdır)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Diqqət, şəbəkə adapteriniz onsuz da qurulub. Yenidən quracam."
-
-#~ msgid "New"
-#~ msgstr "Yeni"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#~ "bə'zi parametrləri dəyişdirin"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Qarışıqlıq (%s), daha aydın yazın\n"
+#~ msgid "An error occurred:"
+#~ msgstr "Bir xəta oldu:"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (əsas %s) "
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "%d saniyə sonra çıxılacaq"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Seçkiniz (əsas %s, yoxsa `none' yazın) "
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Bu qurğular doğrudur?"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "/etc/sysconfig/autologin oxunmaq üçün açıla bilmir: %s"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Bir xəta oldu, parametrləri dəyişdirin"
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 verici: %s"
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Razısınız?"
+#~ msgid "Show all"
+#~ msgstr "Hamısını Göstər"
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Şəbəkə avadanlığını yenidən başlatmalıyam:\n"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window qurğuları hazırlanır"
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "%s avadanlığını yenidən başladacam. Razısınız?"
+#~ msgid "What do you want to do?"
+#~ msgstr "Nə etmək istəyirsiniz?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Başqa bir şəkildə seçilməmiş isə, ümumiyyətlə bu seçki \"/dev/hda\" \n"
-#~ "(Birinci ali IDE disk) ya da \"/dev/sda\" (birinci SCSI disk)\n"
-#~ "olacaqdır."
+#~ msgid "Change Monitor"
+#~ msgstr "Monitoru Dəyişdir"
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Bağlantı növü:"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ekran kartını dəyişdir"
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
+#~ msgid "Change Server options"
+#~ msgstr "Verici seçənəklərini dəyişdir"
-#~ msgid "Test the mouse here."
-#~ msgstr "Siçanınızı buradan sınayın."
+#~ msgid "Change Resolution"
+#~ msgstr "Rezolyusiyanı Dəyişdir"
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Qurulma və sistem istifadəsi üçün bir dil seçin."
+#~ msgid "Show information"
+#~ msgstr "Mə'lumatı göstər"
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Davam edə bilmək üçün yuxarıdakı lisenziyanın maddələrini qəbul "
-#~ "etməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı isəniz \"Qəbul\" düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı deyilsəniz ,\"Rədd\" düyməsinə basın\n"
-#~ "Yükləmə indiki qurğularınız dəyişdirilmədən bitiriləcək."
+#~ msgid "Test again"
+#~ msgstr "Yenidən sına"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Yuxarıdakı siyahıdan klaviaturanıza uyöun gələn düzülüşü seçiniz"
+#~ msgid "Setting security level"
+#~ msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Əgər yükləmədən sonra işlətmək üçün fərqli dillər (yükləmənin əvvəlində "
-#~ "seçdiyinizdən) seçmək istəyirsinizsə,\n"
-#~ "xahiş edirik, onları yuxarıdakı siyahıdan seçin.\n"
-#~ "Əgər hamısını seçmək istəyirsiniz isə \"Hamısını\" seçin."
+#~ msgid "Graphics card"
+#~ msgstr "Ekran kartı"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - Xüsusi: Əgər Linuksa aşina isəniz bu seçənəyə tıqlayın.\n"
-#~ " Sonra sistemin sinifini seçə biləcəksiniz.\n"
-#~ " Ayrınrılar üçün aşağıya baxın.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Usta: Əgər GNU/Linuks haqqında yaxşı bilik sahibi isəniz bunu seçin.\n"
-#~ " Daha sonra \"Xüsusi\" seçkisində olduğu kimi sistemin sinifini seçə "
-#~ "biləcəksiniz.\n"
-#~ " Ancaq artıq dərəcədə xahiş edirik, NƏ ETDİYİNİZİ BİLMİRSƏNİZ BU "
-#~ "SİNİFİ SEÇMƏYİN!."
+#~ msgid "Select a graphics card"
+#~ msgstr "Ekran kartınızı seçin"
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "İndi isə kompüterinizi necə işlədəcəyinizə qerar verin.Seç:\n"
-#~ "\n"
-#~ "* Masa üstü: kompüterinizi gündəlik işlər (idarə işləri, qrafika vs.)\n"
-#~ " üçün istifadə edəcək isəniz, bunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Təcrübi: Kompüterinizi proqram tə'minatı inkişafı üçün işlədəcəksəniz, "
-#~ "sizin üçün ideal seçkidir.\n"
-#~ " O zaman qaynaq kodları yazmaq, şəkilləndirmək və xətadan ayıqlamaq və ya "
-#~ "proqram paketləri hazırlamaq üçün lazımi hər cür proqramın daxil olduğu "
-#~ "bir kolleksiya kompüterinizə qurulacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Verici: Kompüterinizə Linuks-Mandrakeni verici olaraq işlətmək üçün "
-#~ "quracaqsanız, bu yaxşı bir seçkidir.\n"
-#~ " Bir fayl vericisi (NFS ya da SMB),çap edici vericisi(Unixin lp protokolu "
-#~ "ya da Windows tərzi SMB çap),\n"
-#~ " tanıdıcı verici (NIS), mə'lumat tabanı vericisi və oxşarı...Onda KDE, "
-#~ "GNOME kimi məzəli şeylərin qurulmağını gözləməyin."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "İndi qurmaq ya da güncəlləmək istədiyiniz paket qruplarını\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "Sonra DrakX seçdiklərinizi qurmaq ya da güncəlləmək üçün lazımi \n"
-#~ "boş yerinizin olub olmadığını sınayacaq. Əgər yoxsa, sizə bunu \n"
-#~ "söyləyəcək. Nə olursa olsun davam etmək istəsəniz,yükləmə davam edəcək.\n"
-#~ "Amma daha az ehtiyac olan paketlər qurulmayacaq.\n"
-#~ "Siyahının üstündə \"Şəxsi paket seçilməsi\"\n"
-#~ "seçənəyini işarətləsiniz 1000dən artıqpaket arasından seçə bilərsiniz."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standart VGA, 60 Hz-də 640x480 "
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "İndi isə siz istədiyiniz paketi qurmaq üçün\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket pəncərəsi solundakı bucaqdaki seçənəyə tıqlayaraqağacı həm aça\n"
-#~ "həm də sıxışdıra bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paketlərin əlifba sırasına görə düzülməsini istəyirsinizsə\n"
-#~ "\"Otaq və grupu düz\"\n"
-#~ "düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket ehtiyacları xəbərdarlıqlarını istəmirsəniz \"Avtomatik\n"
-#~ "ehtiyaclar\"ı seçə bilərsiniz.\n"
-#~ "Amma bunu işarətlədiyiniz vaxt unutmayın bir paketin işarətini "
-#~ "qaldırdığınızda\n"
-#~ "ehtiyacı olan digər paketlerin de işarəti səssizcə qalxar."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 56 Hz-də 800x600"
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Yuxarıdakı siyahıdakı bütün CDlərə sahibsəniz, OLDUya tıqlayın.\n"
-#~ "Bu CD'lərin heç birinə sahib deyilsəniz, Ləğv et'i tıqlayın.\n"
-#~ "CD'lərdən bə'ziləri əksiksə, bunları seçili vəziyyətdən çıxarıb OLDUya "
-#~ "tıqlayın."
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Kompüterinizi internete və ya yerli networka bağlamaq\n"
-#~ "istəyirsinizsə xahiş edirik doğru xüsusiyəti seçin. Ayrıca DrakXin bunu "
-#~ "tapması üçün avadanlığınızı açın.\n"
-#~ "\n"
-#~ "\n"
-#~ "İnternet və ya yerli networka heç girişiniz yox isə\"Şəbəkə qurğularını "
-#~ "keç\"\n"
-#~ "seçənəyini işarətləyin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Şəbəkə qurğularını sonraya buraxmaq istəyirsinizsəvə ya qurğular bitdiysə "
-#~ "\"Oldu\" seçənəyini işarətləyin."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 87 Hz-də titrəşimli 1024x768, 56 Hz-də 800x600"
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Modem tapılmadı. Xahiş edirik modemin bağlı olduğu serial qapını seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, birinci serial qapı (Windows altında\n"
-#~ "\"COM1\") linux altında\"ttyS0\" deyə adlandırılır."
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "İndi isə çevirməli bağlantı xüsusiyyətləri seçə bilərsiniz.\n"
-#~ "Əgər bilmirsinizsə və ya ne girəcəyinizə qerar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi) bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Titrəşimsiz SVGA, 60 Hz-də 1024x768, 72 Hz-də 800x600"
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Modeminiz xarici isə modeminizi açın ki DrakX onu avtomatik olaraq tapsın."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Xahiş edirik modeminizi açın ve doğru seçənəyi işarətləyin."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Əgər yuxarıdakılar haqqında mə'lumatınız yox isə və ya ne girəcəyinizə "
-#~ "qərar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi)bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "İndi isə ev sahibi bilgilərini girin. Ne girəcəyinizə\n"
-#~ "qerar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi)bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - IP ünvanı: Əgər IP ünvanını bilmirsinizsə, sistem idarəcisinəya da \n"
-#~ "İnternet xidmət vericisinə danışın.\n"
-#~ "\n"
-#~ " - Şəbəkə maskası: Ümumiyyətlə \"255.255.255.0\" yaxşı bir seçkidir. Əgər "
-#~ "əmin \n"
-#~ "deyilsəniz, yenə sistem idarəcinizə ya da xidmət vericinizəsoruşun.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Avtomatik IP : Əgər networkunuz bootp ya da dhcp protokollarından bir "
-#~ "dənəsini \n"
-#~ "istifadə edirsə bu seçənəyi işarətləyin."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS işlədilirsə, \"NIS kullan\" seçənəyini işarətləyin. "
-#~ "Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr "İndi ev sahibi adını girin. Bilmirsinizsə boş buraxın."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "İndi çevirməli bağlantı seçənəklərini girə bilərsiniz. Əgər nə yazılması "
-#~ "lazım olduğunu\n"
-#~ "bilmirsinizsə İnternet xidmət vericinizdən lazımi bilgiləri alın."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr "Əgə vəkil (proxy) verici istifadə edacəmsəniz bunları girin."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Əgər İnternet bağlantınız doğru şəkildə qurulmuş isə kriptoqrafik "
-#~ "paketi \n"
-#~ "də qura bilərsiniz. Əvvəl bir əks ünvanı seçin və daha sonra qurulacaq \n"
-#~ "paketləri quraşdırın."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "İndi isə yaşadığınız yerə görə zaman zolağını seçin."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Siz indi yerli və ya çevirməli yazıçını qura bilərsiniz\n"
-#~ "(Unix, Netware və ya Microsoft Windows networkundakı)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Yazdırma funksiyası istəyirsinizsə CUPS və LPR arasında seçici\n"
-#~ "davranmalısınız.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS yeni, güclü ve elastik bir Unix yazdırma sistemidir\n"
-#~ "CUPS yəni \"Common Unix Printing System\". Bu da Linuks Mandrake\n"
-#~ "də əsas yazdırma sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR Linuks Mandrakenin köhne sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Printeriniz yox isə \"Yox\" düyməsinə tıqlayın."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linuks bir çox çap edici növü işlədə bilər. Hər bir növ\n"
-#~ "müxtəlif quruluş istəyər.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çap ediciniz fiziki olaraq kompüterinizə bağlı isə\n"
-#~ "\"Yerli çap edici\"nı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Unix sisteminə bağlı çap ediciyə uzaqdan bağlanmaq istəyirsinizsə\n"
-#~ "\"Uzaqdan bağlanılan çap edici\".\n"
-#~ "\n"
-#~ "\n"
-#~ " MS Windows kompüterinə (və ya SMB protokolunu\n"
-#~ "işlədən Unix kompüterinə) bağlı bir çap ediciyə çatmaq üçün\n"
-#~ "\"SMB/Windows95/98/NT\" seçənəyini işarətləyin."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Xahiş edirik DrakXin tapa bilməsi üçün yazıçınızı açın.\n"
-#~ "\n"
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici adı: yazıçılar üçün \"lp\" işlədilir.\n"
-#~ "Ona görə də yazıçınızın adı \"lp\" olmalıdır.\n"
-#~ "Bir neçə çap ediciniz var isə istədiyiniz adı verə bilərsiniz. Sadəcə "
-#~ "olaraq ə aralarına boru işarəti \"|\" qoymalısınız.\n"
-#~ "Məsələn \"Mənim yazıçım|lp\".\n"
-#~ "Adında \"lp\" olan çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Təsvir: İstəyə bağlıdır. Amma bir neçə çap ediciniz var isə\n"
-#~ "bir xeyli faydalı ola bilər.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Yerləşmə: Çap Edicinin yeri haqqında istədiyinizi yaza bilərsiniz."
-#~ "Məsələn, \"2ci mərtəbə\".\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*İstək adı: yazıçılar üçün \"lp\" işlədilir.\n"
-#~ "Ona görə də yazıçınızın adı \"lp\" olmalıdır.\n"
-#~ "Bir neçə çap ediciniz var isə istədiyiniz adı verə bilərsiniz. Sadəcə "
-#~ "əolaraq aralarına boru işarəti \"|\" qoymalısınız.\n"
-#~ "Məsələn \"Mənim yazıçım|lp\".\n"
-#~ "Adında \"lp\" olan çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Saxlama qovluğu: Çap Edici sifarişlərinizi saxlanıldığı yer.\n"
-#~ "Mövzudan bixəbər isəniz əsas qurğunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici bağlantısı: Çap Edici fiziki olaraq kompüterə bağlı ise\n"
-#~ "\"Yerli Çap Edici\" seçin.\n"
-#~ "Uzaq bir Unix sistemə bağlı çap edici isə\"Uzaqdan idarəli lpd Çap Edici"
-#~ "\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Uzaq SMB vericisi işlədən Unix və ya Windows sisteminə bağlıyazıçı üçün "
-#~ "isə \"SMB/Windows 95/98/NT\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "NetWare şəbəkədə yerləşən çap edici üçün isə\"NetWare\" seçin.\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Sizin çap edici tapılmadı. Xahiş edirik bağlı olduğu avadanlığın\n"
-#~ "adını girin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, bir çox çap edici birinci paralel qapıya bağlıdır.\n"
-#~ "Bu da GNU/Linuksda \"/dev/lp0\", Windowsda isə \"LPT1\"dir."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "70 Hz də 1600x1200 qadir Monitor"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "İndi yuxarıdakı siyahıdan çap edici seçmalisiniz."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "76 Hz də 1600x1200 qadir Monitor"
#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Xahiş edirik yazıcınız üçün doğru qurğuları girin.\n"
-#~ "Nə seçəcəyinizi bilmirsiniz isə sənədlərə baxın\n"
-#~ "\n"
-#~ "\n"
-#~ "Bir sonrakı addımda yazıcınızı sınaya bilərsiniz və\n"
-#~ "daha sonra da istədiyiniz zaman dəyişdirə bilər."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Seçdiyiniz paket qruplarının ümumi böyüklüyü təximən %d MBdır.\n"
#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Linuks sisteminiz üçün bir idarəci parolu verilməlidir. Bu parol\n"
-#~ "yazılış xətalarına meydan verməməsi və e'tibarlı olması səbəbi ilə iki "
-#~ "dəfə\n"
-#~ "girilməlidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Bu parolu diqqətli seçməlisiniz. Sadəcə idarəi parolunu bilən \n"
-#~ "adamlar sistemi idarə və dəyişiklik edə bilirlər. Ayrıca idarəci \n"
-#~ "parolu ilə sistemə girən bir adam bütün veriləri silib, sistema zərər \n"
-#~ "verə bilər. Seçdiyiniz parol alfanumerik xarakterlər daxil edib en az 8 "
-#~ "xarakter uzunluğunda olmalıdır. Hər hansı bir kağıza, dəftara qeyd\n"
-#~ "alınmamalıdır. Çox uzun bir parol və ya çox qarışıq bir parol işlədilir "
-#~ "isə \n"
-#~ "parolun xatırlanması çətinləşir.\n"
-#~ "\n"
-#~ "\n"
-#~ "İdarəci olaraq sistemə girəcayiniz zaman, giriş sırasında \"login\"\n"
-#~ "yazan qismə \"root\" və \"password\" yazan qismə idarəci parolunu\n"
-#~ "yazmalısınız."
+#~ "Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
+#~ "qurmaq istədiyiniz paket faizini seçin.\n"
+#~ "100%%'i seçərsəniz bütün paketlər qurulacaqdır."
#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "İndi bir ya da daha çox adamın Linuks sisteminizi istifadə etməsinə "
-#~ "icazə\n"
-#~ "verə bilərsiniz. Hər istifadəçi hesabı üçün edilən dəyişikliklər sadəcə\n"
-#~ "o istifadəçi ve istifadəçinin \"istifadəçi sırası\" üçün hökmlü olar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Sistemi sadəcə siz istifadə edeceksəniz belə ayrı bir istifadəçi hesabı "
-#~ "açaraq\n"
-#~ "normal işler üçün bu hesabı istifadə etməlisiniz. İdarəçi \"root\" "
-#~ "hesabı\n"
-#~ "gündəlik işlərdə istifadə edilməməlidir. Bu bir təhlükəsizlik riski "
-#~ "təşkil edər.\n"
-#~ "Sadə bir istifadəçi hesabı ilə işləmək sizi və sistemi size qarşı\n"
-#~ "qoruyar. İdarəci hesabı olan \"root\" sadəcə, sadə bir istifadəçi hesabı\n"
-#~ "ilə etməyəcəyiniz idarə və təmir işləri üçün istifadə edilməlidir."
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Başlanğıc disketi yaradılması aşırı dərəcədə tövsiyyə edilir.\n"
-#~ "Sistemi aça bilmədiyiniz zaman bu, sizin üçün tək qurtuluş yolu olar.\n"
-#~ "Yoxsa sistemi yenidən yükləmək məcburiyyətindəsiniz."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO və grub ana seçənəkləri bunlardır: \n"
-#~ "- Açılış avadanlığı: Açılış sektorunu olduğu sabit disk bölməsini daxil "
-#~ "edən avadanlığın\n"
-#~ "adını təyin edər.\n"
-#~ "Əgər heç bir şey bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Əsas əks ilə açmadan əvvəl gecikmə: Açılış sistem yükləyicisinin ilk \n"
-#~ "əksi açmadan əvvəl gözləyəcəyi zamanın, saniyənin onda biri cinsindən "
-#~ "miqdarıdır.\n"
-#~ "Bu, klaviaturanın fəallaşmasından həmən sonra sabit diskdən açılan "
-#~ "sistemlər üçün faydalıdır.\n"
-#~ "Sistem yükləyicisi, əgər \"delay\" sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Ekran modu: Açılışda bir neçə mətn ekran modu seçilə bilər:\n"
-#~ " * sadə: 80x25 mətn ekran açılır.\n"
-#~ " * <rəqəm>: Göstərilənn rəqəmlərə görə mətn ekran rezolyusiyası "
-#~ "quraşdırılır.\n"
-#~ "\n"
-#~ "\n"
-#~ "- \"/tmp\"I hər açılışda təmizlə: Əgər hər açılışda \"/tmp\" cərgəsində "
-#~ "olan bütün\n"
-#~ "olan bütün cərgə və qovluqların silinməsini istəyirsinizsə, bu seçənəyi "
-#~ "seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Var olan RAM miqdarı: Təəsüf ki, Linuks həmişə RAM miqdarını BIOSdan "
-#~ "düzgün\n"
-#~ "bir şəkildə öyrənəməyə bilər. Onda siz çzünüz sisteminizdə olan həqiq RAM "
-#~ "miqdarını buradan\n"
-#~ "girə bilərsiniz. Yadda saxlayın ki, həqiqi RAM ilə sistemin tapdığı "
-#~ "miqdar arasında 2\n"
-#~ "və ya 4 MBlıq fərq ola bilər."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO (Linuks Yükləyici) SPARC üçün bir sistem yükləyicidir: sistemi "
-#~ "Linuks\n"
-#~ "ya da kompüterinizdəki başqa bir əməliyyat sistemiylə aça bilirlər.\n"
-#~ "Əsasən bu digər əməliyyat sistemləri doğru bir şəkildə təsbit edilib "
-#~ "açılışa\n"
-#~ "qurula bilərlər. Əgər bir problem olarsa, buradan əllə əlavə edilə "
-#~ "bilərlər.\n"
-#~ "Parametrlər mövzusunda diqqətli olun."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ " - Açılış avadanlığı: Açılış sektorunu olduğu sabit disk bölməsini daxil "
-#~ "edən avadanlığın\n"
-#~ "adını təyin edər.\n"
-#~ "Əgər heç bir şey bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ana əks ilə açmadan əvvəl gecikmə: Açılış sistem yükləyicisinin ilk \n"
-#~ "görünüşü açmadan əvvəl gözləyəcəyi zamanın, saniyənin onda biri cinsindən "
-#~ "miqdarıdır.\n"
-#~ "Bu, klaviaturanın aktivləşməsindən həmən sonra sabit diskdən açılan "
-#~ "sistemlər üçün faydalıdır.\n"
-#~ "Sistem yükləyicisi, əgər delay sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Buradan etibarən, Linuks GUI (Qrafik İstifadəçi Ara üzü) çəkirdəyini\n"
-#~ "əmələ gətirən X Window sistemini quracağıq. Buna görə də ekran kartınızı\n"
-#~ "və monitorunuzu qurmalısınız. Bu addımların çoxu onsuz da avtomatik "
-#~ "olaraq\n"
-#~ "keçiləcək və sizə sadəcə olaraq tövsiyə edilən qurğuları incələmək və "
-#~ "qəbul etmək\n"
-#~ "düşəcək. :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quruluş qurtardığında əgər DrakXdən əksini istəmədiniz isə X Window \n"
-#~ "başlayacaqdır. Qurğuşarınıza baxın və yoxlayın. Qurğularınızı yoxlayaraq\n"
-#~ "uyuşmazlıq olub olmadığına baxın, lazım gəlirsə geriyə dönün."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr "X qurğularında problem olarsa aşağıdakı seçənəkləri istifadə edin."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Əgər sistemə girərkən qrafik arar üzünün gəlməsini istəyirsənız isə \"Bəli"
-#~ "\",əks halda \"Xeyr\" düyməsinə basın."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Sisteminiz üçün təhlükəsizlik səviyyəsini seçə bilərsiniz. Ətraflı "
-#~ "mə'lumat üçün xahiş edirik bələdçiyə\n"
-#~ " baş vurun. Əsasən , nə seçəcəyinizi bilmirsiniz isə buraya heç "
-#~ "toxunmayın.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "İndi sistem yenidən qapanıb açılacaqdır.\n"
-#~ "\n"
-#~ "Açıldıqdan sonra Linuks Mandrake avtomatik olaraq yüklənəcəkdir. Əgər "
-#~ "başqa \n"
-#~ "bir əməliyyat sistemi də işlədəcəksəniz əlavə xəbərdarlıqları oxuyun."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Çex dili (Proqramcılar)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovakca (Proqramcılar)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Yaradılacaq profil adı:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "/etc/fstab-a Yaz"
-
-#~ msgid "Format all"
-#~ msgstr "Hamısını şəkilləndir"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Bütün bölmələri şəkilləndirdikdən sonra, "
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "bu bölmələrdəki bütün verilər itəcəkdir"
-
-#~ msgid "Reload"
-#~ msgstr "Yenidən yüklə"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Linuks köçürülməsi üçün bir dənə avtomatik qurulum disketi yaratmaq "
-#~ "istəyərmisiniz?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL quraşdırılması"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Uzaq CUPS vericiləri üçün heç bir quraşdırmaya lüzüm yoxdur \n"
-#~ "Buradakı hər çap edici avtomatik tapılacaqdır. \n"
-#~ "Əgər uzaq çap edici vericiniz var ise CUPS vercisinin \n"
-#~ "IP ünvanını verməlisiniz. Qapı nömrəsi vacib \n"
-#~ "deyil."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Sahə(domain) adı"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Çap Edicisiz"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Şəbəkə Monitoru"
-
-#~ msgid "Profile "
-#~ msgstr "Profil "
-
-#~ msgid "Statistics"
-#~ msgstr "Statistikalar"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Yollama Sür'əti:"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Alam Sür'əti:"
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Bağlantı növü:"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "İnternetə bağlanılır"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "İnternet ilə bağlantını kəs"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi bacarılmadı."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi qurtardı."
-
-#~ msgid "Connection complete."
-#~ msgstr "Bağlantı qurtardı."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Bağlantı iflas etdi.\n"
-#~ "Qurğularınızı Mandrake İdarə Mərkəzindən yoxlayın."
-
-#~ msgid "sent: "
-#~ msgstr "yollandı:"
-
-#~ msgid "received: "
-#~ msgstr "alındı:"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Əsas Runlevel"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Quraşdırma faylının içindəkilərlə oynanılmaz"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Tanınmaz quraşdırma faylı"
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Bağla"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Aç"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "İndi siçanı sınaya bilərsiniz. Hər şeyin yolunda olduğunu \n"
-#~ "sınamaq üçün düymə və çarxı işlədin. Qurğular yaxşı isə\n"
-#~ "problem yoxdur. Əgər deyilsə onda \"Ləğv et\"i tıqlayaraq\n"
-#~ "başqa siçan sürücüsü seçə bilərsiniz."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (və ya ADSL) bağlantısı"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Qapat"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "CUPS ilə çap ediciyə yetişmək üçün URIni verməlisiniz"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Bəli, ASCII sınaq səhifəsi çap et"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Bəli, PostScript sınaq səhifəsi çap et"
-
-#~ msgid "Paper Size"
-#~ msgstr "Kağız Böyüklüyü"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "İş bittikdən sonra səhifə atılsın mı?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint sürücü seçənəkləri"
-
-#~ msgid "Color depth options"
-#~ msgstr "Rəng dərinlik seçənəkləri"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Mətni PostScript olaraq yazdırsın mı?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Mətn pilləli olaraq düzəldilsin mi?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Hər yekun səhifəsinin nömrəsi"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Sağ/Sol boşluqlar nöqtəvi(inch'in 1/72'si"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Üst/Alt boşluqlar nöqtəvi (inch'in 1/72'si)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Əlavə GhostScript seçənəkləri"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Əlavə mətn seçənəkləri"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Tərs səhifə sıralaması"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Çap Edici Bağlantısı Seçin"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Hər çap edicinin bir adı olmalıdır (məsələn lp).\n"
-#~ "Çap edicinin təsviri və yeri də göstərilməlidir.\n"
-#~ "Bu çap edicinin adı nədir və yeri haradadır?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Hər çap edici növbəsinin (çap edici işlərinin yollandığı yer) bir adı "
-#~ "olar \n"
-#~ "(çoxunda lp) və gözləmə qovluğuna ehtiyac duyar. Bu növbə üçün\n"
-#~ "hansı ad və qovluq istifadə edilsin?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Növbənin adı"
-
-#~ msgid "Spool directory"
-#~ msgstr "Gözləmə qovluğu"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Daha e'tibarlı bir sistem üçün \"Kölgə parol işlət\" və \"MD5 kodlama \n"
-#~ "işlət\" seçənəklərini işarətlayin."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS istifadə edilirsə, \"NIS işlət\" seçəneyini "
-#~ "işarətləyin. Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid "yellow pages"
-#~ msgstr "sarı səhifələr"
+#~ "Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
+#~ "var.\n"
+#~ "Bundan daha azını qurmaq istəsəniz,\n"
+#~ "daha az bir faiz sadəcə ən vacib paketləri ;\n"
+#~ "%d%% isə qurula biləcək bütün paketləri quracaqdır."
-#~ msgid "Provider dns 1"
-#~ msgstr "İXM dns 1"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-#~ msgid "Provider dns 2"
-#~ msgstr "İXM dns 2"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Qurulacaq paketlərin faizi"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "İnternetə necə bağlanmaq istəyirsiniz?"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Təhlükəsizlik səviyyəsini seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 617c278c6..e808ec713 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: 2002-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -13,67 +13,99 @@ msgstr ""
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 "
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 "
-#: ../../Xconfigurator.pm_.c:246
-#, fuzzy, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "i "
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 "
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 "
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 "
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 "
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 "
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 "
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 i "
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr " X "
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X "
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr " i"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "i"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr " ii"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr " i"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr " XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr " X "
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr " i XFree ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X "
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr " X "
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X "
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "i "
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr " XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr " i XFree ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s 3D-"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,36 +114,19 @@ msgstr ""
" 3D- XFree %s.\n"
"XFree %s 2D- ."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
" i 3D-, i i XFree %"
"s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s 3D-"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-" i 3D-, i i XFree %"
-"s.\n"
-" , I I \n"
-"I '."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s 3D-"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +139,60 @@ msgstr ""
"I '. i i XFree %s, i\n"
" i 2D-."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+" i 3D-, i i XFree %"
+"s.\n"
+" , I I \n"
+"I '."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr " XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr " ii"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr " i "
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ֳ ?\n"
+" :\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr " i"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "i"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr " "
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,518 +215,328 @@ msgstr ""
" i.\n"
"i , i."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr " i"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr " i"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "i "
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "i i"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "i i i?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ": i i "
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr " i"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 (8 i)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-" i "
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 (15 i)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr ":"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 (16 i)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr " %d "
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 i (24 i)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr " i?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ii (24 i)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr " , i "
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr " "
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr " i ii "
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "i: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr " XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr ""
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "i i i?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr " i"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr " i: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr ": %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "i: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr " .. i: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr " .. i: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "i: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "i: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "i: %s \n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr " ii : %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr " XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr " XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr " i X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr " i?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "i i"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "i i"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "i i "
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "i "
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "I"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ֳ ?\n"
-" :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr " X i"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
" i i X i.\n"
", X ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "i , i %s i "
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "i , i, Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 (8 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 (15 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 (16 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 i (24 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ii (24 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 "
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 "
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 "
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 "
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 "
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 "
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 "
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 "
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 i "
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr " VGA, 640x480 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr " 8514, 1024x768 87 Hz ( 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 i 87 Hz , 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr " SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr " SVGA, 1024x768 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr ", i i 1280x1024 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr ", i i 1280x1024 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr ", i i 1280x1024 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "i, i i 1600x1200 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "i, i i 1600x1200 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr " "
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr " (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr " SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr " ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr " LILO/GRUB"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr " i "
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
#, fuzzy
msgid "Bootloader to use"
msgstr " i "
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr " "
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr " "
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA ( i BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "i-"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr " "
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr ""
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr " "
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr " "
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr ""
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr " /tmp "
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr " RAM ( %d M)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr " i"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr " RAM M"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
" `` '' "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr " "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "i "
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
#, fuzzy
msgid "Default OS?"
msgstr " "
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -691,84 +545,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
" .\n"
" , i i."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr ""
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "i RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "i ?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "I (SunOS,...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "I (MacOS,...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "I (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr ""
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "-i"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "i"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr " "
@@ -802,53 +656,75 @@ msgstr " i swap"
msgid "This label is already used"
msgstr " "
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr " %s %s i"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "i i?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "i %s i?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr ". i "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr " %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "( %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+" i %s.\n"
+"i - ``i= i2=2 ...''.\n"
+", ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "i :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "i %s ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -865,37 +741,15 @@ msgstr ""
" ii? , i \n"
" ', i ."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr " "
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-" i %s.\n"
-"i - ``i= i2=2 ...''.\n"
-", ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "i :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,51 +758,56 @@ msgstr ""
" %s .\n"
" ii i?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr " "
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "i , i i i"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"I i i i i ii i, \n"
"i, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr " i i "
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr " i i "
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr " i"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -957,32 +816,32 @@ msgstr ""
"i i i\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr " i"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr " i"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "I i:"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr ":"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "i"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr " i"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -991,121 +850,101 @@ msgstr ""
" i i i \n"
" i. i , ii \"\"."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr " i:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr " :"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "i , ."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr " , i "
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr ""
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr " i"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr " "
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr ""
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr " "
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr ""
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr " Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr " "
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "i"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "i"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "i"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1117,7 +956,7 @@ msgstr ""
" , i i i Internet. "
"."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1125,7 +964,7 @@ msgstr ""
" , ' i \n"
" ."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1135,55 +974,56 @@ msgstr ""
"i Internet i i. i\n"
"i."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
" i i i\n"
". i i \n"
", i i iii ii."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
" ii 4 , i .\n"
" i i."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr " i"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "i i"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr " i "
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1195,52 +1035,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr " /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr " "
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr " "
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr " ?"
@@ -1254,16 +1094,20 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr " "
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
msgstr ":\n"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1302,12 +1146,12 @@ msgstr " "
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr " I-"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1318,7 +1162,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1329,14 +1173,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr ""
@@ -1385,7 +1231,7 @@ msgstr " "
msgid "Screenshots will be available after install in %s"
msgstr " , i "
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr ""
@@ -1393,7 +1239,7 @@ msgstr ""
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "ii"
@@ -1421,11 +1267,12 @@ msgstr "i"
msgid "Sweden"
msgstr "."
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Ii"
@@ -1435,7 +1282,7 @@ msgstr "Ii"
msgid "Austria"
msgstr ""
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1443,8 +1290,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "-, i i "
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr " i!"
@@ -1457,11 +1304,12 @@ msgstr ""
"i boot , i \n"
" 2048 "
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr ""
@@ -1469,11 +1317,11 @@ msgstr ""
msgid "Wizard"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1485,149 +1333,155 @@ msgstr ""
", -, i \n"
"(ii , \" \")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "i"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr " i"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr " i:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr " ``%s'' "
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "i"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr " i ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr " %s "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "i i i "
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "i i i?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "I"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1635,35 +1489,35 @@ msgstr ""
" i , i i i "
"(extended)"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "i i "
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr " i "
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr " i "
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr " i "
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1671,11 +1525,11 @@ msgstr ""
"i i \n"
" ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "!"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1683,125 +1537,132 @@ msgstr ""
" \n"
" "
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr " i "
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "I"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr " i"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "i"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "i"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr " LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "i"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "i RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "i LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "i RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr " i i"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr " :"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr " :"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr " i:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr " i:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr " i %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr " i ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr " i i %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr " i %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1810,132 +1671,137 @@ msgstr ""
"i i.\n"
" i i i"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr " i FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr " i?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr " i i"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr " %s "
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr " :"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr " i ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr " i ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr " ..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr " i RAID "
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr " i LVM "
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr " i i"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "i i (loopback)"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "I i "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr " i"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
" i i i. i , \n"
" i "
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr " i. ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "i :"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr " i. i"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "i i ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr " "
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1812,7 @@ msgstr ""
" LILO - , LILO "
", /boot ."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1958,7 +1824,7 @@ msgstr ""
"i i LILO, \n"
" /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1968,137 +1834,137 @@ msgstr ""
" , i i /boot .\n"
" /boot, i ."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "i %s i !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr " i ii , i"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr " %s "
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr " i %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid "
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr " : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr ":"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "i DOS-: %s ()\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "I: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr ": %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s "
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "i %d %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr " \n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "i\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "() i i: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2106,27 +1972,27 @@ msgstr ""
" \n"
" ( i MS-DOS, lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-i %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "I i i: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2134,7 +2000,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2142,65 +2008,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ": %s i, %s , %s \n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "I: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-i %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr " i : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr " %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "i: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr " i:"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
" ( i %d i)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2211,36 +2077,66 @@ msgstr "i "
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr " "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "i"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "i"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "I i:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "I i:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS "
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr " %s %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr " i %s: %s"
@@ -2257,72 +2153,325 @@ msgstr ""
msgid "server"
msgstr ""
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
#, fuzzy
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr " i , i 16 "
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr " i , i 32 "
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr " i i /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr " i %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr " "
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
" i i (ext2, reiserfs)\n"
" i i\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
" i i (ext2, reiserfs)\n"
" i i\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr " "
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " %s i: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
": i \n"
". i ."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr " i ii !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr " "
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr " (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "i "
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "i"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr " (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "i"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "i"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "-"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 i"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr ". i "
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "I"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr " i %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "i , "
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d "
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr " CUPS"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2336,7 +2485,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2434,9 +2583,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2618,7 +2766,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2630,9 +2778,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2679,21 +2826,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2709,9 +2855,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
" , \n"
" Mandrake Linux. \n"
@@ -2790,9 +2936,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2939,38 +3084,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3073,11 +3212,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3132,7 +3271,7 @@ msgstr ""
" , GNU/Linux.\n"
" , , ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3147,7 +3286,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3162,7 +3301,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3178,29 +3317,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3222,7 +3361,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3244,7 +3383,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3252,7 +3391,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3273,7 +3412,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3298,7 +3437,7 @@ msgstr ""
" i i i. \n"
" , i!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3314,29 +3453,28 @@ msgstr ""
"i , i, \n"
" \" (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3345,7 +3483,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3370,11 +3508,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3384,9 +3522,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3398,7 +3535,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3424,7 +3561,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3451,18 +3588,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3470,12 +3606,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3491,7 +3626,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3503,7 +3638,7 @@ msgstr ""
"\n"
" ."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3522,7 +3657,7 @@ msgstr ""
"\n"
" \"\" "
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3530,12 +3665,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3550,26 +3685,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr " broadcast NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr " %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr " %s"
@@ -3599,7 +3734,7 @@ msgstr " i swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3607,61 +3742,61 @@ msgstr ""
"\n"
" ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr " i swap"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr " "
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr " "
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr " i "
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr " i , i "
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr " Windows i i"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr " i?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr " "
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr " M: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr " swap M:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr " Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr " i?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "i i Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3670,13 +3805,16 @@ msgstr ""
" FAT \n"
" , : %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
" Windows . \n"
" i ``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3697,55 +3835,55 @@ msgstr ""
" i i i .\n"
"i i, ii Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr " Windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr " %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr " FAT %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
" FAT \n"
" i i i (i )"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "i i "
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "i Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr " i i Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr " i %s i i "
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr " i "
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr " fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3754,12 +3892,12 @@ msgstr ""
" i %s\n"
" i i, `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr " Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr " "
@@ -3768,16 +3906,16 @@ msgstr " "
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr " i DrakX :"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr " : %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr " i"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr " i"
@@ -3789,12 +3927,12 @@ msgstr ""
"i , ,\n"
" ."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr " i %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3806,12 +3944,12 @@ msgstr ""
" cdrom , \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr " "
@@ -3821,9 +3959,9 @@ msgstr " "
msgid "Entering step `%s'\n"
msgstr " `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3833,203 +3971,158 @@ msgstr ""
" . ii `F1' i, \n"
" `text' i ii <ENTER>."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "i , i :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr " i %d .\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"i ,\n"
-" , i .\n"
-"\n"
-" ii i ,\n"
-" 100% ."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-" i %d%% .\n"
-"\n"
-"i , \n"
-" .\n"
-" ;\n"
-" %d%% i i ."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr " i ."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr " "
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "i "
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr " : %d / %d M"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "I: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "i: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ": %d K\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
" , "
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr " i"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr " , i"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr " i . "
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
" i \n"
" , i ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr " i . i"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "븢"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "i "
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "i i"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "븢"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr " "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr " "
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d "
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr " %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4045,17 +4138,17 @@ msgstr ""
"i , ii i, i "
"Cd."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr " ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr " :"
@@ -4100,11 +4193,11 @@ msgstr " "
msgid "Do you really want to leave the installation?"
msgstr "i i i?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "˳ "
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4119,7 +4212,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4225,114 +4318,118 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "i , i."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "i ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Install/Update"
msgstr "븢"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Is this an install or an update?"
msgstr " i "
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "i "
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "i , ."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "i , , ."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr " PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr " IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr " i"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4345,7 +4442,7 @@ msgstr ""
"\n"
"i i ?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4353,140 +4450,143 @@ msgstr ""
"DiskDrake i i .\n"
" i !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "i (/) i?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr " i i i, ."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr " i %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
" i (swap) , i ."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr " "
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr " i . "
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
" i i (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr " (%dM)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "ii (%dM)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr " (%d)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4496,16 +4596,16 @@ msgstr ""
"i i CD , ii i.\n"
"i CD , i i i ii ."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4514,23 +4614,23 @@ msgstr ""
" %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4606,171 +4706,202 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr " i "
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr " i "
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "i ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr " i ii GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS :"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr " CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "I i"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "i i?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
#, fuzzy
msgid "Mouse"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
#, fuzzy
msgid "ISDN card"
msgstr " ISDN "
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
#, fuzzy
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "i Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr " root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
" ( i %d i)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "i NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS :"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "i"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr " "
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS :"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4797,19 +4928,19 @@ msgstr ""
"i , \n"
" i ii \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "i "
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4835,7 +4966,7 @@ msgstr ""
" ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4844,28 +4975,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr ", "
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr " , i "
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4873,11 +5004,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr " aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4885,16 +5016,16 @@ msgstr ""
" boot, \n"
" 븢, ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr " . i :"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4905,18 +5036,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4925,7 +5055,8 @@ msgstr ""
" i .\n"
" i ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4936,7 +5067,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4950,18 +5081,22 @@ msgstr ""
" \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"I i -\n"
" i i i Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4970,16 +5105,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "i "
@@ -5008,422 +5143,406 @@ msgstr ""
msgid "Choose a file"
msgstr " "
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "i , "
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "I"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr " i i "
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr " , \n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr " ? ( %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr " ? ( %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "i: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr " aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr " ? ( %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "i (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "i"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ii"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "ii"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "i"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "i"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "i"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "i"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "i"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK i"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US i"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Ii"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "i ()"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "i (typewriter)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "i ()"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr " (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "ii"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "i ()"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "i"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "ii (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "i ( )"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "i ( )"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "i (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "i ( i i)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "i"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (i)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "i"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "ii (\"\" )"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "ii (\"i\" )"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "i"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "i"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "i"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "I"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "I ()"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Ii"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Ii"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Ii"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "i 106 i"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "UK i"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "i-i"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "ii AZERTY ()"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "ii AZERTY ()"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "ii \" \" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "ii \"\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "i"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "i ( )"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "i (qwertz )"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "i"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "i ()"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "i (-----)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "i (-----)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "i (-----)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "i"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "i (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "i (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "i"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr " i"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr " i"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "i ( \"F\" )"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "i ( \"Q\" )"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "ii"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US i (i)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "i \" \" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr " (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5436,7 +5555,31 @@ msgstr "i %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr " "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr " "
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5479,10 +5622,6 @@ msgstr "2 i"
msgid "Generic 2 Button Mouse"
msgstr " 2 "
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr " "
@@ -5548,40 +5687,56 @@ msgstr ""
msgid "No mouse"
msgstr " "
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr " , ."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr " , ."
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr " !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
#, fuzzy
msgid "Finish"
msgstr "ii"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr " ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr " ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "I"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr " i i "
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr " I"
@@ -5627,7 +5782,7 @@ msgstr ""
"i ethernet i . i , "
" i i."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr " i"
@@ -5642,7 +5797,7 @@ msgstr ""
msgid "no network card found"
msgstr " "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr " i"
@@ -5658,15 +5813,15 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" i IP , i ."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "I "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "i i"
@@ -5716,7 +5871,7 @@ msgstr " ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
" .\n"
"i i, ``I''"
@@ -5738,14 +5893,14 @@ msgstr ""
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
" \n"
" D- ( )"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "i ?"
#: ../../network/isdn.pm_.c:199
@@ -5769,7 +5924,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"i ISA , ii i "
@@ -5786,13 +5942,13 @@ msgid "Continue"
msgstr ""
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr " ISDN ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
" ISDN PCI , . i , PCI "
" ."
@@ -5809,49 +5965,49 @@ msgstr " ?"
msgid "Dialup options"
msgstr " (Dialup)"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "I "
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr " "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "I (login ID)"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr " "
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr " i"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "I "
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr " DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "i DNS:"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5859,7 +6015,7 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
@@ -5868,12 +6024,12 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr " I?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
@@ -5882,38 +6038,38 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr " I?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "I "
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr " ISDN"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr " i"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "I i i"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5927,12 +6083,12 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "i i"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5940,106 +6096,113 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr " i:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+#, fuzzy
+msgid "Expert Mode"
+msgstr ""
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr " ..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr " i %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr " ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr " i"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr " "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr " i, i "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr " I-"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr " , ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "i i"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6047,35 +6210,35 @@ msgid ""
"%s"
msgstr "i i i?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6085,38 +6248,43 @@ msgstr ""
" i IP - \n"
"i (, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr " %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " XFree86: %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP "
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr " i"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr " IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr " . "
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP i 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6128,66 +6296,66 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" i IP , i ."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS "
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "-"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr " proxy "
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy i http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy i ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr " I"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "i I?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "i ISDN ?"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr " I?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
@@ -6196,309 +6364,314 @@ msgstr ""
"\n"
" ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr " I"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "i , i i i"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ "
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr " (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO "
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 "
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 "
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr " i "
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "I , .net"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr " "
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 "
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 "
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr " i"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr " "
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "I "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "I "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "I (i i)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr " "
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr " i: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr " i "
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
" i i , i .\n"
"i , i , i i\n"
" (extended) "
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr " %s : %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr " ii"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr " i %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "i "
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "i "
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr " "
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr " "
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr " "
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr " CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr " lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr " (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr " "
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI "
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr " "
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr " "
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr " i %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "( %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " ( )"
@@ -6521,12 +6694,12 @@ msgstr ""
" , .\n"
" , \" CUPS\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr " CUPS"
@@ -6557,7 +6730,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP i 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6566,7 +6739,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr ""
@@ -6575,22 +6748,13 @@ msgstr ""
msgid "Automatic CUPS configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr " ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr " "
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "I i"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6603,14 +6767,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr " "
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6628,12 +6792,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr " "
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6647,11 +6811,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6661,35 +6825,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr " "
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr " "
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr " "
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr " i %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6697,43 +6865,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI "
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr " "
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6741,7 +6909,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6749,73 +6917,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr " ?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI "
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr " %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "i lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6825,31 +7003,31 @@ msgstr ""
" i i i i ,\n"
" i."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr " "
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr " "
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr " "
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr " "
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "i SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6862,35 +7040,35 @@ msgstr ""
", i , i i, i "
"i ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "I SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "I "
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr " "
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6914,7 +7092,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6923,7 +7101,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6931,11 +7109,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "i NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6947,28 +7125,28 @@ msgstr ""
"( i TCP/IP) i i i , "
" , i i i ."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr " "
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "I i "
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "i "
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6979,60 +7157,56 @@ msgstr ""
" i, \n"
"i i ."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "I "
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "I "
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI "
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "I i"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "i"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr ""
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr " "
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7047,28 +7221,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr " ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr " "
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr " "
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "i i ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7077,18 +7251,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr " I"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7098,12 +7272,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr " I"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7111,7 +7285,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7124,7 +7298,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7134,34 +7308,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr " i ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7169,45 +7343,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr ", i "
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr ""
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr " "
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr " "
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7223,7 +7397,7 @@ msgstr ""
"\n"
" ?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7233,16 +7407,16 @@ msgstr ""
" , , i .\n"
" ?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "I i"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7251,15 +7425,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7268,49 +7442,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7320,7 +7494,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7329,31 +7503,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr " "
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr " i"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr " i"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr " i"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr " i"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr " "
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "i "
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7361,38 +7546,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr " I"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7402,51 +7587,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7454,62 +7639,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "I i"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr " "
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "i ISDN ?"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr " i"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "i "
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7517,12 +7702,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr " i"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7532,34 +7717,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr " i ?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "i"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "i"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7574,12 +7759,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr " i ?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7593,70 +7778,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr " "
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr " i ?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr " "
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "i "
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr " "
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr " i ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr ""
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7667,7 +7852,7 @@ msgstr ""
" i .\n"
" , i i."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7677,140 +7862,144 @@ msgstr ""
" i .\n"
" , i i."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr " i"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "i i i?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr " I"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "i i i?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr " I-"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr " "
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "i i i?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "i i i?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr " CUPS"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7893,24 +8082,62 @@ msgstr "i "
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr " i _i_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr " i i %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid "
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ( raid i?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr " RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+" . i \n"
+" i, i : i "
+"\n"
+" , i i i Internet. "
+"."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+" i i i\n"
+". i i \n"
+", i i iii ii."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr " i"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "i"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7966,7 +8193,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8036,7 +8263,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8112,7 +8339,7 @@ msgstr ""
"\n"
" i , i RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8209,7 +8436,7 @@ msgstr "i"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8334,6 +8561,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr " I"
@@ -8438,6 +8666,15 @@ msgstr ""
msgid "Installing packages..."
msgstr " %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "i , i, Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "i , i %s i "
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8446,6 +8683,159 @@ msgstr ""
"i , :(\n"
" ii i "
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr " I"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS :"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS :"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr " . "
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr " i"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "i"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr " i"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr " IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr " X Window"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr " %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8487,6 +8877,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr " "
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8495,47 +8890,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr " ii!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "븢"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr " i"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr " i %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8543,15 +8931,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8559,709 +8939,774 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr " %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr " "
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "i "
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "i Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "I i:"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr " ii"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr " , ."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr " "
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr " "
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr " "
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "i , i."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr " "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr " "
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr " , ."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr ":"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr ": "
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "I i:"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr " i ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr " i ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr " "
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr " "
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "i :"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "i i"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr ":"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr ". i"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr ": %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "i"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+#, fuzzy
+msgid "\t-Tape \n"
+msgstr ": "
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr " ?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "i i"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr " , ."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr " "
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr ""
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr " i"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr " "
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr " "
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr ""
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr " "
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr " i"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr " , ."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr " "
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "i i"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "i i"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr " i"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr ". i"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9293,7 +9738,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9302,7 +9747,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9343,7 +9788,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9371,12 +9816,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9393,7 +9843,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9433,7 +9883,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9444,7 +9894,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9457,7 +9907,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9501,105 +9951,551 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr " %s . i :"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr " I"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "I "
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr " DiskDrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "i i"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr ""
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "i , "
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr " , i "
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "i i"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr " i: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "I "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr ": "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr " ADSL"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr " i"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr " i"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr " i"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "I "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "I i i"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "I i i"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "I "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "i :"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Size"
+msgstr ": %s"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#, fuzzy
+msgid "drakfloppy"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr " I"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr " i"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "i "
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr " i %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr ""
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr " "
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr " "
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr ""
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9608,122 +10504,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr " "
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr " RPM- i"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr " i"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr " i"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr " "
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr ""
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "i"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr ""
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr " i"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr " "
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr " "
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr " i !"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "븢"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr " i !"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr " "
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr " I-"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr " I- "
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9731,35 +10626,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "i"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr " X Window"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr " I- "
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr " I- "
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9767,21 +10662,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "i"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr " I- "
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9798,21 +10693,21 @@ msgstr ""
"\n"
" Internet?"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr " i"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr " i !"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9820,11 +10715,11 @@ msgstr ""
"i ethernet i . i , "
" i i."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr " i"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9834,7 +10729,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -9842,12 +10737,12 @@ msgstr ""
"i , , "
" i."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "i "
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9857,17 +10752,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr " "
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr " I"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9878,7 +10773,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9890,33 +10785,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP SMB"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr " i i %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr " (firewall)!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9924,21 +10819,21 @@ msgstr ""
"! i i (firewall). "
" ."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr " IDE"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr " , , ..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr " %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -9949,25 +10844,25 @@ msgstr ""
" ' , \n"
" (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr " I- "
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "I i i"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9977,224 +10872,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr " I-"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "i i"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr " i: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "I "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr ": "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr " "
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr " ADSL"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr " i"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr " "
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr " i"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr " i"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "I "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr ""
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "I i i"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "I i i"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "I "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr ""
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "i i"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10204,94 +10881,130 @@ msgstr " I"
msgid "Choose the tool you want to use"
msgstr " i, i "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "i ()"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Ţ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Ii"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Ţ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr " :"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10341,7 +11054,7 @@ msgstr " live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10389,10 +11102,6 @@ msgstr ""
msgid "/Options/Test"
msgstr ""
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10455,7 +11164,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10464,80 +11173,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr " ADSL"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr ""
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "I "
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS :"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr " "
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS :"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS :"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr " "
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr ""
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr ""
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr ""
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "i , ."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb \n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr " ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr " CUPS"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr " ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10581,6 +11321,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10933,10 +11685,6 @@ msgid "Multimedia - Sound"
msgstr " - "
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
msgstr "i"
@@ -11049,10 +11797,6 @@ msgstr ""
"Web "
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ", , "
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr " "
@@ -11102,192 +11846,211 @@ msgstr " - CD"
msgid "Scientific Workstation"
msgstr " "
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "i"
+#~ msgid "Choose options for server"
+#~ msgstr " i "
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "i "
-#~ msgid "None"
-#~ msgstr ""
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "i i"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr " i:"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr " "
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr " "
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ " i "
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr " i %s."
+#~ msgid "An error occurred:"
+#~ msgstr ":"
-#~ msgid "mount failed"
-#~ msgstr " i"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr " %d "
-#~ msgid "Low"
-#~ msgstr ""
+#~ msgid "Is this the correct setting?"
+#~ msgstr " i?"
-#~ msgid "Medium"
-#~ msgstr "i"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr " , i "
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ " i , \n"
-#~ "i i ."
+#~ msgid "XFree86 server: %s"
+#~ msgstr " XFree86: %s"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr ""
+#~ msgid "Show all"
+#~ msgstr " "
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr ""
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr " i X-Window"
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr " I"
+#~ msgid "What do you want to do?"
+#~ msgstr " i?"
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr " I"
+#~ msgid "Change Monitor"
+#~ msgstr "i i"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr " i ?"
+#~ msgid "Change Graphics card"
+#~ msgstr "i i"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr " "
+#~ msgid "Change Server options"
+#~ msgstr "i i "
-#, fuzzy
-#~ msgid "Infos"
+#~ msgid "Change Resolution"
+#~ msgstr "i "
+
+#~ msgid "Show information"
#~ msgstr "I"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr " "
+#~ msgid "Test again"
+#~ msgstr " "
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache - World Wide Web . "
-#~ "\n"
-#~ "HTML i CGI."
+#~ msgid "Setting security level"
+#~ msgstr "i i"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) - i, i \n"
-#~ " i IP ."
+#~ msgid "Graphics card"
+#~ msgstr "i"
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "i , ."
+#~ msgid "Select a graphics card"
+#~ msgstr " i"
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr ""
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ": i i "
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "i "
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr " VGA, 640x480 60 Hz"
-#~ msgid "Active"
-#~ msgstr ""
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 56 Hz"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr ""
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr " 8514, 1024x768 87 Hz ( 800x600)"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr " i \"%s\" "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 i 87 Hz , 800x600 56 Hz"
-#~ msgid "Local Printer Device"
-#~ msgstr " "
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-#~ msgid "Printer Device"
-#~ msgstr " "
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr " SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr " CUPS"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr " SVGA, 1024x768 70 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr " CUPS"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr ", i i 1280x1024 60 Hz"
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr ", i i 1280x1024 74 Hz"
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mouse Systems"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr ", i i 1280x1024 76 Hz"
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr ""
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "i, i i 1600x1200 70 Hz"
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "i , i."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "i, i i 1600x1200 76 Hz"
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr " "
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr " i %d .\n"
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr ": "
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "i ,\n"
+#~ " , i .\n"
+#~ "\n"
+#~ " ii i ,\n"
+#~ " 100% ."
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr " ii"
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ " i %d%% .\n"
+#~ "\n"
+#~ "i , \n"
+#~ " .\n"
+#~ " ;\n"
+#~ " %d%% i i ."
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr " X Window"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr " i ."
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr " "
+#~ msgid "Percentage of packages to install"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr ""
+#~ msgid "Please choose the desired security level."
+#~ msgstr " i"
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr ""
+#~ msgid "Complete (%dMB)"
+#~ msgstr " (%dM)"
-#, fuzzy
-#~ msgid "close"
-#~ msgstr " "
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "ii (%dM)"
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "Root"
+#~ msgid "Recommended (%dMB)"
+#~ msgstr " (%d)"
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "i ISDN ?"
+#~ msgid "Utilities"
+#~ msgstr ""
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "i ISDN ?"
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr ", , "
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr " I?"
+#~ msgid "None"
+#~ msgstr ""
+
+#~ msgid "You may now provide options to module %s."
+#~ msgstr " i %s."
+
+#~ msgid "mount failed"
+#~ msgstr " i"
+
+#~ msgid "Low"
+#~ msgstr ""
+
+#~ msgid "Medium"
+#~ msgstr "i"
+
+#~ msgid ""
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
+#~ msgstr ""
+#~ " i , \n"
+#~ "i i ."
+
+#~ msgid ""
+#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+#~ "host names to IP addresses."
+#~ msgstr ""
+#~ "named (BIND) - i, i \n"
+#~ " i IP ."
+
+#~ msgid "Active"
+#~ msgstr ""
+
+#~ msgid "A printer, model \"%s\", has been detected on "
+#~ msgstr " i \"%s\" "
+
+#~ msgid "Local Printer Device"
+#~ msgstr " "
+
+#~ msgid "Printer Device"
+#~ msgstr " "
#~ msgid "Choose the size you want to install"
#~ msgstr " "
@@ -11311,30 +12074,9 @@ msgstr " "
#~ " \n"
#~ "(/dev/lp0 i LPT1:)?\n"
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ ", i.\n"
-#~ "i i ?"
-
#~ msgid "New"
#~ msgstr ""
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "i"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr " "
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr " (%s), \n"
@@ -11344,10 +12086,6 @@ msgstr " "
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr " ? ( %s. i `none' i) "
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "i i i?"
-
#~ msgid ""
#~ "\n"
#~ "Do you agree?"
@@ -11355,27 +12093,6 @@ msgstr " "
#~ "\n"
#~ " ?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "i , ' \"/dev/hda"
-#~ "\"\n"
-#~ "( IDE ) i \"/dev/sda\" ( SCSI )."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "I "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr " i:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr " , ."
-
#~ msgid ""
#~ "You need to accept the terms of the above license to continue "
#~ "installation.\n"
@@ -11485,18 +12202,6 @@ msgstr " "
#~ " ,\n"
#~ " ."
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "i CD i i i, ii .\n"
-#~ "i i CD , ii i.\n"
-#~ "i CD , i i i ii "
-#~ "."
-
#~ msgid ""
#~ "If you wish to connect your computer to the Internet or\n"
#~ "to a local network please choose the correct option. Please turn on your "
@@ -11581,26 +12286,6 @@ msgstr " "
#~ " DNS, \n"
#~ " ."
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ " i (dialup). i \n"
-#~ " , i,\n"
-#~ " i Internet "
-#~ "(ISP)."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ " , . \n"
-#~ " , . ."
-
#~ msgid ""
#~ "You may now enter your host name if needed. If you\n"
#~ "don't know or are not sure what to enter, leave blank."
@@ -11905,58 +12590,6 @@ msgstr " "
#~ " ', \n"
#~ " ."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ " SILO:\n"
-#~ " - : , i\n"
-#~ "i, i GNU/Linux. i , \n"
-#~ "i i, \" (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : \n"
-#~ ", "
-#~ ".\n"
-#~ " i, i \n"
-#~ " i. , i "
-#~ "\"\"\n"
-#~ "\"\" i ."
-
#~ msgid ""
#~ "SILO is a bootloader for SPARC: it is able to boot\n"
#~ "either GNU/Linux or any other operating system present on your computer.\n"
@@ -12084,69 +12717,9 @@ msgstr " "
#~ msgid "ADSL configuration"
#~ msgstr " ADSL"
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ " CUPS \n"
-#~ " , .\n"
-#~ " , \" CUPS\"."
-
#~ msgid "Remote queue"
#~ msgstr " "
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "I "
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "I i"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "i i"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr " i: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "I "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr " I"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr " I"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr " I"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr " I"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "I "
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr " "
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
@@ -12156,10 +12729,6 @@ msgstr " "
#~ msgid "Disable network"
#~ msgstr "i "
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "i "
-
#~ msgid ""
#~ "You can now test your mouse. Use buttons and wheel to verify\n"
#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
@@ -12171,10 +12740,6 @@ msgstr " "
#~ "\n"
#~ " ."
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr " "
-
#~ msgid "You can specify directly the URI to access the printer with CUPS."
#~ msgstr " URI i CUPS."
@@ -12217,9 +12782,6 @@ msgstr " "
#~ msgid "Extra Text options"
#~ msgstr " "
-#~ msgid "Reverse page order"
-#~ msgstr " "
-
#~ msgid "Select Remote Printer Connection"
#~ msgstr " "
@@ -12252,14 +12814,6 @@ msgstr " "
#~ msgid "Spool directory"
#~ msgstr " i"
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "i"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "i"
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -12281,10 +12835,6 @@ msgstr " "
#~ msgid "yellow pages"
#~ msgstr " i"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr " ADSL"
-
#~ msgid "Provider dns 1"
#~ msgstr "DNS 1 "
@@ -12294,61 +12844,18 @@ msgstr " "
#~ msgid "How do you want to connect to the Internet?"
#~ msgstr " I?"
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "i ISDN ?"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr " IDE"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr ": i"
-
#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr " i usb ."
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ " ' \n"
-#~ " (Internet Connection Sharing)?\n"
-#~ "\n"
-#~ ": .\n"
-#~ "\n"
-#~ " Internet?"
-
#~ msgid "Automatic dependencies"
#~ msgstr " "
#~ msgid "Configure LILO/GRUB"
#~ msgstr " LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr " . "
-
#~ msgid "Choice"
#~ msgstr ""
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "i"
-
#~ msgid "Miscellaneous"
#~ msgstr ""
@@ -12380,10 +12887,6 @@ msgstr " "
#~ " i, NumLock i \n"
#~ " i (, i `p' `6')."
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr ""
-
#~ msgid "Scientific applications"
#~ msgstr " "
@@ -12393,10 +12896,6 @@ msgstr " "
#~ msgid "Second DNS Server"
#~ msgstr "i DNS:"
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr " "
-
#~ msgid "%s is already in use"
#~ msgstr "%s "
@@ -13150,9 +13649,6 @@ msgstr " "
#~ msgid "Other countries"
#~ msgstr "I i"
-#~ msgid "Package"
-#~ msgstr ""
-
#~ msgid "Password:"
#~ msgstr ":"
@@ -13406,9 +13902,6 @@ msgstr " "
#~ msgid "Use MD5 passwords"
#~ msgstr " i MD5"
-#~ msgid "Use diskdrake"
-#~ msgstr " DiskDrake"
-
#~ msgid "Use shadow file"
#~ msgstr " "
@@ -13513,9 +14006,6 @@ msgstr " "
#~ msgid "changing type of"
#~ msgstr " "
-#~ msgid "default"
-#~ msgstr " "
-
#~ msgid "dhcp-client"
#~ msgstr "dhcp-client"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 7bea7e548..2ae952797 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -1,84 +1,112 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999, 2000 MandrakeSoft
-# Elena Radeva <ely@triada.bg>, 1999.
-# Pavel Cholakov <pavel@linux.home.bg>, 1999.
-# Boyan Ivanov <boyan17@bulgaria.com>, 1999, 2000
-# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000
-# Valery Dachev <valery@zonebg.com>, 2000, 2001
-#
-# Bulgarians on Linux use windows-1251 encoding
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000.
#
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-08-15 15:29+0200\n"
-"Last-Translator: Valery Dachev <valery@zonebg.com>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-02-28 20:56+0200\n"
+"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 "
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr " Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 "
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr " \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 "
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 "
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 "
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 "
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 "
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 "
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 "
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr " X "
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X "
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr " "
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr " "
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr " XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr " X "
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr " XFree ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X "
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr " X "
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr " Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X "
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr " \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr " XFree ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s 3D "
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -89,33 +117,17 @@ msgstr ""
" XFree %s, - "
"2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr " 3D XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s 3D "
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-" 3D XFree %s.\n"
-", "
-"."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s O 3D "
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -129,31 +141,59 @@ msgstr ""
" XFree %s, - "
"2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+" 3D XFree %s.\n"
+", "
+"."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac ( )"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr " XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr " "
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+" ?\n"
+" :\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr " "
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr ""
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -177,511 +217,325 @@ msgstr ""
" .\n"
" , ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr " "
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr " "
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr " ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-": \"\" "
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr " "
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 (8 )"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-" "
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 (15 )"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr " :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 (16 )"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr " %d "
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 (24 )"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr " ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 (32 )"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr " , "
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr " "
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr " "
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr " : %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr " ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr ": %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr " : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr " : %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr " X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr " ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-" ?\n"
-" :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X "
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"K , X .\n"
" X , ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr " %s, "
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr " Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 (8 )"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 (15 )"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 (16 )"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 (24 )"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 (32 )"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 "
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 "
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 "
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 "
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 "
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 "
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 "
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 "
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 "
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-, 1024x768 87 Hz interlaced ( 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 87 Hz interlaced, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr " SVGA, 1024x768 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr " , 1280x1024 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr " , 1280x1024 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr " , 1280x1024 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr ", 1600x1200 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr ", 1600x1200 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr " "
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr " (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO "
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr " bootloader-?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub "
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO "
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO "
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr " DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr " "
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr " "
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader "
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr " "
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA ( BIOS-)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr " "
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr " default "
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr ""
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr " ()"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr " , "
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr ""
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr " /tmp "
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr " RAM-, ( %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr " "
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr " RAM- Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr " `` '' "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr ", "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr " "
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr " "
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr " Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr " "
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr " CD ?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr " OF ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr " ?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -690,83 +544,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
" .\n"
" ."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr ""
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr ""
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr " "
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr " (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr " (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr " (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr ""
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr ""
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "-"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr ""
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr " "
@@ -799,53 +653,75 @@ msgstr " swap-"
msgid "This label is already used"
msgstr " "
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr " %s %s "
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr " () ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr " %s ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr " "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr " %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "( %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+" %s.\n"
+" ``= 2=2 ...''.\n"
+": ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr " :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr " %s ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,37 +740,15 @@ msgstr ""
" ? , "
" ."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr " "
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr " "
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-" %s.\n"
-" ``= 2=2 ...''.\n"
-": ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr " :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +757,55 @@ msgstr ""
" %s .\n"
" ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr " "
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr ", "
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
" , , `-' `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr " "
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr " "
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr " "
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +814,32 @@ msgstr ""
" \n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr " "
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr " "
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr " "
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr ""
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -989,123 +848,103 @@ msgstr ""
".\n"
" ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr " :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr " Windows Manager :"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr ", ."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr " , "
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr ""
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr " "
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr ""
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr " "
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
" \n"
" , ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr ""
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr " Cracker-"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr ""
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr ""
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr ""
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr ""
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1115,7 +954,7 @@ msgstr ""
", -: \n"
" . ."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +962,7 @@ msgstr ""
" , "
"."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1133,61 +972,62 @@ msgstr ""
" . "
". "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
" , "
".\n"
" \n"
" . "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
" 4- , .\n"
" ."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr " "
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr " "
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr " libsafe "
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
", a "
"."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1212,7 +1052,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1226,7 +1066,7 @@ msgstr "Welcome to GRUB the operating system chooser!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
@@ -1241,7 +1081,7 @@ msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1255,7 +1095,7 @@ msgstr "Press enter to boot the selected OS, 'e' to edit the"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1269,27 +1109,27 @@ msgstr "commands before booting, or 'c' for a command-line."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr " /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr " "
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr " bootloader %s\n"
@@ -1302,17 +1142,21 @@ msgstr " .\n"
msgid "Boot Style Configuration"
msgstr " "
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/_"
+msgstr "/_"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "//_"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<>Q"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1345,14 +1189,14 @@ msgstr " Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
" %s .\n"
" , ."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr ""
@@ -1362,7 +1206,7 @@ msgid "System mode"
msgstr " "
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr " X-Window "
#: ../../bootlook.pm_.c:148
@@ -1373,14 +1217,16 @@ msgstr ", autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ", autologin (, )"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1429,7 +1275,7 @@ msgstr " "
msgid "Screenshots will be available after install in %s"
msgstr " , "
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr ""
@@ -1437,7 +1283,7 @@ msgstr ""
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr ""
@@ -1466,11 +1312,12 @@ msgstr ""
msgid "Sweden"
msgstr ""
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr ""
@@ -1480,7 +1327,7 @@ msgstr ""
msgid "Austria"
msgstr ""
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1488,8 +1335,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr " backup "
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr " !"
@@ -1503,11 +1350,12 @@ msgstr ""
"\n"
" ) "
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr ""
@@ -1515,11 +1363,11 @@ msgstr ""
msgid "Wizard"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1531,144 +1379,149 @@ msgstr ""
" \n"
"( , \" \")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr ", "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr " FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr " :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr " ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr " ''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
" %s, "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr ", ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr " /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1676,31 +1529,31 @@ msgstr ""
" , , "
" "
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1708,11 +1561,11 @@ msgstr ""
" \n"
" ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1720,122 +1573,129 @@ msgstr ""
" \n"
" , , "
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr " LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr " LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr " loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr " MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr " loopback ?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr " ext2 ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr " loopback- %s ?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr " %s ?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1844,126 +1704,133 @@ msgstr ""
"loopback.\n"
" loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr " fat "
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
" %s, te "
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr " MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr " ... "
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr " RAID "
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr " LVM "
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM ?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr " loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr " loopback : "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr " loopback, ."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr " . ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr " mount:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+" \n"
+" , ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1975,7 +1842,7 @@ msgstr ""
" LILO , LILO "
" /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1987,7 +1854,7 @@ msgstr ""
" boot LILO, \n"
" /boot "
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1997,129 +1864,129 @@ msgstr ""
" , /boot .\n"
" /boot "
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr " %s !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr " , "
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr " %s, "
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr " loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
" %s \n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr " DOS: %s ( )\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr ": %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s "
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr " %d %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2128,7 +1995,7 @@ msgstr ""
"Loopback ():\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2136,27 +2003,27 @@ msgstr ""
", \n"
" ( MS-DOS boot, lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID- %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr " loopback : %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2168,7 +2035,7 @@ msgstr ""
"-, \n"
" .\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2180,64 +2047,64 @@ msgstr ""
" \n"
" .\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ": %s , %s , %s \n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM- %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr " : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr " %d %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr ": %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr " ( %d )"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2246,36 +2113,66 @@ msgid "Change type"
msgstr " "
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr ", "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr " "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr " "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS "
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s "
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr " %s %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck %d %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr " %s: %s"
@@ -2292,70 +2189,323 @@ msgstr ""
msgid "server"
msgstr ""
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr " JFS - 16 "
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr " ReiserFS - 32 "
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr " /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr " %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr " LVM %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr " root ."
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
" (ext2, reiserfs) "
"\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr " LVM %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr " "
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " %s : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
" - , "
" . "
" "
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr " !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr " "
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr " (DMA) "
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr " "
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "//_..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr " (DMA) "
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway "
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 "
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr " %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d "
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr " \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2369,7 +2519,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2521,9 +2671,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2860,7 +3009,7 @@ msgstr ""
#: ../../help.pm_.c:256
#, fuzzy
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2872,9 +3021,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2946,21 +3094,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2976,9 +3123,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
" "
"\n"
@@ -3074,9 +3221,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3273,38 +3419,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3479,11 +3619,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3533,7 +3673,7 @@ msgstr ""
" GNU/Linux, , \n"
" ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3569,7 +3709,7 @@ msgstr ""
" \"\". "
" ."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3595,7 +3735,7 @@ msgstr ""
", . \n"
" , \"OK\", ."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3623,7 +3763,7 @@ msgstr ""
" . , , \n"
" \"\" ."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3631,23 +3771,23 @@ msgstr ""
", . , COM1 Windows GNU/Linux\n"
" ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3669,7 +3809,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3691,7 +3831,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3699,7 +3839,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3720,7 +3860,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3744,7 +3884,7 @@ msgstr ""
" . ,\n"
" boot-, !"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3758,29 +3898,28 @@ msgstr ""
" , , \" \n"
" (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3789,7 +3928,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3814,11 +3953,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3828,9 +3967,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3842,7 +3980,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3868,7 +4006,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3895,18 +4033,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3914,12 +4051,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3935,7 +4071,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3946,7 +4082,7 @@ msgstr ""
" \n"
" ."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3965,7 +4101,7 @@ msgstr ""
" \"\", \n"
" ."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3973,12 +4109,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4002,20 +4138,20 @@ msgstr ""
"\n"
" ?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr " broadcast NIS "
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr " FAT %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr " FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4023,7 +4159,7 @@ msgstr ""
" , ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr " %s"
@@ -4054,7 +4190,7 @@ msgstr " swap-"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4062,59 +4198,59 @@ msgstr ""
"\n"
" ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr " FAT /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr " "
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr " "
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr " "
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr " , "
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr " Windows loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr " Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr " "
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr " root- MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr " swap- MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr " Windows "
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr " ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr " Windows "
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4123,12 +4259,15 @@ msgstr ""
" FAT , \n"
" : %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
" Windows , ''defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4149,54 +4288,54 @@ msgstr ""
" . .\n"
" , ."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr " windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr " %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr " FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
" FAT loopback ( "
" )"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr " "
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr " Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr " , ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr " e %s "
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr " "
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr " fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4205,11 +4344,11 @@ msgstr ""
" %s.\n"
" , `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr " "
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr " "
@@ -4217,16 +4356,16 @@ msgstr " "
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr " DrakX :"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr " : %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr " "
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr " "
@@ -4238,12 +4377,12 @@ msgstr ""
" , .\n"
" ."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr " %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4255,12 +4394,12 @@ msgstr ""
" \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr " %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr " "
@@ -4270,9 +4409,9 @@ msgstr " "
msgid "Entering step `%s'\n"
msgstr " `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4282,200 +4421,155 @@ msgstr ""
",\n"
" 'F1', CDROM ''."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr ", :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr " , , %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-" - ,\n"
-" , .\n"
-"\n"
-" - ;\n"
-" 100%% ."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-" %d%% .\n"
-"\n"
-" - ,\n"
-" , .\n"
-" - ;\n"
-" %d%% ."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr " - ."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr " "
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr " : %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ": %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
" , "
""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr " / "
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr " , "
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr " . "
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
" \n"
" , ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr " . "
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "/ "
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr " , "
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr " "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr ", , "
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d "
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr " %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4491,17 +4585,17 @@ msgstr ""
" , , CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr " ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr " :"
@@ -4575,11 +4669,11 @@ msgstr " "
msgid "Do you really want to leave the installation?"
msgstr " \"%s\" ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4594,7 +4688,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4818,113 +4912,117 @@ msgstr ""
" \n"
".\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr ", ."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "/"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr ", ."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ", ."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr " 2 "
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr " 3 "
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr " PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr " IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4935,7 +5033,7 @@ msgstr ""
" DrakX .\n"
"( %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4943,7 +5041,7 @@ msgstr ""
"DiskDrake .\n"
" !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4952,75 +5050,78 @@ msgstr ""
" , "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root "
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr " root- (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr " owe"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
" swap , "
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr " "
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr " . "
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
" (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr " (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr " (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr " (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5028,55 +5129,55 @@ msgstr ""
" .\n"
" auto_install ."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr " - "
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5086,16 +5187,16 @@ msgstr ""
" CD-, .\n"
" CD-, , Ok. "
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5104,23 +5205,23 @@ msgstr ""
" %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5184,159 +5285,190 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr " GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr " ( NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP "
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr " CUPS "
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr " () ?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN "
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV "
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr " Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr " root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr " ( %d )"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP "
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP "
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP "
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS "
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP "
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5365,19 +5497,19 @@ msgstr ""
" bootdisk , \n"
" \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5403,7 +5535,7 @@ msgstr ""
" . bootdisk ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5412,28 +5544,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr " bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5445,11 +5577,11 @@ msgstr ""
" , \n"
" BootX, "
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr " aboot ?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5457,15 +5589,15 @@ msgstr ""
" aboot, \n"
" , ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr " bootloader"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr " bootloader . :"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5482,18 +5614,17 @@ msgstr ""
" : shut-down\n"
" ."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5503,7 +5634,8 @@ msgstr ""
"\n"
" ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5514,7 +5646,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5528,17 +5660,21 @@ msgstr ""
" Errata, : \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
" \n"
" Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5552,15 +5688,15 @@ msgstr ""
"\n"
" .\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr " "
@@ -5587,414 +5723,398 @@ msgstr ""
msgid "Choose a file"
msgstr " "
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr " "
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr " , \n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr " ? ( %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr " ? ( %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr ": %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr " aboot ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr " ? ( %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr " (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr ""
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr ""
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr ""
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr ""
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr ""
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr ""
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr ""
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "U "
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US "
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr " ()"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr " ()"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr " (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr " (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr " (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr " ()"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr " (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr " (\"\" )"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr " (\"\" )"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr ""
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr ""
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr " 106 "
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr " "
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr " AZERTY ()"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr " AZERTY ()"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr " \" \" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr " \"\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr " (QWERTY )"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr " (QWERTZ )"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr " ()"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr " (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr " (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr " (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr " (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr " (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr ""
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr " "
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr " "
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr " ( \"F\" )"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr " ( \"Q\" )"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US ()"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr " \" \" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr " ()"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -6007,7 +6127,31 @@ msgstr "\" \" : %s\n"
msgid "Remove the logical volumes first\n"
msgstr " \n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr " "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr " "
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6048,10 +6192,6 @@ msgstr "1 "
msgid "Generic 2 Button Mouse"
msgstr " 2- "
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Wheel"
@@ -6116,38 +6256,54 @@ msgstr ""
msgid "No mouse"
msgstr " "
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr ", "
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr " ,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr " !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr " ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- "
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr " ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr " "
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr " "
@@ -6194,7 +6350,7 @@ msgstr ""
" .\n"
" ."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr " "
@@ -6207,7 +6363,7 @@ msgstr ", "
msgid "no network card found"
msgstr " "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr " "
@@ -6223,15 +6379,15 @@ msgstr ""
"Host ,\n"
" ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr " :"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr " "
@@ -6286,7 +6442,7 @@ msgstr " IDSN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
" .\n"
" , Unlisted"
@@ -6305,14 +6461,14 @@ msgstr " "
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
" \n"
" D- ( )"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr " ?"
#: ../../network/isdn.pm_.c:199
@@ -6336,7 +6492,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
" ISA , .\n"
@@ -6352,13 +6509,13 @@ msgid "Continue"
msgstr ""
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr " ISDN ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
" ISDN PCI , . PCI "
" ."
@@ -6375,47 +6532,47 @@ msgstr ", ."
msgid "Dialup options"
msgstr " "
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr " "
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr " "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr " "
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr " "
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr " "
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr " "
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr " DNS ( )"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr " DNS ( )"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6423,7 +6580,7 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6431,11 +6588,11 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr " "
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6443,33 +6600,33 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr " "
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr " %s ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6487,12 +6644,12 @@ msgstr ""
"\n"
" OK, ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6503,9 +6660,9 @@ msgstr ""
" Ok, , , "
" .\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6515,66 +6672,72 @@ msgstr ""
" / .\n"
" , .\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr " "
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr " "
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr " "
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr " ..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN "
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL "
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr " "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet "
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr " , "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6584,23 +6747,23 @@ msgstr ""
" , .\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr " ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr " "
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6611,7 +6774,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6621,7 +6784,7 @@ msgstr ""
"\n"
" .\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6629,16 +6792,16 @@ msgstr ""
" , X\n"
" , ."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6647,7 +6810,7 @@ msgstr ""
" , .\n"
" - ."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6657,38 +6820,43 @@ msgstr ""
" IP \n"
" - (, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr " %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " ( %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP "
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr " "
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr " IP "
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr " "
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6700,64 +6868,64 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" IP gateway, "
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS "
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway "
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr " proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr " ID ( )"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy- http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy- ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr " "
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr " ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr " ..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr " ."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr " , ."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6765,111 +6933,116 @@ msgstr ""
" .\n"
" ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr " "
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ", -"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ "
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr " (DMA) "
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO "
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 "
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 "
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr " "
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr " (. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr " "
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "1- DNS ( )"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "2- DNS ( )"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr " "
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr " "
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr " "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout ( )"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr " ( )"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr " "
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr " : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr " "
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
" , .\n"
" , "
" extended-"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr " %s : %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr " backup-"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr " %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6880,188 +7053,188 @@ msgstr ""
" , \n"
" "
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr ""
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr " "
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr ""
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Unix "
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR "
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - "
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - , "
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr " "
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr " "
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr " CUPS "
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr " LPD "
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr " (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr " SMB/Windows 95/98/NT "
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr " NetWare "
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr " URI "
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr " "
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr " "
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr " "
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr " "
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr " %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "( %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "( )"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP CUPS "
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " ( )"
@@ -7085,12 +7258,12 @@ msgstr ""
"; . ,\n"
" \" CUPS \" ."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr " CUPS "
@@ -7140,7 +7313,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr " !"
@@ -7148,7 +7321,7 @@ msgstr " !"
msgid "CUPS server IP"
msgstr "IP CUPS "
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr ""
@@ -7156,21 +7329,13 @@ msgstr ""
msgid "Automatic CUPS configuration"
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr " ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr " "
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr " "
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7183,14 +7348,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr " "
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7208,12 +7373,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr " "
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7227,11 +7392,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7241,35 +7406,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr " "
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr " "
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr " "
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr " %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7277,43 +7446,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr " URI "
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr " "
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7321,7 +7490,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7329,72 +7498,82 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ", ."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr " URI "
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr " ..."
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr " lpd-"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7404,27 +7583,27 @@ msgstr ""
" \n"
" ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr " "
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr " "
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr " !"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr " !"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr " SMB (Windows 9x/NT) "
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7438,35 +7617,35 @@ msgstr ""
", , \n"
" ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr " SMB "
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP SMB :"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr " "
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr " "
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr " IP !"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr " SAMBA share !"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7490,7 +7669,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7499,7 +7678,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7507,11 +7686,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr " NetWare "
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7522,28 +7701,28 @@ msgstr ""
" NetWare , \n"
" , , ,."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr " "
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr " "
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr " NCP !"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr " NCP !"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr " Socket "
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7557,19 +7736,19 @@ msgstr ""
" . \n"
" ."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr " "
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr " a !"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr " URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7579,11 +7758,11 @@ msgstr ""
" CUPS Foomatic . , "
" URI spooler-."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr " URI !"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7593,28 +7772,24 @@ msgstr ""
" \n"
". ."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr " "
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr ""
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr " "
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7629,26 +7804,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr " ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr " "
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr " "
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr " ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7657,17 +7832,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr " OKI Winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7677,11 +7852,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr " Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
#, fuzzy
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -7694,7 +7869,7 @@ msgstr ""
" . , \n"
" , ."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7707,7 +7882,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7723,22 +7898,22 @@ msgstr ""
", \n"
", ."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7747,11 +7922,11 @@ msgstr ""
" (\"%s\")\n"
" ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7764,40 +7939,40 @@ msgstr ""
" \n"
" . ."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr ""
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr " ()"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr " (4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr " (/) (/) ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7812,7 +7987,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7820,15 +7995,15 @@ msgstr ""
" .\n"
" .\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr " ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7841,7 +8016,7 @@ msgstr ""
"<file>\" \"kprinter <file>\". "
" .\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -7851,8 +8026,8 @@ msgstr ""
" . , "
" .\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7865,23 +8040,23 @@ msgstr ""
" . "
" , . \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
" , "
" - \" \".\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7890,8 +8065,8 @@ msgstr ""
" ( ) "
" \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -7901,7 +8076,7 @@ msgstr ""
" . , "
" .\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -7911,7 +8086,7 @@ msgstr ""
"\" \".\n"
"\n"
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7920,7 +8095,7 @@ msgstr ""
" ( ), "
" \"%s <file>\" \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7930,7 +8105,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7943,29 +8118,40 @@ msgstr ""
" . "
" , . \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr ""
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr " \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr " \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr " \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr " \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr " "
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7973,36 +8159,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8018,7 +8204,7 @@ msgstr ""
".\n"
" :\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8027,7 +8213,7 @@ msgstr ""
"CUPS Novell \n"
" - .\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8036,11 +8222,11 @@ msgstr ""
"PDQ , LPD \n"
" Socket/TCP .\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD LPRng IPP .\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8049,7 +8235,7 @@ msgstr ""
" , \n"
" \"foomatic-configure\" ."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
#, fuzzy
msgid ""
"\n"
@@ -8061,7 +8247,7 @@ msgstr ""
" CUPS \n"
" ."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8071,15 +8257,15 @@ msgstr ""
" , \n"
"\"\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr " "
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8090,11 +8276,11 @@ msgstr ""
" \"\", .\n"
" ."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr " , "
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8103,16 +8289,16 @@ msgstr ""
" \"%s\" ,\n"
" ?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr " "
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr " %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8122,29 +8308,29 @@ msgstr ""
" \n"
" %s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr " "
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr " ...."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr " "
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr " "
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8152,11 +8338,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr " "
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8166,7 +8352,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8178,24 +8364,24 @@ msgstr ""
". \n"
"."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr " "
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr " %s "
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8210,11 +8396,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr " "
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8228,66 +8414,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr " LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr " LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr " spooler"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr " (spooler) ?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr " \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr " "
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr " PinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr " \"%s\" ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr " ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr " : "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr ""
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8300,7 +8486,7 @@ msgstr ""
" , \n"
" \" \", ."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8312,29 +8498,33 @@ msgstr ""
" , \n"
" \" \", ."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr " "
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr " "
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr " ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8343,103 +8533,103 @@ msgstr ""
" %s: %s %s\n"
" ?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr " !"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr " "
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr " , , "
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr " , , "
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr " , "
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr " "
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr " ?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr " \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr " \"%s\" ."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr " \"%s\" ?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr " \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8524,24 +8714,61 @@ msgstr " . !"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr " __ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr " %s "
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid "
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ( raidtools ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr " RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+" . - \n"
+", -: \n"
+" . ."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+" , "
+".\n"
+" \n"
+" . "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr " "
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr ""
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr " ALSA (Advanced Linux Sound Architecture) "
@@ -8597,7 +8824,7 @@ msgstr ""
"HardDrake , \n"
"/ ."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8675,7 +8902,7 @@ msgstr ""
"Linux Virtual Server \n"
" ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8752,7 +8979,7 @@ msgstr ""
"NFS NIS. portmap , \n"
" , RPC ."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8848,7 +9075,7 @@ msgstr ""
msgid "File sharing"
msgstr " "
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr ""
@@ -8967,6 +9194,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr " "
@@ -9070,6 +9298,15 @@ msgstr ""
msgid "Installing packages..."
msgstr " ..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr " Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr " %s, "
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9078,6 +9315,161 @@ msgstr ""
" , :(\n"
" "
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr " -"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr " -"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS "
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS "
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP "
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP "
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr " ..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr " %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr " !"
@@ -9118,6 +9510,11 @@ msgstr ""
", , , "
" "
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr " "
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9126,12 +9523,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr " !"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9139,36 +9536,29 @@ msgstr ""
" .\n"
" ."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr ""
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr " "
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr " loopback ?"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9176,15 +9566,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9192,710 +9574,773 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr " %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr " "
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr " Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr " backup-"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr ", "
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr ", "
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr ", "
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN "
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr " "
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr ", , ."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr " "
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr " "
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr " ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr " ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr " "
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr " :"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr " "
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr " : %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr " "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr ", "
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN "
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr " "
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr ""
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr " "
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr " "
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr ""
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- "
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr ""
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr ""
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr " "
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr " "
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr ", "
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr " "
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr " "
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr " "
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9927,7 +10372,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9936,7 +10381,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9977,7 +10422,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10005,12 +10450,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10027,7 +10477,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10067,7 +10517,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10078,7 +10528,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10091,7 +10541,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10135,105 +10585,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr " %s . :"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr " "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr " "
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr " , "
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr " (%d )"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr ": "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr " :"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+" ( ):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr " :"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr ": "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr " LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr " , ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr ", ... "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+" .\n"
+" , ''"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr " %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP "
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+" Internet .\n"
+" , ''"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr " : "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet "
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP "
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ": drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr " DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd "
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr " scsi "
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr " raid "
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr " %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+" %s.\n"
+" ."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr " : %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+" mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s "
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr ""
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr " "
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr " "
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr " "
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr ""
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10242,123 +11118,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr " "
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr " "
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr " "
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr " "
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr " , "
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr ""
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr ""
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr " "
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr " "
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr " "
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr " "
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr " !"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr ""
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr " !"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr " "
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr " "
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr " "
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10370,31 +11245,31 @@ msgstr ""
"\n"
" ?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr " ."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr " ."
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10406,19 +11281,19 @@ msgstr ""
"\n"
" ?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr " ."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10434,21 +11309,21 @@ msgstr ""
": , "
" (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr " %s ( %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr " %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr " !"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10456,11 +11331,11 @@ msgstr ""
" ethernet . , "
" ."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr " "
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10475,19 +11350,19 @@ msgstr ""
"\n"
" ."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
" ."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr " "
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10497,17 +11372,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr " CUPS"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr " "
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10518,7 +11393,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10530,33 +11405,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP CUPS "
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr " LAN %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr " !"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10564,21 +11439,21 @@ msgstr ""
" ! . "
" ."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
" , , ..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr " %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10588,23 +11463,23 @@ msgstr ""
" "
" (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr " , ."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr " ."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr " ."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr " "
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10619,211 +11494,6 @@ msgstr ""
"\n"
" ``'', ."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr " (%d )"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr ": "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr " :"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-" ( ):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr " :"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr " "
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr ": "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr " LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr ""
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr " , ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr ", ... "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr ""
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr " "
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-" .\n"
-" , ''"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr " "
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr " %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr " "
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr " "
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr " "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr " "
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-" Internet .\n"
-" , ''"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr " "
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr " "
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr " : "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet "
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP "
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr " "
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr " "
@@ -10832,94 +11502,130 @@ msgstr " "
msgid "Choose the tool you want to use"
msgstr " , "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr " ()"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr " :"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10965,7 +11671,7 @@ msgstr " !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10979,7 +11685,7 @@ msgstr "//_"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<>N"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10987,7 +11693,7 @@ msgstr "//_"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<>O"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10995,11 +11701,11 @@ msgstr "//_"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<>S"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "// _"
+msgstr "// _"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11013,13 +11719,9 @@ msgstr "/_"
msgid "/Options/Test"
msgstr "//"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "//_..."
+msgstr "//_..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11080,7 +11782,7 @@ msgstr ""
msgid "Content of the file"
msgstr " "
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -11089,12 +11791,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr " , : %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr " LILO/Grub"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -11106,69 +11808,98 @@ msgstr ""
" HTTP FTP proxy\n"
" \n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr " "
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr ""
+msgid "Ftp Server"
+msgstr "NIS "
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix , Inn "
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS "
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS "
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr " "
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr ""
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr ""
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr " "
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr " ..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr ", ."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr " serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr " ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr " ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr " ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11212,6 +11943,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr " "
@@ -11615,10 +12358,6 @@ msgid "Multimedia - Sound"
msgstr " - "
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr ""
@@ -11723,10 +12462,6 @@ msgstr ""
"tin..) "
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ", , "
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr " "
@@ -11773,2126 +12508,218 @@ msgstr " - CD"
msgid "Scientific Workstation"
msgstr " "
-#, fuzzy
-#~ msgid "About"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ " "
-#~ " ( %s )"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr ""
-
-#~ msgid "Choose a default printer!"
-#~ msgstr " "
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck %d %d"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "/ "
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr " : %s\n"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr " %s."
+#~ msgid "Choose options for server"
+#~ msgstr " "
-#~ msgid "mount failed"
-#~ msgstr " "
+#~ msgid "Monitor not configured"
+#~ msgstr " "
-#~ msgid "Low"
-#~ msgstr ""
+#~ msgid "Graphics card not configured yet"
+#~ msgstr " "
-#~ msgid "Medium"
-#~ msgstr ""
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr " "
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ " . , \n"
-#~ " ."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr ""
-
-#~ msgid "Boot mode"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid ""
-#~ "To know about the options available for the current printer read either "
-#~ "the list shown below or click on the \"Print option list\" button. %s\n"
#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ " , "
-#~ " - \" "
-#~ "\".\n"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux GMT ( )\n"
-#~ " , ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr " "
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr " "
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr " (LAN )"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr " ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr ", , ."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome "
-
-#~ msgid "authentification"
-#~ msgstr ""
-
-#~ msgid "user"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache World Wide Web (WWW) . HTML "
-#~ "\n"
-#~ " CGI."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) Domain Name Server (DNS), \n"
-#~ " IP ."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr ", ."
+#~ " "
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr " NFS "
+#~ msgid "An error occurred:"
+#~ msgstr " :"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr " NFS %s"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr " %d "
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr " SAMBA "
+#~ msgid "Is this the correct setting?"
+#~ msgstr " ?"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr " SAMBA %s"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr " , "
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr ""
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 : %s"
-#~ msgid "Removable media"
-#~ msgstr " "
+#~ msgid "Show all"
+#~ msgstr " "
-#~ msgid "Active"
-#~ msgstr ""
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr " X-Window"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr ""
+#~ msgid "What do you want to do?"
+#~ msgstr " ?"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr " \"%s\", "
+#~ msgid "Change Monitor"
+#~ msgstr " "
-#~ msgid "Local Printer Device"
-#~ msgstr " "
+#~ msgid "Change Graphics card"
+#~ msgstr " "
-#~ msgid "Printer Device"
-#~ msgstr " "
+#~ msgid "Change Server options"
+#~ msgstr " "
-#~ msgid "Device/file name missing!"
-#~ msgstr " / !"
+#~ msgid "Change Resolution"
+#~ msgstr " "
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "() () CUPS ()"
+#~ msgid "Show information"
+#~ msgstr " "
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "() () ()"
+#~ msgid "Test again"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Setting security level"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " System "
-#~ msgstr ""
+#~ msgid "Graphics card"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr ", ."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr ", "
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr ": "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr " backup-"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr " "
+#~ msgid "Select a graphics card"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr ""
-
-#~ msgid "Starting your connection..."
-#~ msgstr " ...."
-
-#~ msgid "Closing your connection..."
-#~ msgstr " ..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ " .\n"
-#~ " , \n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ " root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr " ."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr " , "
-
-#~ msgid "Total size: "
-#~ msgstr " : "
-
-#~ msgid "Please wait, "
-#~ msgstr ", , "
-
-#~ msgid "Total time "
-#~ msgstr " "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr " X11 ?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ " \n"
-#~ "(: /dev/lp0 LPT1) ?\n"
+#~ ": \"\" "
+#~ ""
-#~ msgid "%s"
-#~ msgstr "%s"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 60 Hz"
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ", . ."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 56 Hz"
-#~ msgid "New"
-#~ msgstr ""
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-, 1024x768 87 Hz interlaced ( 800x600)"
-#~ msgid "Remote"
-#~ msgstr ""
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 87 Hz interlaced, 800x600 56 Hz"
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ ", -\n"
-#~ "\n"
-#~ " \"\""
-
-#~ msgid "Use \"New\""
-#~ msgstr " \"\""
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr " - , :"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-#~ msgid "Shared resource"
-#~ msgstr " "
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr " SVGA, 1024x768 70 Hz"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "..... (%s), -\n"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr " , 1280x1024 60 Hz"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? ( %s)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr " , 1280x1024 74 Hz"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr " ? ( %s, 'none' )"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr " , 1280x1024 76 Hz"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr " /etc/sysconfig/autologin : %s"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr ", 1600x1200 70 Hz"
-#~ msgid "Do you want to restart the network"
-#~ msgstr " ?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ " ?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr " :\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr ""
-#~ " %s. ?"
-
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ " , \"/dev/hda\"\n"
-#~ "( IDE ) \"/dev/sda\" ( SCSI )."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr ", 1600x1200 76 Hz"
#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ " .\n"
-#~ " ."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr " , , %d MB.\n"
#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ " - ,\n"
+#~ " , .\n"
#~ "\n"
-#~ " , %s "
+#~ " - ;\n"
+#~ " 100%% ."
#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
+#~ " %d%% .\n"
#~ "\n"
-#~ ":\n"
-#~ " X ."
-
-#~ msgid "%s is already in use"
-#~ msgstr " %s "
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "( )"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr " !"
+#~ " - ,\n"
+#~ " , .\n"
+#~ " - ;\n"
+#~ " %d%% ."
-#~ msgid "ADSL configuration"
-#~ msgstr " ADSL"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr " - ."
-#~ msgid "Adapter"
-#~ msgstr ""
+#~ msgid "Percentage of packages to install"
+#~ msgstr " "
-#~ msgid "Add location of packages"
-#~ msgstr " "
+#~ msgid "Please choose the desired security level."
+#~ msgstr " "
-#~ msgid "After formatting all partitions,"
-#~ msgstr " ,"
+#~ msgid "hide expert mode"
+#~ msgstr " "
-#~ msgid "Alcatel modem"
-#~ msgstr " Alcatel"
+#~ msgid "show expert mode"
+#~ msgstr " "
#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ " , ?\n"
-#~ " , .\n"
-#~ " : ``Use shadow file for passwords?'',\n"
-#~ " ?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr " "
-
-#~ msgid "Automatic dependencies"
-#~ msgstr " "
-
-#~ msgid "Available packages"
-#~ msgstr " "
+#~ " '%s' ,\n"
+#~ " "
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ ", numlock \n"
-#~ " (: 'p' '6')"
+#~ "! '%s'.\n"
+#~ " '%s' .\n"
+#~ " , . "
-#~ msgid "Boot style configuration"
-#~ msgstr " "
+#~ msgid "unknown"
+#~ msgstr ""
-#~ msgid "CUPS starting"
-#~ msgstr " CUPS"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr " supermount "
+#~ msgid "Select a module or write his name:"
+#~ msgstr " :"
#~ msgid "Category"
#~ msgstr ""
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ " (IRC ) xchat, licq, gaim "
-#~ " "
-
-#~ msgid "Checking dependencies"
-#~ msgstr " "
-
-#~ msgid "Choice"
-#~ msgstr ""
-
-#~ msgid "Choose"
-#~ msgstr ""
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr " -"
-
-#~ msgid "Collapse all"
-#~ msgstr " "
-
-#~ msgid "Color depth options"
-#~ msgstr " "
-
-#~ msgid "Command line"
-#~ msgstr " "
-
-#~ msgid "Communication facilities"
-#~ msgstr " "
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr " ."
-
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr " Lilo/Grub"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr " LILO/GRUB"
-
-#~ msgid "Configure local network"
-#~ msgstr " "
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr " / "
-
-#~ msgid "Configure timezone"
-#~ msgstr " "
-
-#~ msgid "Configure..."
-#~ msgstr " ..."
-
-#~ msgid "Confirm Password"
-#~ msgstr " "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr " "
-
-#~ msgid "Connection Time: "
-#~ msgstr " : "
-
-#~ msgid "Connection complete."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ " .\n"
-#~ " Mandrake Control Center."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Timeout ( ) [ , ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr " \"%s\" !"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr " boot-"
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ " boot . \n"
-#~ " , \n"
-#~ " ."
-
-#~ msgid "Customized"
-#~ msgstr ""
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr " ()"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr ", DNS/DHCP "
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL ( ADSL) "
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr " (MySQL PostgreSQL)"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Runlevel "
-
-#~ msgid "Development C/C++"
-#~ msgstr " C/C++"
-
-#~ msgid "Development, Database"
-#~ msgstr ", -"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr ", "
-
-#~ msgid "Development, Standard tools"
-#~ msgstr ", "
-
-#~ msgid "Directory"
-#~ msgstr ""
-
-#~ msgid "Disable"
-#~ msgstr ""
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr " "
-
-#~ msgid "Disable network"
-#~ msgstr " "
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr " "
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr " ."
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ " Linux ?"
-
-#~ msgid "ECI modem"
-#~ msgstr " ECI"
-
-#~ msgid "Eject page after job?"
-#~ msgstr " ?"
-
-#~ msgid "Enable"
-#~ msgstr ""
-
-#~ msgid "Enable network"
-#~ msgstr " "
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr " Num Lock- "
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ " ( ) \n"
-#~ " ( lp) spool- . \n"
-#~ " "
-#~ " ?"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ " (, \"lp\").\n"
-#~ " "
-#~ "\n"
-#~ " . \n"
-#~ " ?"
-
-#~ msgid "Expand all"
-#~ msgstr " "
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr " GhostScript "
-
-#~ msgid "Extra Text options"
-#~ msgstr " "
-
-#~ msgid "File/Print/Samba"
-#~ msgstr ", //Samba"
-
-#~ msgid "Find Package"
-#~ msgstr " "
-
-#~ msgid "Find Package containing file"
-#~ msgstr " "
-
-#~ msgid "Finding leaves"
-#~ msgstr " "
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr " "
-
-#~ msgid "First DNS Server"
-#~ msgstr " DNS "
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr " stair-stepping ?"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ " FTP HTTP, hdlist\n"
-#~ " URL- "
-
-#~ msgid "Format all"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux . \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , \"\n"
-#~ "\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Unix , "
-#~ "\n"
-#~ "\" \".\n"
-#~ "\n"
-#~ "\n"
-#~ " Microsoft Windows "
-#~ "\n"
-#~ "( Unix SMB ), \"SMB/Windows "
-#~ "95/98/NT\"."
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr " (.: `extra', `commercial')"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr " %s"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr " "
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr " ?"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr " ISDN :\n"
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ " X, \n"
-#~ " X Window ."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ " - \n"
-#~ " , \n"
-#~ " . "
-#~ "\n"
-#~ "DNS (name server), "
-#~ "\n"
-#~ "."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ " CD- -, Ok. \n"
-#~ " CD-, . CD-, "
-#~ " ,\n"
-#~ " Ok."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ " , \"\". \n"
-#~ " , \"\"."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ " proxy , , . ,\n"
-#~ " ."
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ " ( , \n"
-#~ " ), , "
-#~ ", \n"
-#~ " -. , "
-#~ "\"\"."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ " , , "
-#~ "\n"
-#~ "CUPS LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS , Unix (CUPS\n"
-#~ " \" Unix \"). "
-#~ " \n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR , Mandrake Linux "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " , \"\"."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ " \n"
-#~ " , , . , "
-#~ "\n"
-#~ " , DrakX "
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ "\" \".\n"
-#~ "\n"
-#~ "\n"
-#~ " -, , "
-#~ " , \"\"."
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ " ADSL Alcatel, Alcatel. , ECI."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ " , , , DrakX "
-#~ " ."
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ " LDAP ( NIS) , \n"
-#~ "\"LDAP\" ( \"NIS\") . , "
-#~ "\n"
-#~ ".\n"
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ " \" \" ."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ " NIS, \" NIS\". ,\n"
-#~ " ."
-
-#~ msgid "In which country are you located ?"
-#~ msgstr " ?"
-
-#~ msgid "Installed packages"
-#~ msgstr " "
-
-#~ msgid "Internet Tools"
-#~ msgstr " "
-
-#~ msgid "Internet/Network access"
-#~ msgstr "/ "
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ " LILO GRUB :\n"
-#~ " - Boot : (.. \n"
-#~ "), boot . \"/dev/hda\", \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " - : "
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ ". , "
-#~ "\n"
-#~ " . , \"delay\" \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " - : VGA , \n"
-#~ " . :\n"
-#~ " * normal: 80x25 .\n"
-#~ "\n"
-#~ " * <number>: .\n"
-#~ "\n"
-#~ "\n"
-#~ " - \"/tmp\" : "
-#~ "\n"
-#~ " \"/tmp\", "
-#~ ",\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " - RAM, : , , \n"
-#~ " BIOS RAM . , GNU/Linux "
-#~ "\n"
-#~ " RAM. , \n"
-#~ " RAM. , 2 4 MB\n"
-#~ " RAM ."
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ " .\n"
-#~ " :"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Miscellaneous"
-#~ msgstr ""
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr " "
-
-#~ msgid "Modify printer"
-#~ msgstr " "
-
-#~ msgid "Name of queue"
-#~ msgstr " "
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr " :"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Network Monitoring"
-#~ msgstr " "
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr " 1 (eth0):"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr " CDROM ( /mnt/cdrom)"
-
-#~ msgid "No match"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ " . , , .\n"
-#~ "\n"
-#~ "\n"
-#~ " , ( \"COM1\" Microsoft\n"
-#~ "Windows) \"ttyS0\" Linux."
-
-#~ msgid "No more match"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ " X Window System, \n"
-#~ "GNU/Linux GUI ( ). \n"
-#~ " . - \n"
-#~ ", "
-#~ "\n"
-#~ " :)\n"
-#~ "\n"
-#~ "\n"
-#~ " , X ( \n"
-#~ "DrakX ), . "
-#~ "\n"
-#~ " , , \n"
-#~ " ."
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ ", ,\n"
-#~ " .\n"
-#~ ": , "
-#~ " (LAN).\n"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr " "
-
-#~ msgid "Opening your connection..."
-#~ msgstr " ..."
-
-#~ msgid "Other countries"
-#~ msgstr " "
-
-#~ msgid "Package"
-#~ msgstr ""
-
-#~ msgid "Paper Size"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ ", .\n"
-#~ ", , .\n"
-#~ "\n"
-#~ "\n"
-#~ " , "
-#~ " ."
-
-#~ msgid "Please submit the following information"
-#~ msgstr ", "
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr ", ."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ ", , DrakX "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " * : , spooler \"lp\" "
-#~ " . \n"
-#~ " \"lp\".\n"
-#~ " , "
-#~ ". pipe\n"
-#~ " (\"|\"). , - , "
-#~ " , . \"My printer|lp\".\n"
-#~ " \"lp\" () "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " * : , , "
-#~ " \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " * : \n"
-#~ " , ( "
-#~ ",\n"
-#~ " \"2- \").\n"
-
-#~ msgid "Press next to continue."
-#~ msgstr " , ."
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr " PostScript ?"
-
-#~ msgid "Profile "
-#~ msgstr " "
-
-#~ msgid "Provider dns 1"
-#~ msgstr "1- DNS "
-
-#~ msgid "Provider dns 2"
-#~ msgstr "2- DNS "
+#~ msgid "preload module"
+#~ msgstr " "
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, , "
+#~ msgid "click on a category"
+#~ msgstr " "
-#~ msgid "Receiving Speed:"
-#~ msgstr " : "
+#~ msgid "Remove"
+#~ msgstr ""
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr " ..."
+#~ msgid "Tool for boot disk creation"
+#~ msgstr " "
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Reload"
-#~ msgstr ""
-
-#~ msgid "Remote queue"
-#~ msgstr " "
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr " !"
-
-#~ msgid "Reverse page order"
-#~ msgstr " "
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "/ (1/72 )"
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO bootloader SPARC: o \n"
-#~ "GNU/Linux , "
-#~ " .\n"
-#~ ", \n"
-#~ ". , \n"
-#~ " . .\n"
-#~ "\n"
-#~ "\n"
-#~ " ,\n"
-#~ " . ,\n"
-#~ " boot-, !"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ " SILO :\n"
-#~ " - bootloader : , "
-#~ "\n"
-#~ " GNU/Linux. \n"
-#~ ", \" (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : "
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ ". , \n"
-#~ " . , \"delay\" \n"
-#~ " ."
-
-#~ msgid "Sciences"
-#~ msgstr ""
-
-#~ msgid "Scientific applications"
-#~ msgstr " "
-
-#~ msgid "Search"
-#~ msgstr ""
-
-#~ msgid "Second DNS Server"
-#~ msgstr " DNS "
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr " "
-
-#~ msgid "Select the size you want to install"
-#~ msgstr " , "
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ ":\n"
-#~ "\n"
-#~ " - : GNU/Linux, "
-#~ "\n"
-#~ " . - "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : , \"\" GNU/Linux \n"
-#~ " . "
-#~ "\"\"\n"
-#~ " , "
-#~ ".\n"
-#~ " , , , !"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr " %d%s"
-
-#~ msgid "Sending Speed:"
-#~ msgstr " : "
-
-#~ msgid "Show only leaves"
-#~ msgstr " "
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr " ()"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ ", . ."
-
-#~ msgid "Sort by"
-#~ msgstr " "
-
-#~ msgid "Spool directory"
-#~ msgstr "Spool-"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Statistics"
-#~ msgstr ""
-
-#~ msgid "Test the mouse here."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "The Mandrake Linux spreads among several CDROMs. It may be that drakX "
-#~ "has\n"
-#~ "selected packages on another CDROM than the installation CDROM, and when "
-#~ "it\n"
-#~ "needs that you put another one into the drive, it will eject the current "
-#~ "CDROM\n"
-#~ "and ask you for another one."
-#~ msgstr ""
-#~ "Mandrake Linux CDROM-. , "
-#~ "DrakX\n"
-#~ " CDROM, CDROM, , \n"
-#~ " , CDROM "
-#~ "\n"
-#~ " ."
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr " "
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr " usb ."
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ " - , \" shadow \"\n"
-#~ " \" MD5 \"."
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr " "
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "/ (1/72 )"
-
-#~ msgid "Tree"
-#~ msgstr ""
-
-#~ msgid "Try to find a modem?"
-#~ msgstr " ?"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL RPM"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr " Uniprint "
-
-#~ msgid "Unrecognized config file"
-#~ msgstr " "
-
-#~ msgid "Update location"
-#~ msgstr " "
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr " RPM "
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr " MD5 "
-
-#~ msgid "Use diskdrake"
-#~ msgstr " diskdrake"
-
-#~ msgid "Use shadow file"
-#~ msgstr " shadow "
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ " .\n"
-#~ " ?\n"
-
-#~ msgid "What are looking for?"
-#~ msgstr " ?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr " ?"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr " ?"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr " ?"
-
-#~ msgid "Which package are looking for"
-#~ msgstr " "
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr " ?"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ " CUPS , \n"
-#~ " ; ,\n"
-#~ " ; ,\n"
-#~ " IP \n"
-#~ "CUPS ."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr " /etc/fstab"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr ", ASCII "
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr ", PostScript "
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ " . , "
-#~ " \n"
-#~ ". , , "
-#~ ".\n"
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ " ( ) "
-#~ "\n"
-#~ " ( Unix, Netware Microsoft Windows )."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ " , \n"
-#~ " . , "
-#~ "\n"
-#~ ", .\n"
-#~ "\n"
-#~ "\n"
-#~ ", ,\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ " , \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ " \" \".\n"
-#~ "\n"
-#~ "\n"
-#~ " , "
-#~ "\" \".\n"
-#~ " , "
-#~ "\n"
-#~ " , ."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ " root Mandrake Linux .\n"
-#~ " , "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ "Root , "
-#~ "\n"
-#~ " . .\n"
-#~ " root "
-#~ "\n"
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ " - 8\n"
-#~ ". .\n"
-#~ "\n"
-#~ "\n"
-#~ " , : "
-#~ "\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ "* : "
-#~ " , \n"
-#~ " : , "
-#~ " . , \n"
-#~ " , , "
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ "* : "
-#~ "\n"
-#~ " . , . , "
-#~ "\n"
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ "* RAM, : , , "
-#~ " BIOS RAM . \n"
-#~ " , GNU/Linux "
-#~ "RAM. , \n"
-#~ " RAM. , 2 4 MB "
-#~ " RAM .\n"
-#~ "\n"
-#~ "\n"
-#~ "* : "
-#~ " (CD-ROM,\n"
-#~ " , Zip ..) \"mount\" \"umount\", "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ "* \"/tmp\" : "
-#~ " \"/tmp\",\n"
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ "* NumLock : NumLock "
-#~ " , . , \n"
-#~ " "
-#~ " X)."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ " . , "
-#~ "\n"
-#~ " . , \""
-#~ "\",\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ " . , "
-#~ "\n"
-#~ " . , \"\", "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " Apple , "
-#~ "\n"
-#~ " , 2- 3- \n"
-#~ ". "
-#~ "Linux\n"
-#~ ", X Windows GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ " ADB , , USB, Linux "
-#~ "\n"
-#~ " ."
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr " URI CUPS."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ " * IP : , "
-#~ " .\n"
-#~ " IP , \" IP"
-#~ "\", -.\n"
-#~ "\n"
-#~ " * : \"255.255.255.0\" . "
-#~ " , "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " * IP: BOOTP DHCP , "
-#~ " . , \n"
-#~ " \"IP \". "
-#~ " , ."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ " \"\" \n"
-#~ ", \"\" \n"
-#~ " \"root\". , \n"
-#~ " . \n"
-#~ " ( , ..)\n"
-#~ " \"Home\" , \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " . ,\n"
-#~ " "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ ", ."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ " dialup . \n"
-#~ " , "
-#~ "\n"
-#~ " . DNS (name "
-#~ "server)\n"
-#~ ", \n"
-#~ "."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ " . ,\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ " . \n"
-#~ " , ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ " , . \n"
-#~ " , ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ " , . \n"
-#~ " , "
-#~ "\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ " , \n"
-#~ " .\n"
-#~ "\n"
-#~ "DrakX . "
-#~ ",\n"
-#~ " . , "
-#~ "\n"
-#~ " , - "
-#~ ".\n"
-#~ " \" "
-#~ "\";\n"
-#~ " , 1000 ..."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ " . "
-#~ ":\n"
-#~ "\n"
-#~ "\t* : , "
-#~ " \n"
-#~ "\t .\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* : "
-#~ " , .\n"
-#~ "\t , , "
-#~ " ,\n"
-#~ "\t .\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* : , "
-#~ " . \n"
-#~ "\t (NFS SMB), (Unix- Microsoft Windows-), "
-#~ " (NIS), \n"
-#~ "\t - ... , "
-#~ " (KDE, GNOME, ..)."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ " . "
-#~ ":\n"
-#~ "\n"
-#~ "* : , "
-#~ " \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ "* : "
-#~ " , .\n"
-#~ " , , "
-#~ " ,\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ "* : , "
-#~ " . \n"
-#~ " (NFS SMB), (Unix- Microsoft Windows-), "
-#~ " (NIS), \n"
-#~ " - ... , "
-#~ " (KDE, GNOME, ..)."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr " -."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ " -, "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " \"\", .\n"
-#~ "\n"
-#~ "\n"
-#~ " \"\", . "
-#~ " \n"
-#~ "."
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " * : , spooler \"lp\" "
-#~ " . \n"
-#~ " \"lp\".\n"
-#~ " , "
-#~ ". pipe\n"
-#~ " (\"|\"). , - , "
-#~ " , . \"My printer|lp\".\n"
-#~ " \"lp\" () , "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spool : , "
-#~ " . \n"
-#~ " , \n"
-#~ "\n"
-#~ "\n"
-#~ " * : "
-#~ " , \" \".\n"
-#~ " Unix , "
-#~ " \" LPD \".\n"
-#~ "\n"
-#~ "\n"
-#~ " Microsoft "
-#~ "Windows ( Unix SMB\n"
-#~ " ), \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " NetWare , "
-#~ "\"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ " . , , "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , . "
-#~ "\n"
-#~ " \"/dev/lp0\" GNU/Linux \"LPT1\" Microsoft Windows."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ " , Mandrake Linux \n"
-#~ ". "
-#~ ",\n"
-#~ " ."
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ ": , ROOT "
-#~ " !\n"
-#~ " root, "
-#~ " \"su\".\n"
-#~ " , , "
-#~ ". ."
-
-#~ msgid "cannot fork: "
-#~ msgstr " : "
-
-#~ msgid "default"
-#~ msgstr " "
-
-#~ msgid "don't use pppoe"
-#~ msgstr " PPPOE"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr " - aurora"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n ()"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n ()"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n ( )"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "not connected"
-#~ msgstr " "
-
-#~ msgid "received: "
-#~ msgstr ": "
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake `` ''.\n"
-#~ " rpmdrake, "
+#~ msgid "Show expert mode"
+#~ msgstr " "
-#~ msgid "sent: "
-#~ msgstr ": "
+#~ msgid "modules"
+#~ msgstr ""
-#~ msgid "using module"
-#~ msgstr " "
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr " . .\n"
-#~ msgid "vertical traditional aurora"
-#~ msgstr " aurora"
+#~ msgid "experts only"
+#~ msgstr " "
-#~ msgid "yellow pages"
-#~ msgstr " "
+#~ msgid "/File/_Preferences"
+#~ msgstr "//_"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index f210d9039..235ad3a0b 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 8.2\n"
-"POT-Creation-Date: 2002-06-13 15:54+0200\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2002-01-28 22:41GMT\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -14,96 +14,117 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../Xconfigurator.pm_.c:244
-msgid "Use Xinerama extension"
-msgstr "Implijit Xinemara"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../Xconfigurator.pm_.c:247
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo pe vuioc'h"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Dibabit ur servijer X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "servijer X"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "o lenn ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:251
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:262
-msgid "Graphics card"
-msgstr "Kartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Diuzit ment memor ho kartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:263
-msgid "Select a graphics card"
-msgstr "Diuzit ur gartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Staliadur XFree86"
-#: ../../Xconfigurator.pm_.c:287
-msgid "Choose a X server"
-msgstr "Dibabit ur servijer X"
+#: ../../Xconfig/card.pm_.c:343
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pe seurt enmont a vennit ouzhpennañ"
-#: ../../Xconfigurator.pm_.c:287
-msgid "X server"
-msgstr "servijer X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:294
-msgid "Choose a X driver"
-msgstr "Dibabit ur sturier X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Implijit Xinemara"
-#: ../../Xconfigurator.pm_.c:294
-msgid "X driver"
-msgstr "Sturier X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:361 ../../Xconfigurator.pm_.c:367
-#: ../../Xconfigurator.pm_.c:417 ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:364
-#, fuzzy
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pe seurt enmont a vennit ouzhpennañ"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gant 3D"
-#: ../../Xconfigurator.pm_.c:375
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:377 ../../Xconfigurator.pm_.c:410
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:379 ../../Xconfigurator.pm_.c:412
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gant 3D"
-
-#: ../../Xconfigurator.pm_.c:387 ../../Xconfigurator.pm_.c:401
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:389 ../../Xconfigurator.pm_.c:403
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:398
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -111,31 +132,52 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:418
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:422
-msgid "XFree configuration"
-msgstr "Staliadur XFree86"
-
-#: ../../Xconfigurator.pm_.c:497
-msgid "Select the memory size of your graphics card"
-msgstr "Diuzit ment memor ho kartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:551
-msgid "Choose options for server"
-msgstr "Dibabit dibarzhoù ar servijer"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../../Xconfigurator.pm_.c:575
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Dibabit ur skramm"
-#: ../../Xconfigurator.pm_.c:575
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skramm"
-#: ../../Xconfigurator.pm_.c:578
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personelañ"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Rummel"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Dizober"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -158,230 +200,158 @@ msgstr ""
"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastañ ho skramm\n"
" M'hoc'h eus douetañs, dibabit ur c'hefluniadur fur."
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Feur freskaat a-led"
-#: ../../Xconfigurator.pm_.c:586
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Feur freskaat a-serzh"
-#: ../../Xconfigurator.pm_.c:623
-msgid "Monitor not configured"
-msgstr "Skramm ket kefluniet"
-
-#: ../../Xconfigurator.pm_.c:626
-msgid "Graphics card not configured yet"
-msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:629
-msgid "Resolutions not chosen yet"
-msgstr "Spisterioù ket dibabet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:647
-msgid "Do you want to test the configuration?"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-
-#: ../../Xconfigurator.pm_.c:651
-#, fuzzy
-msgid "Warning: testing this graphics card may freeze your computer"
-msgstr "Da ziwall : arvarus eo amprouiñ ar gartenn c'hrafek-mañ"
-
-#: ../../Xconfigurator.pm_.c:654
-msgid "Test of the configuration"
-msgstr "Amprouiñ ar c'hefluniadur"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 liv (8 bit)"
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"klaskit kemmañ arventennoù 'zo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil liv (15 bit)"
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid "An error occurred:"
-msgstr "C'hoarvezet eo ur fazi :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil liv (16 bit)"
-#: ../../Xconfigurator.pm_.c:734
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Kuitaat e %d eilenn"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milion a livioù (24 bit)"
-#: ../../Xconfigurator.pm_.c:745
-msgid "Is this the correct setting?"
-msgstr "Ha reizh eo ar c'hefluniadur ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliard a livioù (32 bit)"
-#: ../../Xconfigurator.pm_.c:754
-msgid "An error occurred, try to change some parameters"
-msgstr "C'hoarvezet eo ur fazi, klaskit kemmañ arventennoù 'zo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Spisterioù"
-#: ../../Xconfigurator.pm_.c:825
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Spister"
-#: ../../Xconfigurator.pm_.c:877
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Dibabit ar spister ha donder al livioù"
-#: ../../Xconfigurator.pm_.c:879
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
msgid "Graphics card: %s"
msgstr "Kartenn c'hrafek : %s"
-#: ../../Xconfigurator.pm_.c:880
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servijer XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:894 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Dilec'hiañ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Nullañ"
-#: ../../Xconfigurator.pm_.c:894 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:701
-#: ../../my_gtk.pm_.c:1034 ../../my_gtk.pm_.c:1056
-#: ../../standalone/drakbackup_.c:2288 ../../standalone/drakbackup_.c:2359
-#: ../../standalone/drakbackup_.c:2375
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Mat eo"
-#: ../../Xconfigurator.pm_.c:896 ../../network/netconnect.pm_.c:173
-#: ../../printerdrake.pm_.c:2473 ../../standalone/drakfloppy_.c:146
-#: ../../standalone/draknet_.c:275 ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mod mailh"
-
-#: ../../Xconfigurator.pm_.c:897
-msgid "Show all"
-msgstr "Diskouez pep tra"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../Xconfigurator.pm_.c:942
-msgid "Resolutions"
-msgstr "Spisterioù"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Amprouiñ ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Reizhadur ar stokellaoueg : %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Seurt logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Trobarzhell al logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "KempredA-led ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "FreskA-serzh ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1518
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Graphics card: %s\n"
msgstr "Kartenn c'hrafek : %s\n"
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Graphics card identification: %s\n"
-msgstr "Anavezoud kartenn c'hrafek : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memor c'hrafek : %s ko\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Donder liv: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Spister: %s\n"
-#: ../../Xconfigurator.pm_.c:1525
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servijer XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1526
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Sturier XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1544
-msgid "Preparing X-Window configuration"
-msgstr "O prientiñ kefluniadur X-Window"
-
-#: ../../Xconfigurator.pm_.c:1564
-msgid "What do you want to do?"
-msgstr "Petra a vennit ober ? "
-
-#: ../../Xconfigurator.pm_.c:1569
-msgid "Change Monitor"
-msgstr "Kemmañ ar skramm"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Graphics card"
-msgstr "Kemmañ ar gartenn c'hrafek"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Change Server options"
-msgstr "Kemmañ dibarzhoù ar servijer"
-
-#: ../../Xconfigurator.pm_.c:1574
-msgid "Change Resolution"
-msgstr "Kemmañ ar spister"
-
-#: ../../Xconfigurator.pm_.c:1575
-msgid "Show information"
-msgstr "Diskouez titouroù"
-
-#: ../../Xconfigurator.pm_.c:1576
-msgid "Test again"
-msgstr "Amprouiñ adarre"
-
-#: ../../Xconfigurator.pm_.c:1577 ../../printerdrake.pm_.c:2476
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Kuitaat"
-
-#: ../../Xconfigurator.pm_.c:1585
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr "Derc'hel ar c'hefluniadur IP o ren"
-
-#: ../../Xconfigurator.pm_.c:1606
+#: ../../Xconfig/various.pm_.c:51
msgid "Graphical interface at startup"
msgstr "X pa loc'her"
-#: ../../Xconfigurator.pm_.c:1607
+#: ../../Xconfig/various.pm_.c:52
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -390,277 +360,165 @@ msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
"Mennout a rit lañsañ X pa adloc'hit ?"
-#: ../../Xconfigurator.pm_.c:1613
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Adereit ouzh %s evit bevaat ar c'hemmoù mar plij"
-
-#: ../../Xconfigurator.pm_.c:1628
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 liv (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil liv (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil liv (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milion a livioù (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliard a livioù (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo pe vuioc'h"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Rann gentañ ar parzhadur loc'hañ"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Rann gentañ ar bladenn (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Staliadur SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Staliadur LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO gant meuziad c'hrafek"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Loc'hañ abaoe DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Dibarzhoù pennañ ar c'harger loc'hañ"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "C'harger loc'hañ da implijout"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Staliadur c'harger loc'hañ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Trobarzhell loc'hañ"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne da ket en-dro gant BIOSoù kozh)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Fetis"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "fetis"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1087 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:710 ../../printerdrake.pm_.c:808
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Tremenger"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoù al linenn urzhiañ"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "strishaat"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Skarañ /tmp bep ma loc'her"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Aotren lies trolinenn"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Roit ment ar memor vev e Mo"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Didalvout eo ``Strishaat dibarzhoù al linenn urzhiañ'' hep tremenger"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1143
-#: ../../install_steps_interactive.pm_.c:1082
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1082
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "RK dre ziouer"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -669,7 +527,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -677,75 +535,75 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:741
-#: ../../standalone/drakbackup_.c:850 ../../standalone/drakfont_.c:790
-#: ../../standalone/drakfont_.c:827
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ouzhpennañ"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Graet"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Kemmañ"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:884
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Reizhiadoù (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Reizhiadoù (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Reizhiadoù (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Skeudenn"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Gwrizienn"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Ouzhpennañ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lenn-skrivañ "
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taolenn"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Arvarus"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Skridennad"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Dre ziouer"
@@ -778,53 +636,75 @@ msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Kavet etrefas %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ket"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Gwelet titouroù periantel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "O staliañ ur sturier evit kartenn %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mollad %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s.\n"
+"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboù.\n"
+"Da skouer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Dibarzhoù ar mollad :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiñ ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -843,37 +723,15 @@ msgstr ""
"urzhiataer,\n"
"hogen ne raio reuz ebet."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Embrouiñ"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spisait dibarzhoù"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s.\n"
-"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboù.\n"
-"Da skouer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Dibarzhoù ar mollad :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -882,51 +740,56 @@ msgstr ""
"Kargañ ar mollad %s a zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoù all ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Re eeun eo an tremeger"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"An anv arveriad a zle bezañ ennañ lizherennoù munut, sifroù, `-' ha `_' "
"hepken"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "En implij eo an anv arveriad-se endeo"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ouzhpennañ un arveriad"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -935,32 +798,32 @@ msgstr ""
"Skrivit un arveriad\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aotren an arveriad"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Anv gwirion"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:709
-#: ../../printerdrake.pm_.c:807
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Anv arveriad"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Arlun"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -969,61 +832,57 @@ msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
"Mennout a rit lañsañ X pa adloc'hit ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Dibabit ar arveriad dre ziouer"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Dibabit ar benveg a vennit staliañ"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../any.pm_.c:851
+#: ../../any.pm_.c:848
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
-#: ../../any.pm_.c:865 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "An holl"
-#: ../../any.pm_.c:957
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Aotreiñ an holl dud"
-#: ../../any.pm_.c:957
-msgid "Custom"
-msgstr "Personelañ"
-
-#: ../../any.pm_.c:957
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "N'ev ket lodañ"
-#: ../../any.pm_.c:967 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bremanaet e tle bezañ ar pabak-mañ\n"
"Ha sur oc'h e mennit e ziuzañ ?"
-#: ../../any.pm_.c:970
+#: ../../any.pm_.c:986
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:978 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:984
+#: ../../any.pm_.c:1000
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
@@ -1032,63 +891,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:998 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:564
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:702 ../../my_gtk.pm_.c:705 ../../my_gtk.pm_.c:1034
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1588
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2279 ../../standalone/drakbackup_.c:2300
-#: ../../standalone/drakbackup_.c:2321 ../../standalone/drakbackup_.c:2339
-#: ../../standalone/drakbackup_.c:2387 ../../standalone/drakbackup_.c:2407
-#: ../../standalone/drakbackup_.c:2426 ../../standalone/drakfloppy_.c:235
-#: ../../standalone/drakfloppy_.c:384 ../../standalone/drakfont_.c:768
-#: ../../standalone/drakgw_.c:598 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:527
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Nullañ"
-
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1037
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bezit deuet mat, preizherien !"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Paour"
-#: ../../any.pm_.c:1039 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Skouer"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Uhel"
-#: ../../any.pm_.c:1041
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Uhel"
-#: ../../any.pm_.c:1042
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Ankeniet"
-#: ../../any.pm_.c:1045
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1098,7 +936,7 @@ msgstr ""
"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre dremenger."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1106,7 +944,7 @@ msgstr ""
"Gweredekaet eo bremañ an tremenger, hogen dierbedet eo c'hoazh an implij en "
"ur rouedad"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1117,13 +955,13 @@ msgstr ""
"evit kevreañ evel arval ouzh ar Genrouedad. Bremañ ez eus gwiriadennoù "
"surentez."
-#: ../../any.pm_.c:1050
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1051
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1131,7 +969,7 @@ msgid ""
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
"servijer.\n"
@@ -1139,7 +977,7 @@ msgstr ""
"servijer\n"
"o tigemer kevreadennoù a-berzh arvaloù niverus."
-#: ../../any.pm_.c:1054
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1148,25 +986,21 @@ msgstr ""
"Kemer a reomp arc'hweloù al live 4, hogen bremañ eo peurserret ar reizhiad.\n"
"Arc'hweloù surentez a zo en o muiañ"
-#: ../../any.pm_.c:1059
-msgid "Please choose the desired security level."
-msgstr "Dibabit al live surentez"
-
-#: ../../any.pm_.c:1062
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Live surentez"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Implijit libsafe gant ar servijer"
-#: ../../any.pm_.c:1065
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1067
-msgid "Security user (login or email)"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
msgstr ""
# NOTE: this message will be displayed at boot time; that is
@@ -1175,7 +1009,7 @@ msgstr ""
# 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_.c:354
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1200,52 +1034,52 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:910
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:913
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Implijit ar stokelloù %c ha %c evit diuz pe enmont zo war wel"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:916
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stokit enkas evit loc'ha¤ ar RK diuzet, 'e' evit aoza¤ an"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:919
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:922
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
-#: ../../bootloader.pm_.c:926
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1026
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Gorretaol"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1028
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Meuziad Lañsañ"
-#: ../../bootloader.pm_.c:1047
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
@@ -1259,7 +1093,8 @@ msgstr "N'ev ket skoazell.\n"
msgid "Boot Style Configuration"
msgstr "Kefluniadur goude staliañ"
-#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Restr"
@@ -1269,8 +1104,8 @@ msgstr "/_Restr"
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1313,8 +1148,8 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1457
-#: ../../standalone/drakbackup_.c:1468 ../../standalone/drakgw_.c:592
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Kefluniañ"
@@ -1335,15 +1170,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2431 ../../standalone/drakbackup_.c:3335
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:537
-#: ../../standalone/drakfont_.c:658 ../../standalone/drakfont_.c:721
-#: ../../standalone/drakfont_.c:766 ../../standalone/draknet_.c:109
-#: ../../standalone/draknet_.c:141 ../../standalone/draknet_.c:297
-#: ../../standalone/draknet_.c:436 ../../standalone/draknet_.c:522
-#: ../../standalone/draknet_.c:565 ../../standalone/draknet_.c:666
-#: ../../standalone/logdrake_.c:520
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "YA"
@@ -1446,8 +1282,8 @@ msgstr "Amerika"
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoù da gentañ mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:899
-#: ../../diskdrake/interactive.pm_.c:908 ../../diskdrake/interactive.pm_.c:962
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lennit aketus !"
@@ -1461,11 +1297,12 @@ msgstr ""
"rann\n"
"a zo a-walc'h) e deroù ar bladenn"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fazi"
@@ -1473,11 +1310,11 @@ msgstr "Fazi"
msgid "Wizard"
msgstr "Skoazeller"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Dibabit un obererezh"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1490,147 +1327,153 @@ msgstr ""
"(klikit warni, da c'houde klikit war \"Adventañ\")"
#
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Munudoù"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "marc'hañ sac'het"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Disloañ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Goullo"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:933
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "All"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoù restroù :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Krouiñ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Seurt"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Grit kentoc'h gant ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Dilemel"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Implijit ``Divarc'hañ'' da gentañ"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmañ seurt ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Dibabit un parzhadur"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Dibabit un parzhadur all"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Kuitaat"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Tremen er mod mailh"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Tremen er mod boas"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Dizober"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Kuitaat hep enrollañ"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Ac'hubiñ ent emgefreek"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Skarañ an holl"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr "Dilec'hiañ"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Dinoiñ ar bladenn galet"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioù kentañ renk"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "N'hellan ouzpennañ parzhadur ebet ken"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1638,35 +1481,35 @@ msgstr ""
"Evit kaout muioc'h a barzhadurioù, lamit unan evit ma c'hellot krouiñ ur "
"parzhadur astennet mar plij"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skrivañ an daolenn barzhañ"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Emvarc'hañ ar skoroù lem/laka"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Diuzit ar restr"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1674,11 +1517,11 @@ msgstr ""
"N'eo ket heñvel ment an daolenn barzhañ gwarezet\n"
"Kenderc'hel memestra ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Ho evezh"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1686,126 +1529,133 @@ msgstr ""
"Lakait ur bladennig el lenner\n"
"Kollet e vo holl roadoù ar bladennig-se"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhañ"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Diskouez titouroù"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:535
-#: ../../diskdrake/interactive.pm_.c:562 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Poent marc'hañ"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Parzhadur"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:629
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Adventañ"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:682
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Dilec'hiañ"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Furmadiñ"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Marc'hañ"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ouzhpennañ da RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ouzhpennañ da LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Divarc'hañ"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Lemel diwar LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Kemmañ RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Implij da saveteiñ"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Krouiñ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Rann kregiñ : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ment e Mo : "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:782
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroù : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1042
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Poent marc'hañ : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Dibarzh : "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Kemmañ seurt ar parzhadur"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:533
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Pelec'h e mennit marc'hañ ar restr saveteiñ %s ?"
-#: ../../diskdrake/interactive.pm_.c:534 ../../diskdrake/interactive.pm_.c:561
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'hañ an drobarzhell %s ?"
-#: ../../diskdrake/interactive.pm_.c:540
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1813,128 +1663,135 @@ msgstr ""
"N'hellan ket dizober ar poent marc'hañ dre m'eo implijet ar parzhadur-se\n"
"evit saveteiñ. Lamit ar saveteiñ da gentañ"
-#: ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
-#: ../../diskdrake/interactive.pm_.c:585 ../../diskdrake/interactive.pm_.c:644
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Oc'h adventañ"
-#: ../../diskdrake/interactive.pm_.c:617
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziñ holl roadoù ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:624
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:629
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"
-#: ../../diskdrake/interactive.pm_.c:630
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ment nevez e Mo : "
-#: ../../diskdrake/interactive.pm_.c:683
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../diskdrake/interactive.pm_.c:684
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Rann"
-#: ../../diskdrake/interactive.pm_.c:685
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-#: ../../diskdrake/interactive.pm_.c:688
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "O tilec'hiañ"
-#: ../../diskdrake/interactive.pm_.c:688
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "O tilec'hiañ ur parzhadur..."
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennañ"
-#: ../../diskdrake/interactive.pm_.c:706 ../../diskdrake/interactive.pm_.c:724
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nevez"
-#: ../../diskdrake/interactive.pm_.c:722
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Dibabit da be LVM ouzhpennañ"
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Anv LVM?"
-#: ../../diskdrake/interactive.pm_.c:767
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-mañ evit saveteiñ"
-#: ../../diskdrake/interactive.pm_.c:779
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Saveteiñ"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiñ : "
-#: ../../diskdrake/interactive.pm_.c:785
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Anv gwirion"
-#: ../../diskdrake/interactive.pm_.c:788
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiñ all endeo, dibabit unan all"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Dibarzhoù marc'hañ"
-#: ../../diskdrake/interactive.pm_.c:819
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "A bep sort"
-#: ../../diskdrake/interactive.pm_.c:882 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "trobarzhell"
-#: ../../diskdrake/interactive.pm_.c:883
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "live"
-#: ../../diskdrake/interactive.pm_.c:884
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ment diaoz"
-#: ../../diskdrake/interactive.pm_.c:899
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-mañ."
-#: ../../diskdrake/interactive.pm_.c:914
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../diskdrake/interactive.pm_.c:932
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bremanaet e tle bezañ ar pabak-mañ\n"
+"Ha sur oc'h e mennit e ziuzañ ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1803,7 @@ msgstr ""
"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
"ezhomm a /boot"
-#: ../../diskdrake/interactive.pm_.c:936
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1960,145 +1817,145 @@ msgstr ""
"Ma vennit implijout ar merour loc'hañ LILO, taolit pled da ouzhpennañ ur "
"parzhadur /boot"
-#: ../../diskdrake/interactive.pm_.c:942
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:962
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezañ skrivet war bladenn eo taolenn barzhañ an ardivink %s !"
-#: ../../diskdrake/interactive.pm_.c:966
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'hañ a-raok ma talvezo ar c'hemm"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiñ ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "O furmadiñ"
-#: ../../diskdrake/interactive.pm_.c:980
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../diskdrake/interactive.pm_.c:981
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiñ ar parzhadur %s"
-#: ../../diskdrake/interactive.pm_.c:992
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid sac'het"
-#: ../../diskdrake/interactive.pm_.c:992
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Krouiñ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:993
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Krouiñ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:1008
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Adskrivañ %s"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Spisterioù"
-#: ../../diskdrake/interactive.pm_.c:1022
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1043
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Trobarzhell : "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1056
-#: ../../diskdrake/interactive.pm_.c:1120
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Seurt : "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Anv: "
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiñ : rann %s\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Ment: %s"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: ../../diskdrake/interactive.pm_.c:1065
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Kranenn %d da granenn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ket furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: ../../diskdrake/interactive.pm_.c:1069
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1071
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Restr(où) saveteiñ : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1072
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2106,27 +1963,27 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'hañ MS-DOS, ket evit lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1074
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: ../../diskdrake/interactive.pm_.c:1075
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ment diaoz %s\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Pladennoù RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiñ : %s"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2134,7 +1991,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1084
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2142,64 +1999,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Ment: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Titouroù: "
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Pladennoù LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhañ : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "war bus %d Nn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1122
+#: ../../diskdrake/interactive.pm_.c:1157
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Parzhadur"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Seurt ar reizhiad restroù : "
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "An tremegerioù ne glot ket"
-#: ../../diskdrake/interactive.pm_.c:1146
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1147
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2214,33 +2071,63 @@ msgstr "Kemmañ seurt ar parzhadur"
msgid "Please click on a medium"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilesadur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "dedennus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domani NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Servijer DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiñ er seurt %s eus %s a zo sac'het"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiñ %s er seurt %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'hañ %s : %s"
@@ -2257,57 +2144,57 @@ msgstr "gant /usr"
msgid "server"
msgstr "servijer"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Poentoù marc'hañ a rank kregiñ gant /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'hañ %s endeo\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
+#: ../../fsedit.pm_.c:500
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -2316,10 +2203,262 @@ msgstr ""
"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en ho "
"ardivinkaj mar plij "
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "N'hoc'h eus parzhadur ebet !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Dilesadur"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Rummel"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memor kartenn (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "O furmadiñ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Kemmañ seurt ar parzhadur"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Kuitaat"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "Skoazell"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "Marc'hañ"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Logodenn"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memor kartenn (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Nullañ"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Logodenn"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#, fuzzy
+msgid "Description"
+msgstr "Spisait dibarzhoù"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilesadur"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Diuzit ar restr"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Trobarzhell an dreuzell"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nozelenn"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Dinoiñ ar bladenn galet"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gwelet titouroù periantel"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Diskouez titouroù"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Kefluniañ al logodenn"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Poent marc'hañ doubl %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Gortozit mar plij"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d eilenn"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Embrouiñ"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2333,7 +2472,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2404,9 +2543,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2597,7 +2735,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2609,9 +2747,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2657,21 +2794,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2687,9 +2823,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2710,9 +2846,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2823,38 +2958,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2929,11 +3058,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2957,7 +3086,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2972,7 +3101,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2987,7 +3116,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3003,7 +3132,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3012,23 +3141,23 @@ msgstr ""
"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
"a vez anvet ttyS0 gant Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3050,7 +3179,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3072,7 +3201,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3080,7 +3209,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3101,7 +3230,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3127,7 +3256,7 @@ msgstr ""
"Hogen\n"
"neuze e vo ret deoc'h kaout ur bladennig loc'hañ evit loc'hañ anezho."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3143,29 +3272,28 @@ msgstr ""
"Nemet ma ouifec'h resis ar pezh a rit, dibabit \"Rann gentañ\n"
"ar bladenn (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3174,7 +3302,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3199,11 +3327,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3213,9 +3341,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3227,7 +3354,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3253,7 +3380,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3280,18 +3407,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3299,12 +3425,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3320,14 +3445,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3338,7 +3463,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3346,12 +3471,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3366,26 +3491,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "N'hellañ ket implijout ar skignañ hep domani NIS"
-#: ../../install_any.pm_.c:794
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_any.pm_.c:798
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:810
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:832 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
@@ -3421,81 +3546,81 @@ msgstr ""
"\n"
"Kenderc'hel evelato ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
#, fuzzy
msgid "Use free space"
msgstr "Implij da saveteiñ"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
#, fuzzy
msgid "Use existing partitions"
msgstr "O furmadiñ parzhadurioù"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "O klask assevel an daolenn barzhañ"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
#, fuzzy
msgid "Use the Windows partition for loopback"
msgstr "Implij da saveteiñ"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Dibabit ar mentoù"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ment ar parzhadur gwrizienn e Mo : "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ment ar parzhadur disloañ e Mo : "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
#, fuzzy
msgid "Which partition do you want to resize?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
msgid "Resizing Windows partition"
msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
+#: ../../install_interactive.pm_.c:137
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3516,54 +3641,54 @@ msgstr ""
"ar\n"
"parzhadur-se, ha gwareziñ ho roadoù. Pa vezit sur, gwaskit \"Mat eo\""
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
#, fuzzy
msgid "Which size do you want to keep for Windows on"
msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "parzhadur %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, fuzzy, c-format
msgid "FAT resizing failed: %s"
msgstr "Adventañ ent emgefreek sac'het"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Chetan an holl planedenn"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Chetan Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "O furmadiñ parzhadurioù"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Implijit fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, fuzzy, c-format
msgid ""
"You can now partition %s.\n"
@@ -3572,12 +3697,12 @@ msgstr ""
"Gallout a rit bremañ parzhañ ho pladenn galet %s\n"
"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "N'hoc'h eus parzhadur windows ebet !"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "N'hellan ouzpennañ parzhadur ebet ken"
@@ -3586,16 +3711,16 @@ msgstr "N'hellan ouzpennañ parzhadur ebet ken"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Seurt taolenn barzhañ : %s\n"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "O lañsañ ar rouedad"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "O tizenaouiñ ar rouedad"
@@ -3607,12 +3732,12 @@ msgstr ""
"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n"
"Kendalc'hit war ho mar."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Poent marc'hañ doubl %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3620,12 +3745,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Lenner pladennig hegerz ebet"
@@ -3635,7 +3760,7 @@ msgstr "Lenner pladennig hegerz ebet"
msgid "Entering step `%s'\n"
msgstr "O kregiñ gant al lankad `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3643,127 +3768,81 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Renkad staliañ"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Dibabit unan eus ar renkadoù staliañ a-heul mar plij :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ment hollek ar strolladoù hoc'h eus diuzet a zo war-dro %d Mo.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ma vennit staliañ nebeutoc'h eget ar ment-se,\n"
-"diuzit an dregantad a bakadoù a vennit staliañ.\n"
-"\n"
-"Un dregantad izel a stalio hepken ar pakadoù pouezusañ;\n"
-"un dregantad a 100%% a stalio an holl bakadoù diuzet."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoù-se.\n"
-"\n"
-"Ma vennit staliañ nebeutoc'h eget se,\n"
-"diuzit an dregantad a bakadoù a vennit staliañ.\n"
-"Un dregantad izel a stalio hepken ar pakadoù pouezusañ;\n"
-"un dregantad a %d%% a stalio kement a bakadoù ma 'z eus tu."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Dregantad a bakadoù da staliañ"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Diuzadenn strollad pakadoù"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Diuz pakadoù unan hag unan"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ment hollek : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pakad siek"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Anv : %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Stumm : %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ment : %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Talvoudegezh : %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
#, fuzzy
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet/lamet"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "N'hellit ket diuz/andiuz ar pakad-mañ"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hemañ a zo ur pakad ret, n'hell ket bezañ andiuzet"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -3771,77 +3850,78 @@ msgstr ""
"Bremanaet e tle bezañ ar pabak-mañ\n"
"Ha sur oc'h e mennit e ziuzañ ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "N'hellit ket andiuz ar pakad-mañ. Ret eo dezhañ bezañ bremanaet"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Staliañ"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Enrollañ war bladennig"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Diuz pakadoù unan hag unan"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Distaliañ"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:525
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Dibabit ar pakadoù a vennit staliañ"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "O staliañ"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "O vrasjediñ"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Amzer a chom"
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
msgid "Please wait, preparing installation..."
msgstr "Gortozit mar plij, o prientiñ ar staliadur"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakad"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "O staliañ ar pakad %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aotren"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#, fuzzy
msgid "Refuse"
msgstr "Adventañ"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:782
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3856,17 +3936,17 @@ msgstr ""
"eo da c'houde.\n"
"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:794
-#: ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ur fazi a zo bet en ur rummañ pakadoù :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
@@ -3911,11 +3991,11 @@ msgstr "Ur fazi a zo bet"
msgid "Do you really want to leave the installation?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4036,106 +4116,110 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1017
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
#, fuzzy
msgid "Here is the full list of keyboards available"
msgstr "stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Pe renkad staliañ a fell deoc'h ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Staliañ/Bremanaat"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Erbedet"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Mailh"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Bremanaat"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Bremanaat pakadoù hep ken"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porzh al logodenn"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "O kefluniañ kartennoù PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Kefluniañ IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
+#: ../../install_steps_interactive.pm_.c:337
msgid "No partition available"
msgstr "parzhadur hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Dibabit at poentoù marc'hañ"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4148,7 +4232,7 @@ msgstr ""
"N'hellañ ket lenn ho taolenn barzhañ, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioù siek"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4156,120 +4240,137 @@ msgstr ""
"Ne c'hellas ket DiskDrake lenn ent reizh an daolenn barzhañ.\n"
"Kendalc'hit war ho mar !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Parzhadur gwrizienn kavet ebet"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Parzhadur gwrizienn"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Dibabit ar parzhadur a vennit furmadiñ"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Gwiriañ ar bloc'hoù siek ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "O furmadiñ parzhadurioù"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "O krouiñ hag o furmadiñ ar restr saveteiñ %s"
-#: ../../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "O klask ar pakadoù hegerz"
+
+#: ../../install_steps_interactive.pm_.c:491
msgid "Looking for available packages..."
msgstr "O klask ar pakadoù hegerz"
-#: ../../install_steps_interactive.pm_.c:479
+#: ../../install_steps_interactive.pm_.c:495
msgid "Finding packages to upgrade..."
msgstr "O kavout pakadoù da vremanaat"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
+
+#: ../../install_steps_interactive.pm_.c:516
#, fuzzy, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliañ pe vremanaat"
-#: ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:541
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Assevel adalek ar pladennig"
-#: ../../install_steps_interactive.pm_.c:543
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Assevelañ adalek ar pladennig"
-#: ../../install_steps_interactive.pm_.c:543
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Diuzadenn pakadoù"
-#: ../../install_steps_interactive.pm_.c:548
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Enrollañ war bladennig"
-#: ../../install_steps_interactive.pm_.c:628
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Dibabit pakadoù da staliañ"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Gant X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:732
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4279,16 +4380,16 @@ msgstr ""
"Ma n'hoc'h eus hini eus ar CDoù-se, gwaskit Nullañ.\n"
"Ma fazi deoc'h lod eus ar CDoù, andiuzit anezho ha gwaskit Mat eo."
-#: ../../install_steps_interactive.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom skridennet \"%s\""
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "O prientiñ ar staliadur"
-#: ../../install_steps_interactive.pm_.c:766
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4297,21 +4398,21 @@ msgstr ""
"O staliañ ar pakad %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Kefluniadur goude staliañ"
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4383,7 +4484,7 @@ msgstr ""
"Altadena California 91001\n"
"SUA"
-#: ../../install_steps_interactive.pm_.c:883
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4395,153 +4496,182 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:932
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
-#: ../../install_steps_interactive.pm_.c:939
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: ../../install_steps_interactive.pm_.c:944
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:945
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Servijer NTP"
-#: ../../install_steps_interactive.pm_.c:986
-#: ../../install_steps_interactive.pm_.c:994
+#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1014
#, fuzzy
msgid "Remote CUPS server"
msgstr "Steud a-bell"
-#: ../../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "Moullerez lec'hel"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1013 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Evit diverriñ"
-#: ../../install_steps_interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Logodenn"
-#: ../../install_steps_interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Takad-eur"
-#: ../../install_steps_interactive.pm_.c:1019 ../../printerdrake.pm_.c:2279
-#: ../../printerdrake.pm_.c:2357
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Moullerez"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Kartenn ISDN"
-#: ../../install_steps_interactive.pm_.c:1024
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Kartenn son"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Kartenn pellwel"
-#: ../../install_steps_interactive.pm_.c:1066
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1068
#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Restroù lec'hel"
-#: ../../install_steps_interactive.pm_.c:1077
-#: ../../install_steps_interactive.pm_.c:1078 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Termeniñ tremenger root"
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: ../../install_steps_interactive.pm_.c:1090 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Servijer LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Dilesadur"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Titouroù"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servijer NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4571,19 +4701,19 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:1159
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Lenner pladennig kentañ"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:1161 ../../printerdrake.pm_.c:1851
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:1166
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4611,7 +4741,7 @@ msgstr ""
"ho reizhiad ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1172
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4620,29 +4750,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:1184
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1224
msgid "Creating bootdisk..."
msgstr "O krouiñ ar bladenn loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1198
+#: ../../install_steps_interactive.pm_.c:1231
msgid "Preparing bootloader..."
msgstr "O prientiñ ar c'harger loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1209
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4650,11 +4780,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot?"
-#: ../../install_steps_interactive.pm_.c:1218
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4662,16 +4792,16 @@ msgstr ""
"Fazi en ur staliañ aboot,\n"
"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
-#: ../../install_steps_interactive.pm_.c:1225
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Staliañ ar c'harger loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1264
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../install_steps_interactive.pm_.c:1239
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4682,17 +4812,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1283
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1287
+#: ../../install_steps_interactive.pm_.c:1310
msgid "Creating auto install floppy..."
msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1298
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4702,7 +4832,8 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremañ ?"
-#: ../../install_steps_interactive.pm_.c:1309
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4713,7 +4844,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4727,18 +4858,22 @@ msgstr ""
"sellit ouzh ar meneger fazioù hegerz e \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Titouroù war gefluniañ ho reizhiad a zo hegerz e rannbennad Goude\n"
"Staliañ Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1328
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4747,16 +4882,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1333
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Emgefreek"
-#: ../../install_steps_interactive.pm_.c:1333
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "Adkargañ"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Diuz pakadoù unan hag unan"
@@ -4784,411 +4919,407 @@ msgstr ""
msgid "Choose a file"
msgstr "Dibabit ur restr"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Barek"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
#, fuzzy
msgid "Basic"
msgstr "Diazez"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Gortozit mar plij"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dibab fall, klaskit adarre\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Nozel `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Mennout a rit implijout SILO ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tchek (QWERTZ)"
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alaman"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spagnol"
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnek"
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Gall"
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvegek"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polonek"
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusiek"
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svedek"
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Stokellaoueg RU"
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Stokellaoueg SUA"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeniek (kozh)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeniek (skriverez)"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjanek (latin)"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarek (BDS)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilek (ABNT-2)"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:193
#, fuzzy
msgid "Belarusian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suis (reizhadur alaman)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suis (reizhadur gall)"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tchek (QWERTY)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alaman (stokell marv ebet)"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danek"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegek)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svedek)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniek"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Gresian"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungarian"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatek"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelian"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelian (soniadel)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:215
#, fuzzy
msgid "Iranian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandek"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Reizhadur Stokellaoueg RU"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Amerikan Latin"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniek AZERTY (kozh)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniek AZERTY (nevez)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroù\""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Titouroù"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandek"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalek"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadian (Kebek)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovek"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakek (QWERTZ)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakek (QWERTY)"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Yougoslaviek (reizhadur latin)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Taolenn"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkek (hengounel doare \"F\")"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkek (arnevez doare \"Q\")"
-#: ../../keyboard.pm_.c:288
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:260
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroù\""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yougoslaviek (latin)"
-#: ../../keyboard.pm_.c:301
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:302
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:303
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:304
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:305
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:306
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:307
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:308
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:309
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5201,7 +5332,31 @@ msgstr "Marc'hañ kelc'hiek %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:832
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Niverenn bellgomz"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Furmadiñ parzhadurioù"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5242,10 +5397,6 @@ msgstr "1 nozelenn"
msgid "Generic 2 Button Mouse"
msgstr "Logodenn rummel 2 nozelenn"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Rummel"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rodel"
@@ -5310,53 +5461,53 @@ msgstr "ebet"
msgid "No mouse"
msgstr "Logodenn ebet"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
#, fuzzy
msgid "Please test the mouse"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "FIÑV HO RODELL !"
-#: ../../my_gtk.pm_.c:666
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:701
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Disoc'h"
-#: ../../my_gtk.pm_.c:701 ../../printerdrake.pm_.c:1590
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "A heul ->"
-#: ../../my_gtk.pm_.c:702 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Diaraog"
-#: ../../my_gtk.pm_.c:1034
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ../../my_gtk.pm_.c:1098 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
msgid "Info"
msgstr "Titouroù"
-#: ../../my_gtk.pm_.c:1119
+#: ../../my_gtk.pm_.c:1141
msgid "Expand Tree"
msgstr "Astenn ar wezenn"
-#: ../../my_gtk.pm_.c:1120
+#: ../../my_gtk.pm_.c:1142
msgid "Collapse Tree"
msgstr "Plegañ ar wezenn"
-#: ../../my_gtk.pm_.c:1121
+#: ../../my_gtk.pm_.c:1143
msgid "Toggle between flat and group sorted"
msgstr "Gwintañ etre kompez ha rummet dre strollad"
@@ -5401,7 +5552,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
#, fuzzy
msgid "Choose the network interface"
msgstr "Dibabit ar ment nevez"
@@ -5438,10 +5589,10 @@ msgid "Host name"
msgstr "Anv an ostiz"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Kefluniadur ar rouedad"
@@ -5577,103 +5728,103 @@ msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
msgid "Dialup options"
msgstr "Dibarzhoù sifrennañ"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Anv ar gevreadenn"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
#, fuzzy
msgid "Phone number"
msgstr "Niverenn bellgomz"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Anv ereañ"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Diazezet war ur skrid"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Diazezet war un dermenell"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Anv ar domani"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Servijer DNS kentañ (da zilenn)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Eil servijer DNS (da zilenn)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Anv ar gevreadenn"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Anv ar gevreadenn"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5685,12 +5836,12 @@ msgid ""
"Press OK to continue."
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5698,7 +5849,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -5706,100 +5857,106 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Dibabit ar ment nevez"
-#: ../../network/netconnect.pm_.c:172
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mod mailh"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "O tinoiñ trobarzhelloù..."
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Poent marc'hañ doubl %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "kavoutet %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "kavoutet war %s"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "kartenn(où) ethernet kavoutet"
-#: ../../network/netconnect.pm_.c:206
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Dibabit ar benveg a vennit staliañ"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:231
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "Mennout a rit implijout aboot ?"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:256
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5807,20 +5964,20 @@ msgid ""
"%s"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:271
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -5855,12 +6012,12 @@ msgstr "O kefluniañ an drobarzhell rouedad %s"
msgid " (driver %s)"
msgstr "Servijer XFree86 : %s\n"
-#: ../../network/network.pm_.c:311 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Chomlec'h IP"
-#: ../../network/network.pm_.c:312 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maskl rouedad"
@@ -5877,7 +6034,7 @@ msgstr "IP emgefreek"
msgid "Start at boot"
msgstr "Krouiñ ur bladennig loc'hañ"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:714
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
@@ -5941,7 +6098,7 @@ msgstr "Kefluniañ ar proksioù"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../network/tools.pm_.c:46 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Kefluniañ ur rouedad"
@@ -5971,44 +6128,44 @@ msgstr "Kefluniañ ar proksioù"
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartenn"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memor kartenn (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartenn"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartenn"
-#: ../../network/tools.pm_.c:89 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartenn"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider phone number"
msgstr "Niverenn bellgomz"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dibarzhoù ar voullerez (da zilenn)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dibarzhoù ar voullerez (da zilenn)"
@@ -6017,27 +6174,28 @@ msgstr "Dibarzhoù ar voullerez (da zilenn)"
msgid "Choose your country"
msgstr "Dibabit ho stokellaoueg"
-#: ../../network/tools.pm_.c:96 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
#, fuzzy
msgid "Dialing mode"
msgstr "Anv domani"
-#: ../../network/tools.pm_.c:97 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Anv ar gevreadenn"
-#: ../../network/tools.pm_.c:98 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Anv ar gevreadenn"
-#: ../../network/tools.pm_.c:99 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
#, fuzzy
msgid "Account Login (user name)"
msgstr "Poent marc'hañ"
-#: ../../network/tools.pm_.c:100 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
#, fuzzy
msgid "Account Password"
msgstr "Tremenger"
@@ -6046,15 +6204,15 @@ msgstr "Tremenger"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:600
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "marc'hañ sac'het : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6064,214 +6222,214 @@ msgstr ""
"Fiñval ar parzhadurioù kentañ derez evit ma vo an toull stok ouzh ar "
"parzhadurioù astennet eo an diskoulm"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Restr gwareziñ siek"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivañ er restr %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "a rankfec'h kaout"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "a-bouez"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "brav-tre"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "brav"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "marteze"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Moullerez lec'hel"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Remote printer"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Steud a-bell"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:736
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd a-bell"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servijer moullañ"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:740
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Trobarzhell ar voullerez"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2733
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Moullerezioù lec'hel"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Moullerezio* a-bell"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", Mouluriez USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fazi en ur skrivañ er restr %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1138
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mollad %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ar servijer SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2394
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2673 ../../printerdrake.pm_.c:2700
-#: ../../printerdrake.pm_.c:2870 ../../printerdrake.pm_.c:2872
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Dre ziouer)"
@@ -6290,12 +6448,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2457
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Kefluniadur"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Steud a-bell"
@@ -6326,7 +6484,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:864
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6335,7 +6493,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:857
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
#, fuzzy
msgid "Port"
msgstr "Paour"
@@ -6345,17 +6503,13 @@ msgstr "Paour"
msgid "Automatic CUPS configuration"
msgstr "Kefluniadur goude staliañ"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Amprouiñ ar porzhioù"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2440
-#: ../../printerdrake.pm_.c:2559
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6368,13 +6522,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6392,12 +6546,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6411,11 +6565,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6425,35 +6579,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Dilesadur"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Amprouiñ ar porzhioù"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Poent marc'hañ doubl %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Moullerez USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6461,42 +6619,42 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
msgstr "N'ev ket Moullerez lec'hel!\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6504,7 +6662,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6512,72 +6670,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or an "
-"HP LaserJet 2200?"
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "O staliañ ar pakad %s"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:485
msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:507
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "O staliañ ar pakad %s"
-#: ../../printerdrake.pm_.c:519
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "O staliañ pakadoù..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:536
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:546 ../../printerdrake.pm_.c:1020
-#: ../../printerdrake.pm_.c:1134
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6587,31 +6754,31 @@ msgstr ""
"pourvezañ anv ostiz ar servijer moullañ hag anv as steud\n"
"war ar servijer-se ma zlefe bezañ kaset an dleadoù moullañ."
-#: ../../printerdrake.pm_.c:628
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:629
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:632
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:636
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dibarzhoù moullañ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6625,35 +6792,35 @@ msgstr ""
"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
"ditour a anv arveriad, tremenger ha strollad labour en implij."
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Anv ar servijer SMB"
-#: ../../printerdrake.pm_.c:707
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:708
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Anv rannet"
-#: ../../printerdrake.pm_.c:711
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Strollad labour"
-#: ../../printerdrake.pm_.c:718
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:722
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6677,7 +6844,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6686,7 +6853,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6694,11 +6861,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6711,28 +6878,28 @@ msgstr ""
"anv ostiz TCP/IP !) kement hag anv ar steud moullañ evit ar voullerez\n"
"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-#: ../../printerdrake.pm_.c:805
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servijer moullañ"
-#: ../../printerdrake.pm_.c:806
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Anv ar steud moullañ"
-#: ../../printerdrake.pm_.c:811
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:815
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6740,61 +6907,56 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Anv ar voullerez"
-#: ../../printerdrake.pm_.c:860
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Dibarzhoù ar voullerez"
-#: ../../printerdrake.pm_.c:889 ../../printerdrake.pm_.c:891
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
#, fuzzy
msgid "Printer Device URI"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:890
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:905
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1006
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Anv ar moullerez"
-#: ../../printerdrake.pm_.c:1008
-#, fuzzy
-msgid "Description"
-msgstr "Spisait dibarzhoù"
-
-#: ../../printerdrake.pm_.c:1009
+#: ../../printerdrake.pm_.c:1031
#, fuzzy
msgid "Location"
msgstr "Titouroù"
-#: ../../printerdrake.pm_.c:1023
+#: ../../printerdrake.pm_.c:1045
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1114
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1115
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6809,28 +6971,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1120 ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ha reizh eo ?"
-#: ../../printerdrake.pm_.c:1121 ../../printerdrake.pm_.c:1122
-#: ../../printerdrake.pm_.c:1125
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:1142
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../printerdrake.pm_.c:1143
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6839,18 +7001,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1146
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1222
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Kefluniañ ar modem"
-#: ../../printerdrake.pm_.c:1223
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6860,12 +7022,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1266 ../../printerdrake.pm_.c:1293
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../printerdrake.pm_.c:1267
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6873,7 +7035,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1294
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6886,7 +7048,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1510
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6896,34 +7058,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1519
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1523
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1528
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1567
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"
-#: ../../printerdrake.pm_.c:1584
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Amprouiñ ar porzhioù"
-#: ../../printerdrake.pm_.c:1585
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6931,45 +7093,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:1592
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Diorren"
-#: ../../printerdrake.pm_.c:1595
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:1600
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:1604
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:1612 ../../printerdrake.pm_.c:1749
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:1637
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6985,7 +7147,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:1641
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6995,16 +7157,16 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:1648
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1669 ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7013,15 +7175,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1689
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:1708
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7030,49 +7192,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1695 ../../printerdrake.pm_.c:1734
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1698
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1705 ../../printerdrake.pm_.c:1715
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1710 ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1727
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7082,7 +7244,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1731
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7091,31 +7253,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1740 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:1747 ../../printerdrake.pm_.c:1748
-#: ../../printerdrake.pm_.c:2719 ../../standalone/drakbackup_.c:743
-#: ../../standalone/drakbackup_.c:2448 ../../standalone/drakfont_.c:580
-#: ../../standalone/drakfont_.c:792
-#, fuzzy
-msgid "Close"
-msgstr "Logodenn USB"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:1743 ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:1744 ../../printerdrake.pm_.c:1756
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:1746
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Logodenn USB"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Dibarzhoù ar voullerez"
-#: ../../printerdrake.pm_.c:1768
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7123,37 +7296,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1775
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1797 ../../printerdrake.pm_.c:2224
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1817 ../../printerdrake.pm_.c:1845
-#: ../../printerdrake.pm_.c:1880
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7163,51 +7336,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1823
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1827
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1828
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1832
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1833 ../../printerdrake.pm_.c:1850
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1846
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7215,61 +7388,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1854
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1859
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:1915
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1881
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1935
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1898 ../../printerdrake.pm_.c:1969
-#: ../../printerdrake.pm_.c:1981
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
msgid "Starting network..."
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:1933 ../../printerdrake.pm_.c:1937
-#: ../../printerdrake.pm_.c:1939
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:1934
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skramm ket kefluniet"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7277,12 +7450,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1938
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Kefluniañ ar rouedad"
-#: ../../printerdrake.pm_.c:1971
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7292,34 +7465,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1972
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
msgid "Restarting printing system..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2020
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Uhel"
-#: ../../printerdrake.pm_.c:2020
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Ankeniet"
-#: ../../printerdrake.pm_.c:2021
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2022
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7334,11 +7507,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2054
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2055
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7352,69 +7525,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2078 ../../printerdrake.pm_.c:2116
-#: ../../printerdrake.pm_.c:2146 ../../printerdrake.pm_.c:2179
-#: ../../printerdrake.pm_.c:2284
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2150
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2208
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2209
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../printerdrake.pm_.c:2242
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
msgid "Installing Foomatic..."
msgstr "O staliañ ar pakad %s"
-#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2351
-#: ../../printerdrake.pm_.c:2736 ../../printerdrake.pm_.c:2806
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Dibarzhoù ar voullerez"
-#: ../../printerdrake.pm_.c:2321
+#: ../../printerdrake.pm_.c:2389
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2338 ../../printerdrake.pm_.c:2893
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:2358
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Mennout a rit kefluniañ ur voullerez ?"
-#: ../../printerdrake.pm_.c:2370
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2418
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:2422
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7425,7 +7598,7 @@ msgstr ""
"Setu da heul ar steudadoù moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../printerdrake.pm_.c:2423
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7435,138 +7608,142 @@ msgstr ""
"Setu da heul ar steudadoù moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../printerdrake.pm_.c:2449
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:2472 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Boas"
-#: ../../printerdrake.pm_.c:2628 ../../printerdrake.pm_.c:2678
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Kuitaat"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2714
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Kefluniañ ar modem"
-#: ../../printerdrake.pm_.c:2716
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2720
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2780
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2728 ../../printerdrake.pm_.c:2799
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2729 ../../printerdrake.pm_.c:2800
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2824
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2833
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:2743 ../../printerdrake.pm_.c:2835
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2837
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2789
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2813
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2814
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2818 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2827 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2831
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2839
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2841
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
@@ -7651,24 +7828,62 @@ msgstr "An tremegerioù ne glot ket"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "N'hellan ket ouzhpennañ ur parzhadur da RAID md%d _furmadet_"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "N'hellan ket skrivañ e %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid sac'het"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid sac'het (raidtools a vank emichañs ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ket a-walc'h a parzhadurioù evit RAID live %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Ret eo implijout al live-mañ gant evezh. Ober a ra d'ho reizhiad bezañ\n"
+"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
+"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre dremenger."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
+"servijer.\n"
+"Uhel a-walc'h eo bremañ ar surentez evit implijout ar reizhiad evel ur "
+"servijer\n"
+"o tigemer kevreadennoù a-berzh arvaloù niverus."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Kefluniadur"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Parzhadur"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7723,7 +7938,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:414
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7791,7 +8006,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7868,7 +8083,7 @@ msgstr ""
"dro\n"
"war ardivinkoù anezho servijerien komenadoù a implij ar reizhiad RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:417
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -7969,7 +8184,7 @@ msgstr "dedennus"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:923
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Reizhiad/Diazez"
@@ -8093,6 +8308,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Anv ar gevreadenn"
@@ -8194,6 +8410,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "O staliañ pakadoù..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Adereit ouzh %s evit bevaat ar c'hemmoù mar plij"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8202,6 +8427,159 @@ msgstr ""
"N'hellañ ket lenn ho taolenn barzhañ, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioù siek"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Kefluniañ ar proksioù"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Stlennvonioù"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Stlennvonioù"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Krouiñ ur bladennig loc'hañ"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Ouzhpennañ un arveriad"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Skoazell"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Dilemel"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Diuzit ar restr"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Ouzhpennañ un arveriad"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Kefluniañ IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "Kefluniañ X"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Lakait ur bladennig el lenner %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Lenner pladennig hegerz ebet"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fazi!"
@@ -8255,40 +8633,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gourc'hemennoù!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Staliañ"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Ouzhpennañ un arveriad"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../standalone/drakbackup_.c:438
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:439
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8296,7 +8674,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:443
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8304,700 +8682,767 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:465
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:544 ../../standalone/drakbackup_.c:591
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:592 ../../standalone/drakbackup_.c:656
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:605
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:655
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:663
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-" FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:676
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../standalone/drakbackup_.c:717 ../../standalone/drakbackup_.c:728
-#: ../../standalone/drakbackup_.c:739 ../../standalone/drakfont_.c:788
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Diuzadenn strollad pakadoù"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:779
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:780
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:781
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:782
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:783
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:784
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:801
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:828
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:829 ../../standalone/drakbackup_.c:853
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:851 ../../standalone/drakfont_.c:828
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Lemel ar steudad"
-#: ../../standalone/drakbackup_.c:889
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:928
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:954
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:957
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:962
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:978
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Tremenger ebet"
-#: ../../standalone/drakbackup_.c:1042 ../../standalone/drakbackup_.c:2038
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1049 ../../standalone/drakbackup_.c:2046
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Diuzit lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1075 ../../standalone/drakbackup_.c:2879
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078 ../../standalone/drakbackup_.c:2883
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
#
-#: ../../standalone/drakbackup_.c:1084 ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../standalone/drakbackup_.c:1090 ../../standalone/drakbackup_.c:2901
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1096
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:1102
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1143
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:1146
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1152 ../../standalone/drakbackup_.c:1193
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1185 ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Taolenn"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1585
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
+
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1287 ../../standalone/drakbackup_.c:1291
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Seurt"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1288 ../../standalone/drakbackup_.c:1292
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289 ../../standalone/drakbackup_.c:1293
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1290 ../../standalone/drakbackup_.c:1294
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1302
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:1307
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Implijout gwelladur ar bladenn galet ?"
-
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Rouedad/Diaouled"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1359
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1401
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Petra"
-#: ../../standalone/drakbackup_.c:1406
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Pelec'h"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Pa"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Dibarzhoù ar mollad :"
-#: ../../standalone/drakbackup_.c:1435 ../../standalone/drakbackup_.c:2791
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1453
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:1455
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1466
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Kefluniañ reizhiadoù restroù"
-#: ../../standalone/drakbackup_.c:1532
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1535
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1618
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1622
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1624
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1625
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Trobarzhell al logodenn : %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1626
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Parzhadur"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1629
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1631
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1633
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1743
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1776
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1777
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1876
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1894
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1912
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1962
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1992
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2073
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Dibabit seurt ho logodenn, mar plij."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Diuzit lugerezh ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Assevel adalek ar pladennig"
-#: ../../standalone/drakbackup_.c:2075
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2133
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2135
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "All"
-#: ../../standalone/drakbackup_.c:2141
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Staliañ ar reizhiad"
-#: ../../standalone/drakbackup_.c:2142
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2150
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Neuziet"
-#: ../../standalone/drakbackup_.c:2256 ../../standalone/drakbackup_.c:2281
-#: ../../standalone/drakbackup_.c:2302 ../../standalone/drakbackup_.c:2323
-#: ../../standalone/drakbackup_.c:2341 ../../standalone/drakbackup_.c:2373
-#: ../../standalone/drakbackup_.c:2389 ../../standalone/drakbackup_.c:2409
-#: ../../standalone/drakbackup_.c:2428 ../../standalone/drakbackup_.c:2450
-#: ../../standalone/drakfont_.c:578
-msgid "Help"
-msgstr "Skoazell"
-
-#: ../../standalone/drakbackup_.c:2259 ../../standalone/drakbackup_.c:2286
-#: ../../standalone/drakbackup_.c:2305 ../../standalone/drakbackup_.c:2326
-#: ../../standalone/drakbackup_.c:2344 ../../standalone/drakbackup_.c:2392
-#: ../../standalone/drakbackup_.c:2412 ../../standalone/drakbackup_.c:2431
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Diaraog"
-#: ../../standalone/drakbackup_.c:2261 ../../standalone/drakbackup_.c:2328
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Enrollañ"
-#: ../../standalone/drakbackup_.c:2307
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2346 ../../standalone/drakbackup_.c:3023
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2394 ../../standalone/drakbackup_.c:2414
-#: ../../standalone/drakbackup_.c:2435
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "A heul"
-#: ../../standalone/drakbackup_.c:2468
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2489
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Dibabit pakadoù da staliañ"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2563
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2584
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2628
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2649
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2729
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2731
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2735 ../../standalone/drakbackup_.c:2766
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2757
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Enrollañ er restr"
-#: ../../standalone/drakbackup_.c:2831
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2907
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2913
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:3010
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3018
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Kefluniañ reizhiadoù restroù"
-#: ../../standalone/drakbackup_.c:3043
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3094
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9029,7 +9474,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3124
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9038,7 +9483,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3132
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9079,7 +9524,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3171
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9107,13 +9552,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3197 ../../standalone/drakbackup_.c:3272
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3199 ../../standalone/drakbackup_.c:3274
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9130,7 +9580,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3213
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9170,7 +9620,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3251
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9181,7 +9631,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9194,7 +9644,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3288
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9238,6 +9688,336 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heul :"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Logodenn"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Anv rannet"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Titouroù"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Moullerez"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "X11/Arloadoù"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakad"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Gortozit mar plij"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Dilezel ar staliadur"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Paour"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "marc'hañ sac'het : "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Anv an ostiz : "
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Seurt : "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Treuzell : "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Kefluniañ servijoù"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr "Servijer"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Meuziad Lañsañ"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Kefluniañ ur rouedad"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Skoazeller..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Amprouiñ ar c'hefluniadur"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Bevaat"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Bevaat"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Treuzell"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
#: ../../standalone/drakfloppy_.c:64
msgid "usage: drakfloppy\n"
msgstr ""
@@ -9355,104 +10135,104 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:230
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:254
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s ket kavet"
-#: ../../standalone/drakfont_.c:262 ../../standalone/drakfont_.c:304
-#: ../../standalone/drakfont_.c:353 ../../standalone/drakfont_.c:413
-#: ../../standalone/drakfont_.c:422 ../../standalone/drakfont_.c:448
-#: ../../standalone/drakfont_.c:460 ../../standalone/drakfont_.c:473
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Graet"
-#: ../../standalone/drakfont_.c:266
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:302
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:328
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:351
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Furmadiñ ar bladennig"
-#: ../../standalone/drakfont_.c:354
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "O prientiñ ar staliadur"
-#: ../../standalone/drakfont_.c:358
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:362
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:369 ../../standalone/drakfont_.c:385
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:373 ../../standalone/drakfont_.c:389
-#: ../../standalone/drakfont_.c:409
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:378 ../../standalone/drakfont_.c:393
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:400
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:404
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:458 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:470
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "strishaat"
-#: ../../standalone/drakfont_.c:477 ../../standalone/drakfont_.c:761
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9461,124 +10241,119 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:551
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Furmadiñ parzhadurioù"
-#: ../../standalone/drakfont_.c:566
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "O tistaliañ ar RPMoù"
-#: ../../standalone/drakfont_.c:571
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakfont_.c:573
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Poent marc'hañ"
-#: ../../standalone/drakfont_.c:740
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Dibabit ar parzhadur a vennit furmadiñ"
-#: ../../standalone/drakfont_.c:744
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:748
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Burev"
-#: ../../standalone/drakfont_.c:752
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:756
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Moullerez"
-#: ../../standalone/drakfont_.c:793
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:829
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Staliañ ar reizhiad"
-#: ../../standalone/drakfont_.c:859
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:896
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Diuzit ar restr"
-#: ../../standalone/drakfont_.c:898
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/drakfont_.c:915 ../../standalone/drakfont_.c:935
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:916
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:917
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:918
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Staliañ"
-#: ../../standalone/drakfont_.c:936
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:937
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Dilezel ar staliadur"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
#, fuzzy
msgid "Internet Connection Sharing"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9586,35 +10361,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr "Kefluniañ X"
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "O tinoiñ trobarzhelloù..."
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9622,21 +10397,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9646,31 +10421,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "dedennus"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9680,18 +10455,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Skramm ket kefluniet"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9701,17 +10476,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Kefluniadur goude staliañ"
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Kefluniañ ar modem"
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9722,7 +10497,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9734,79 +10509,79 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ar servijer SMB"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
#, fuzzy
msgid "Firewalling configuration detected!"
msgstr "o lenn ar c'hefluniadur"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Kefluniañ IDE"
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "O staliañ ar pakad %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9816,231 +10591,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "marc'hañ sac'het : "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Anv an ostiz : "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Seurt : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Treuzell : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Kefluniañ servijoù"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Servijer"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Meuziad Lañsañ"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Kefluniañ ur rouedad"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Skoazeller..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Amprouiñ ar c'hefluniadur"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Treuzell"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:51
-msgid "Setting security level"
-msgstr "O termeniñ al live surentez"
-
-#: ../../standalone/draksec_.c:57
-#, fuzzy
-msgid "Setting security user"
-msgstr "O termeniñ al live surentez"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10128,50 +10678,50 @@ msgstr ""
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:113
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:116
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:120
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:128
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:130
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
-#: ../../standalone/drakxtv_.c:132
+#: ../../standalone/drakxtv_.c:131
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:134
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:136
+#: ../../standalone/drakxtv_.c:135
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:148
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:149
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10220,7 +10770,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:516
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10271,10 +10821,6 @@ msgstr "Parzhadur"
msgid "/Options/Test"
msgstr "Parzhadur"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10350,76 +10896,99 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "O prientiñ ar staliadur"
-#: ../../standalone/logdrake_.c:407
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../standalone/logdrake_.c:408
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:416
-msgid "proftpd"
-msgstr "proftpd"
+#: ../../standalone/logdrake_.c:417
+msgid "Apache World Wide Web Server"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:418
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Anv ar domani"
#: ../../standalone/logdrake_.c:419
-msgid "sshd"
-msgstr "sshd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Servijer NIS"
#: ../../standalone/logdrake_.c:420
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Stlennvonioù"
#: ../../standalone/logdrake_.c:421
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "trobarzhell"
#: ../../standalone/logdrake_.c:424
#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servijer moullañ"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "dedennus"
-#: ../../standalone/logdrake_.c:425
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:435
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "O furmadiñ"
-#: ../../standalone/logdrake_.c:436
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:449
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../standalone/logdrake_.c:450
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:493
+#: ../../standalone/logdrake_.c:503
#, fuzzy
msgid "Save as.."
msgstr "Meuziad Lañsañ"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb kavet ebet\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Kendarvan an trede nozelenn ?"
@@ -10476,6 +11045,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10982,120 +11563,207 @@ msgstr "Liesvedia"
msgid "Scientific Workstation"
msgstr "Titouroù"
-#~ msgid "Complete (%dMB)"
-#~ msgstr "Boas (%dMo)"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Anavezoud kartenn c'hrafek : %s\n"
-#~ msgid "Minimum (%dMB)"
-#~ msgstr "Bihanañ (%d Mo)"
+#~ msgid "Choose options for server"
+#~ msgstr "Dibabit dibarzhoù ar servijer"
-#~ msgid "Recommended (%dMB)"
-#~ msgstr "Erbedet (%dMo)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Skramm ket kefluniet"
-#~ msgid "CDROM / DVDROM"
-#~ msgstr "CDROM / DVDROM"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-#, fuzzy
-#~ msgid "Utilities"
-#~ msgstr "Mavegoù/Skrid"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Spisterioù ket dibabet c'hoazh"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Marc'hañ"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "klaskit kemmañ arventennoù 'zo"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "An error occurred:"
+#~ msgstr "C'hoarvezet eo ur fazi :"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Kuitaat e %d eilenn"
-#~ msgid "None"
-#~ msgstr "Ebet"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ha reizh eo ar c'hefluniadur ?"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Dibabit ar ment nevez"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "C'hoarvezet eo ur fazi, klaskit kemmañ arventennoù 'zo"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servijer XFree86 : %s"
-#~ msgid "You may now provide options to module %s."
-#~ msgstr "Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s"
+#~ msgid "Show all"
+#~ msgstr "Diskouez pep tra"
-#~ msgid "mount failed"
-#~ msgstr "marc'hañ sac'het"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "O prientiñ kefluniadur X-Window"
-#~ msgid "Low"
-#~ msgstr "Izel"
+#~ msgid "What do you want to do?"
+#~ msgstr "Petra a vennit ober ? "
-#~ msgid "Medium"
-#~ msgstr "Etre"
+#~ msgid "Change Monitor"
+#~ msgstr "Kemmañ ar skramm"
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Nebeut a wellaenoù evit al live surentez-mañ, an hini pouezusañ eo bezañ\n"
-#~ "muioc'h a evezhiadennoù hag a wiriadennoù surentez."
+#~ msgid "Change Graphics card"
+#~ msgstr "Kemmañ ar gartenn c'hrafek"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Liesvedia"
+#~ msgid "Change Server options"
+#~ msgstr "Kemmañ dibarzhoù ar servijer"
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Mailh"
+#~ msgid "Change Resolution"
+#~ msgstr "Kemmañ ar spister"
+
+#~ msgid "Show information"
+#~ msgstr "Diskouez titouroù"
+
+#~ msgid "Test again"
+#~ msgstr "Amprouiñ adarre"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "O termeniñ al live surentez"
+
+#~ msgid "Graphics card"
+#~ msgstr "Kartenn c'hrafek"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Diuzit ur gartenn c'hrafek"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Dibabit ur sturier X"
+
+#~ msgid "X driver"
+#~ msgstr "Sturier X"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 da 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Gour-VGA, 800x600 da 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ment hollek ar strolladoù hoc'h eus diuzet a zo war-dro %d Mo.\n"
-#, fuzzy
#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Bremañ e c'hellit diuz ho takad-eur diouzh al lec'h ma chomit ennañ.\n"
+#~ "Ma vennit staliañ nebeutoc'h eget ar ment-se,\n"
+#~ "diuzit an dregantad a bakadoù a vennit staliañ.\n"
+#~ "\n"
+#~ "Un dregantad izel a stalio hepken ar pakadoù pouezusañ;\n"
+#~ "un dregantad a 100%% a stalio an holl bakadoù diuzet."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoù-se.\n"
#~ "\n"
-#~ "Linux a vera an eur e GMT pe \"Greenwich Mean Time\" hag e amdreiñ a ra\n"
-#~ "en eur lec'hel hervez an takad-eur hoc'h eus diuzet."
+#~ "Ma vennit staliañ nebeutoc'h eget se,\n"
+#~ "diuzit an dregantad a bakadoù a vennit staliañ.\n"
+#~ "Un dregantad izel a stalio hepken ar pakadoù pouezusañ;\n"
+#~ "un dregantad a %d%% a stalio kement a bakadoù ma 'z eus tu."
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Dregantad a bakadoù da staliañ"
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Kefluniañ ur rouedad"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Dibabit al live surentez"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Boas (%dMo)"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Bihanañ (%d Mo)"
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Titouroù"
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Erbedet (%dMo)"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Titouroù"
+#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Anv arveriad"
+#~ msgid "None"
+#~ msgstr "Ebet"
+
+#~ msgid "You may now provide options to module %s."
+#~ msgstr "Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s"
+
+#~ msgid "mount failed"
+#~ msgstr "marc'hañ sac'het"
+
+#~ msgid "Low"
+#~ msgstr "Izel"
+
+#~ msgid "Medium"
+#~ msgstr "Etre"
-#, fuzzy
#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
#~ msgstr ""
-#~ "Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijañ\n"
-#~ "restroù HTML ha CGI."
+#~ "Nebeut a wellaenoù evit al live surentez-mañ, an hini pouezusañ eo bezañ\n"
+#~ "muioc'h a evezhiadennoù hag a wiriadennoù surentez."
#~ msgid ""
#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
@@ -11104,12 +11772,6 @@ msgstr "Titouroù"
#~ "named (BIND) a zo ur Servijer Anvioù Domani (DNS) a zo implijet evit\n"
#~ "amdreiñ anvioù ostiz e chomlec'hioù IP."
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Dibabit seurt ho logodenn, mar plij."
-
#~ msgid "Active"
#~ msgstr "Bevaat"
@@ -11188,143 +11850,6 @@ msgstr "Titouroù"
#~ " Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H "
#~ "OBER !"
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "An dibaboù liessek evit implij ho ardivink (en ur c'houlakaat neuze hoc'h "
-#~ "eus\n"
-#~ "dibabet pe \"Neuziet\" pe \"Mailh\" da renkad staliañ) a zo evel a-"
-#~ "heul :\n"
-#~ "\n"
-#~ " - Boas : dibabit se ma 'z oc'h mennet da implijout ho ardivink dreist-"
-#~ "holl\n"
-#~ " evit un implij pemdeziek (labour burev, aozerezh grafikoù hag all). "
-#~ "Na\n"
-#~ " c'hortozit ket e vije staliaet nep kempuner, maveg diorren h.a.\n"
-#~ "\n"
-#~ " - Diorren : evel m'hen diskouez an anv. Dibabit se ma 'z oc'h mennet "
-#~ "da\n"
-#~ " implijout ho ardivink dreist-holl evit diorren meziantoù. Neuze ho po "
-#~ "un\n"
-#~ " heuliad klok a meziantoù staliet a-benn kempunañ, dizraenañ ha "
-#~ "furmadiñ\n"
-#~ " kod tarzh, pe grouiñ pakadoù meziantel.\n"
-#~ "\n"
-#~ " - Servijer : dibabit se m'eo gouestlet an ardivink a stalhit Mandrake "
-#~ "Linux\n"
-#~ " warnañ da vezañ impliet evel servijer. ur servijer restroù (NFS pe "
-#~ "SMB),\n"
-#~ " ur servijer moullañ (moullañ diouzh komenad Unix lp (line printer) pe "
-#~ "zoare\n"
-#~ " Windows SMB), ur servijer dilesadur (NIS), ur servijer stlennvon hag "
-#~ "all.\n"
-#~ " Da heul, na c'hortozit staliadur tamm kinkladur ebet (KDE, "
-#~ "GNOME...).\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Gallout a rit bremañ diuz ar strollad pakadoù a vennit\n"
-#~ "staliañ pe vremanaat.\n"
-#~ "\n"
-#~ "DrakX a glasko neuze hag-eñ hoc'h eus egor a-walc'h evit staliañ an holl "
-#~ "anezho.\n"
-#~ "Ma n'hoc'h eus ket, e kemenno deoc'h. Ma vennit kenderc'hel evelato, e "
-#~ "seveno staliadur\n"
-#~ "an holl strolladoù diuzet hogen e laosko pakadoù 'zo dezho nebeutoc'h a\n"
-#~ "dalvoudegezh. E traoñ ar roll e c'hellit diuz an dibarzh\n"
-#~ "\"Diuz pakadoù unan hag unan\" ; en degouezh-se e vo ret deoc'h furchal\n"
-#~ "a-dreuz tremen 1000 pakad..."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Gallout a rit bremañ skrivañ dibarzhoù sifrennañ. Ma n'oc'h ket sur "
-#~ "petra\n"
-#~ "skrivañ, an titouroù reizh ho po digant ho PMG."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Skrivit :\n"
-#~ "\n"
-#~ " - Chomlec'h IP : m'eo dianav deoc'h, goulennit digant merour ho "
-#~ "rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Rouedmaskl : \"255.255.255.0\" a zo peurvuiañ un dibab mat. M'hoc'h "
-#~ "eus\n"
-#~ "douetañs, goulennit digant merour ho rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP emgefreek : Ma ra ho rouedad gant ar c'homenad bootp pe dhcp, "
-#~ "diuzit \n"
-#~ "an dibarzh-se. Ma vez diuzet, n'eus ezhomm talvoud ebet er \"Chomlec'h IP"
-#~ "\".\n"
-#~ "M'hoc'h eus douetañs, goulennit digant merour ho rouedad.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ma implij ho rouedad NIS, diuzit \"Implijout NIS\". Ma ne ouzit ket, "
-#~ "goulennit\n"
-#~ "digant merour ho rouedad."
-
#~ msgid ""
#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
#~ "correct information can be obtained from your ISP."
@@ -11341,26 +11866,6 @@ msgstr "Titouroù"
#~ "hag\n"
#~ "e rankit implijout proksioù, goulennit digant merour ho rouedad pe ho PMG."
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Staliañ pakadoù rinegouriezh a c'hellit m'eo bet kefluniet reizh ho\n"
-#~ "kevreadenn ouzh ar Genrouedad. Dibabit da gentañ ur melezour a vennit "
-#~ "ezkargañ\n"
-#~ "pakadoù diwarnañ ha da c'houde diuzit ar pakadoù da staliañ.\n"
-#~ "\n"
-#~ "Taolit evezh e rankit diuz ar melezour hag ar rinegouriezh hervez al\n"
-#~ "lezennoù o ren du-se."
-
#~ msgid ""
#~ "You may now create one or more \"regular\" user account(s), as\n"
#~ "opposed to the \"privileged\" user account, root. You can create\n"
@@ -11406,92 +11911,6 @@ msgstr "Titouroù"
#~ "gont arveriad ho po krouet amañ, hag ereañ evel root evit kefridioù a\n"
#~ "vererezh ha trezerc'hel hepken."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Setu dibaboù pennañ LILO ha grub :\n"
-#~ " - Trobarzhell loc'hañ : a dermen anv an drobarzhell (da sk. parzhadur\n"
-#~ "ur bladenn galet) a zo enni ar rann loc'hañ. Nemet ma ouifec'h a-zevri\n"
-#~ "ez eo disheñvel, dibabit \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Gedvezh a-raok loc'hañ ar skeudenn dre ziouer : a spisa an niver a\n"
-#~ "zekvet eilennoù a rankfe gortoz ar c'harger loc'hañ kent loc'hañ ar "
-#~ "skeudenn\n"
-#~ "gentañ. Talvoudus eo war reizhiadoù a loc'h diouzhtu adalek ar bladenn "
-#~ "galet\n"
-#~ "goude bezañ enaouet ar stokellaoueg. Ne gortoz ket ar c'harger loc'hañ "
-#~ "m'eo\n"
-#~ "disoñjet \"gedvezh\" pe dermenet da mann.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod video : a spisa ar mod skrid VGA a rankfe bezañ diuzet pa "
-#~ "loc'her.\n"
-#~ "An talvoudoù a heul a zo hegerz :\n"
-#~ " * boas : a ziuz ar mod skrid 80x25 boas.\n"
-#~ " * <niver> : a implij ar mod skrid a zegouezh."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Bremañ eo poent kefluniañ ar reizhiad X Window, a zo kraonienn\n"
-#~ "EGA (Etrefas Grafikel Arveriad) Linux. Evit ar c'hefridi-se, ret eo\n"
-#~ "deoc'h kefluniañ ho kartenn grafek hag ho skramm. Emgefreek eo ar bras\n"
-#~ "eus al lankadoù-se, evelato, neuze gwiriañ pezh a zo bet graet hag\n"
-#~ "asantiñ d'ar c'hefluniadur a zlefe bezañ ho labour :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Pa 'z eo graet ar c'hefluniañ, lañset e vo X (nemet ma c'houlennit\n"
-#~ "digant DrakX chom hep hen ober) e seurt ma c'hellit gwiriañ ha\n"
-#~ "sellet ha plijet oc'h gant an dibarzhoù. Ma n'oc'h ket, e c'hellit\n"
-#~ "mont war gil hag o c'hemmañ, ken lies gwech ha ma karot."
-
#~ msgid ""
#~ "If something is wrong in X configuration, use these options to correctly\n"
#~ "configure the X Window System."
@@ -11630,9 +12049,6 @@ msgstr "Titouroù"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "Kefluniañ LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Krouiñ ur bladennig loc'hañ"
-
#~ msgid "Choice"
#~ msgstr "Dibab"
@@ -11693,9 +12109,6 @@ msgstr "Titouroù"
#~ msgid "Use MD5 passwords"
#~ msgstr "Implijout tremegerioù MD5"
-#~ msgid "Package"
-#~ msgstr "Pakad"
-
#~ msgid "Tree"
#~ msgstr "Gwezenn"
@@ -12235,9 +12648,6 @@ msgstr "Titouroù"
#~ msgid "X11/Amusements"
#~ msgstr "X11/Dudi"
-#~ msgid "X11/Applications"
-#~ msgstr "X11/Arloadoù"
-
#~ msgid "X11/Applications/Internet"
#~ msgstr "X11/Arloadoù/Kenrouedad"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index c406f3c6f..4ee25be49 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -1,37 +1,67 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Vedran Ljubovic <vljubovic@smartnet.ba>, 2001
+# Copyright (C) 2001. Free Software Foundation, Inc.
+# Amila Akagić <bono@lugbih.org>, 06. 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-28 20:49GMT\n"
-"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
-"Language-Team: Bosnian <prijevodi@lugbih.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-21 17:14GMT\n"
+"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
+"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
+"X-Generator: KBabel 0.9.1\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfiguriši sve glave odvojeno"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama ekstenziju"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfiguriši samo karticu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ili više"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Izaberite X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Multi-head konfiguracija"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,41 +69,44 @@ msgstr ""
"Vaš sistem podržava konfiguraciju više glava.\n"
"Šta želite učiniti?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafička karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Izaberite veličinu memorije vaše grafičke karte"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izaberite grafičku kartu"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfiguracija"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izaberite X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Koju konfiguraciju XFree želite imati?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfiguriši sve glave odvojeno"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Izaberite X drajver"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X drajver"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfiguriši samo karticu \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree želite imati?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,32 +115,17 @@ msgstr ""
"Vaša kartica može imati podršku za 3D hardversko ubrzanje ali samo sa\n"
"XFree %s. Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -118,31 +136,58 @@ msgstr ""
"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
"Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
+"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguracija"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izaberite veličinu memorije vaše grafičke karte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Izaberite opcije za server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zadržati izmjene?\n"
+"Trenutna konfiguracija je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Izaberite monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Ručno izaberi"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Opšti"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Poništi"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -163,510 +208,325 @@ msgstr ""
"raspon izvan mogućnosti vašeg monitora: time možete oštetiti monitor.\n"
" Ako niste sigurni, izaberite najmanju opciju."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Brzina horizontalnog osvježavanja"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Brzina vertiaklnog osvježavanja"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nije konfigurisan"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafička karta još uvijek nije konfigurisana"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolucije još nisu odabrane"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Želite li testirati konfiguraciju?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 boja (8 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probajte izmjeniti neke parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 hiljada boja (15 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Došlo je do greške"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 hiljada boja (16 bita)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Napuštam za %d sekundi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliona boja (24 bita)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravna vrijednost?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Došlo je do greške, probajte izmjeniti neke parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolucije"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Izaberite rezoluciju i dubinu boja"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafička karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Još"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Odustani"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Prikaži sve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Želite li testirati konfiguraciju?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Testiranje konfiguracije"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tastature: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Uređaj miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafička karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafičke karte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafička memorija: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boja: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 drajver: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window konfiguraciju"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Šta želite učiniti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Izmjena Monitora"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Izmjena Grafičke kartice"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Izmjena Server opcija"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Izmjena Rezolucije"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Prikaži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testiraj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Izlaz"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zadržati izmjene?\n"
-"Trenutna konfiguracija je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X u startanju"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mogu podesiti vaš računar da automatski pokrene X nakon boota.\n"
"Želite li da se X pokrene kada bootate?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molimo izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 hiljada boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 hiljada boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliona boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili više"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardna VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite smjestiti bootloader?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO sa grafičkim menijem"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootanje iz DOS/Windowsa (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Šifra"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Šifra (ponovo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ograniči opcije komandne linije"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ograniči"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Čisti /tmp prilikom svakog boota"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa ako je potrebno (pronađeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Omogući više profila"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Navedite veličinu rama u MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Molimo pokušajte ponovo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Šifre se ne poklapaju"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init Poruka"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Otvori čekanje firmware-a"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Kernel Boot Timeout"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Omogući boot sa CDa?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Omogući boot sa OFa?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Default OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -675,83 +535,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Navedene su razne stavke.\n"
"Možete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Izmjeni"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke želite dodati?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ostali OSi (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Preslika"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Default"
@@ -783,53 +643,77 @@ msgstr "Morate navesti root particiju"
msgid "This label is already used"
msgstr "Ova labela je već u upotrebi"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronađeno %s %s interfejsa"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Imate li neki drugi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Pogledaj hardware info"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Sada možete navesti opcije za modul %s.\n"
+"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sada možete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
+"ime2=vrijednost2 ...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcije modula"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokušati?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -846,39 +730,15 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
"ali ne bi trebalo izazvati nikakvu štetu."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Navedi opcije"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sada možete navesti opcije za modul %s.\n"
-"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada možete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
-"ime2=vrijednost2 ...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcije modula"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -887,49 +747,54 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ova šifra je previše jednostavna"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ovo korisničko ime je već dodano"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -938,32 +803,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -971,87 +836,67 @@ msgstr ""
"Mogu podesiti vaš računar da automatski prijavi jednog korisnika.\n"
"Želite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Možete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ručno izaberi"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
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?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Možete eksportovati koristeći NFS ili Sambu. Koji želite"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1059,31 +904,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dobrodošli u Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Loš"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Viši"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1093,7 +938,7 @@ msgstr ""
"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
"druge ili na Internet. Nema pristupa šifrom."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1101,7 +946,7 @@ msgstr ""
"Šifra je sada aktivirana, ali korištenje za mrežni računar još nije "
"preporučeno."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1109,7 +954,7 @@ msgstr ""
"Ovo je standardna sigurnost koja je preporučena za računar koji će biti "
"korišten za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1117,13 +962,14 @@ msgstr ""
"Već postoje određena ograničenja, a više automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
"server.\n"
@@ -1132,34 +978,34 @@ msgstr ""
"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
"Internetu, možda je bolje da izaberete niži nivo."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite nivo sigurnosti"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1176,52 +1022,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro došli u GRUB izbornik operativnog sistema!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
@@ -1234,17 +1080,21 @@ msgstr "pomoć još nije implementirana.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>I"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1277,14 +1127,14 @@ msgstr "Yaboot mod"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na Konfiguriši kako bi se pokrenuo čarobnjak za podešavanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfiguriši"
@@ -1294,7 +1144,7 @@ msgid "System mode"
msgstr "Sistem mod"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
#: ../../bootlook.pm_.c:148
@@ -1305,16 +1155,18 @@ msgstr "Ne, ne želim da se autologiram"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, želim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "U redu"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1360,7 +1212,7 @@ msgstr "Ne mogu napraviti screenshot prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
@@ -1368,7 +1220,7 @@ msgstr "Francuska"
msgid "Costa Rica"
msgstr "Kostarika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
@@ -1392,11 +1244,12 @@ msgstr "Norveška"
msgid "Sweden"
msgstr "Švedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italija"
@@ -1404,7 +1257,7 @@ msgstr "Italija"
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "SAD"
@@ -1412,8 +1265,8 @@ msgstr "SAD"
msgid "Please make a backup of your data first"
msgstr "Molimo najprije napravite backup vaših podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Pročitajte pažljivo!"
@@ -1427,11 +1280,12 @@ msgstr ""
"(2048 sektora je dovoljno)\n"
"na početku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Greška"
@@ -1439,11 +1293,11 @@ msgstr "Greška"
msgid "Wizard"
msgstr "Čarobnjak"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Izaberi akciju"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1455,77 +1309,77 @@ msgstr ""
"Predlažem da najprije promjenite veličinu te particije\n"
"(kliknite na nju, zatim na \"Promjeni veličinu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Molimo kliknite na particiju"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalji"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ostalo"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Kreiraj"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Koristite ``%s'' umjesto toga"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Obriši"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1533,67 +1387,72 @@ msgstr ""
"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Izaberi particiju"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Izaberi drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Prebaci u ekspertni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Poništi"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Izlaz bez spašavanja"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Želite li spasiti izmjene /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Auto alokacija"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Obriši sve"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Još"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informacije o hard disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Sve primarne particije su u upotrebi"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ne mogu dodati više particija"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1601,31 +1460,31 @@ msgstr ""
"Da biste imali još particija, molimo pobrišite jednu kako bi se mogla "
"kreirati extended particija"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Snimi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Vrati tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Spasi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatsko montiranje izmjenjivog medija"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Izaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1633,11 +1492,11 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1645,122 +1504,129 @@ msgstr ""
"Ubacite disketu u jedinicu\n"
"Svi podaci na toj disketi će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokušavam da spasim tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tačka montiranja"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Promjeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Premještanje"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Dodaj na RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Dodaj na LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ukloni sa RAIDa"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ukloni sa LVMa"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificiraj RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Napravi novu particiju"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Početni sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preference: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Izmjena tipa particije"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sistem želite?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Prebacujem sa ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje želite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1769,126 +1635,131 @@ msgstr ""
"loopback.\n"
"Najprije uklonite loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice FAT filesistema"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ovoj particiji ne možete mijenjati veličinu"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk je želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na koji sektor je želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Premještam"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Premještam particiju..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne može koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Želite li je koristiti?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Razni"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "uređaj"
+msgstr "Uređaj"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivo"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "veličina chunka"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1900,7 +1771,7 @@ msgstr ""
"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
"vam ne treba ni /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1912,7 +1783,7 @@ msgstr ""
"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1922,132 +1793,132 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktorij %s već sadrži neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Premještam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Uređaj: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montirana\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2056,7 +1927,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2064,27 +1935,27 @@ msgstr ""
"Particija koja se boota po defaultu\n"
" (za MS-DOS boot, ne za lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Veličina chunka %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2096,7 +1967,7 @@ msgstr ""
"particija Driver particija, vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2108,63 +1979,63 @@ msgstr ""
"particija je za\n"
"dvojni boot vašeg sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "na busu %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Šifre se ne poklapaju"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Šifra"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Šifra (još jednom)"
@@ -2173,35 +2044,65 @@ msgid "Change type"
msgstr "Promjeni tip"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Molimo kliknite na medij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentikacija"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Traži servere"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška u demontiranju %s: %s"
@@ -2218,68 +2119,322 @@ msgstr "sa /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne možete koristiti LVM logički volumen za tačku montiranja %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu tačku montiranja\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ne možete koristiti kriptovani datotečni sistem za tačku montiranja %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nemam šta da radim"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Greška u otvaranju %s za pisanje: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
"kreirati novi file sistemi. Molimo provjerite vaš hardware i pronađite uzrok "
"greške"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemate nijednu particiju!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto prepoznavanje"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Opšti"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "postavka opterećenja"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promjeni tip"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Izlaz"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoć/_O programu..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Miš"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Odustani"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Miš"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Opis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentikacija"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Izaberite datoteku"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway uređaj"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 dugmeta"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Prepoznavanje hard diska"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Pogledaj hardware info"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Prikaži informacije"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Podešavanje miša"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detektovan na portu %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Molimo sačekajte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundi"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Uklanjam štampač \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Ispitivanje"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2293,7 +2448,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2320,7 +2475,7 @@ msgstr ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2424,9 +2579,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2475,9 +2629,8 @@ msgstr ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if the machine is to be used for programming, choose "
"the\n"
@@ -2775,7 +2928,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2787,9 +2940,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2812,9 +2964,8 @@ msgstr ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2859,21 +3010,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2889,9 +3039,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Na ovom mjestu trebate izabrati gdje želite instalirati Linux Mandrake\n"
"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
@@ -2987,9 +3137,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3183,38 +3332,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3259,10 +3402,9 @@ msgstr ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step.\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step.\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk.\n"
@@ -3393,11 +3535,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3456,7 +3598,7 @@ msgstr ""
"instalaciju. Odgovor na neka pitanja može biti vrlo težak ako nemate dobro\n"
"poznavanje GNU/Linuxa, zato nemojte birati ovo sem ako znate šta radite."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3482,7 +3624,7 @@ msgstr ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3508,7 +3650,7 @@ msgstr ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales click the \"OK\" button to continue."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3535,7 +3677,7 @@ msgstr ""
"are good. If the mouse is not working correctly press the space bar or\n"
"[Return] to \"Cancel\" and choose again."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3543,23 +3685,23 @@ msgstr ""
"Molimo izaberite ispravan port. Na primjer, \"COM1\" port pod MS\n"
"Windowsom se zove \"ttyS0\" pod GNU/Linuxom."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3615,7 +3757,7 @@ msgstr ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3637,7 +3779,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3645,7 +3787,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3713,7 +3855,7 @@ msgstr ""
"it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3735,7 +3877,7 @@ msgstr ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3748,29 +3890,28 @@ msgstr ""
"\n"
"Izaberite \"Prvi sektor na disku (MBR)\" sem ako znate tačno šta radite."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3806,7 +3947,7 @@ msgstr ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3831,7 +3972,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sada pronalazi sve IDE uređaje prisutne na vašem računaru. Također\n"
@@ -3863,7 +4004,7 @@ msgstr ""
"sa web stranice proizvođača (ako imate internet pristup) ili iz Microsoft\n"
"Windowsa (ako ga imate na vašem sistemu)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3873,9 +4014,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3887,7 +4027,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3958,7 +4098,7 @@ msgstr ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3985,9 +4125,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4026,10 +4165,10 @@ msgstr ""
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4037,12 +4176,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4086,7 +4224,7 @@ msgstr ""
"displayed here. You can click on the button to change the parameters\n"
"associated to it."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4098,7 +4236,7 @@ msgstr ""
"biti\n"
"izgubljeni i neće se moći vratiti!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4116,7 +4254,7 @@ msgstr ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4124,12 +4262,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4154,20 +4292,20 @@ msgstr ""
"\n"
"Da li zaista želite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4175,7 +4313,7 @@ msgstr ""
"Da koristite ovaj izbor spašenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Greška u čitanju datoteke %s"
@@ -4206,7 +4344,7 @@ msgstr "Morate imati swap particiju"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4214,59 +4352,59 @@ msgstr ""
"\n"
"Svejedno nastavi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nema nijedne postojeće particije za upotrebu"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju želite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Izaberite veličine"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Veličina root particije u MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veličina swap particije u MB:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Koristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji želite promjeniti veličinu?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Izračunavam granice Windows datotečnog sistema"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4275,13 +4413,16 @@ msgstr ""
"FAT resizer ne može izmjeniti vašu particiju, \n"
"došlo je do sljedeće greške: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Vaša Windows particija je previše fragmentirana, molimo prvo pokrenite "
"``defrag'' "
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4302,55 +4443,55 @@ msgstr ""
"ponovo pokrenite instalaciju. Također biste trebali spasiti sve podatke.\n"
"Kada ste sigurni, kliknite na Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Koju veličinu želite da sačuvate za windows na"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particiji %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT promjena veličine nije uspjela: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ne postoji nijedna FAT particija za promjenu veličine ili upotrebu za "
"loopback (ili nije ostalo dovoljno prostora)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Pobriši čitav disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ukloni Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate više od jednog hard diska, na koji želite instalirati linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Ručno particioniranje diska"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4359,11 +4500,11 @@ msgstr ""
"Sada možete particionirati %s.\n"
"Kada završite, ne zaboravite spasiti sa `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vašoj Windows particiji"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ne mogu naći dovoljno prostora za instalaciju"
@@ -4371,16 +4512,16 @@ msgstr "Ne mogu naći dovoljno prostora za instalaciju"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Pokrećem mrežu"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Zaustavljam mrežu"
@@ -4392,12 +4533,12 @@ msgstr ""
"Došlo je do greške, ali ne znam kako da je riješim fino.\n"
"Nastavite na vlastiti rizik."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dvostruka tačka montiranja %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4409,12 +4550,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4424,9 +4565,9 @@ msgstr "Nema pogodne disketne jedinice"
msgid "Entering step `%s'\n"
msgstr "Prelazim na korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4436,198 +4577,152 @@ msgstr ""
"ovo,\n"
"pritisnite `F1' prilikom bootanja na CDROMu, zatim unesite `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Klasa instalacije"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ako želite da instalirate manje od ove veličine,\n"
-"izaberite procenat paketa koje želite instalirati.\n"
-"\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat 100%% će instalirati sve izabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na disku imate mjesta samo za %d%% ovih paketa.\n"
-"\n"
-"Ako želite da instalirate manje od ovoga,\n"
-"izaberite procenat paketa koje želite da instalirate.\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat %d%% će instalirati najveći mogući broj paketa."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procenat paketa za instalaciju"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Neispravan paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verzija: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ne možete izabrati ovaj paket jer nema dovoljno prostora za njega"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Ne možete izabrati/isključiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ovo je obavezan paket, ne može biti isključen"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ovaj paket mora biti unaprijeđen\n"
"Jeste li sigurni da ga želite isključiti?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Automatski prikaži izabrane pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalacija"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Učitaj/Spasi na disketu"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Osvježavam izbor paketa"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje želite instalirati"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Preostalo vremena "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Molimo sačekajte, pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4643,17 +4738,17 @@ msgstr ""
"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
"ROMa."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Došlo je do greške pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Došlo je do greške kod instaliranja paketa:"
@@ -4725,11 +4820,11 @@ msgstr "Došlo je do greške"
msgid "Do you really want to leave the installation?"
msgstr "Da li zaista želite napustiti instalaciju?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licencni ugovor"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4744,7 +4839,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4862,7 +4957,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4967,109 +5062,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatura"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Molimo izaberite izgled vaše tastature."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je puna lista svih dostupnih tastatura"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Koju klasu instalacije želite?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instaliraj/Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili update?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Preporučeno"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Unaprijedi samo pakete"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Molimo izaberite vrstu vašeg miša."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miša"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Molimo izaberite na kojem serijskom portu je spojen vaš miš."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulacija tipki"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulacija 2 dugmeta"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulacija 3 dugmeta"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Podešavam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Podešavam IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Pretražujem particije da nađem tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Izaberite tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5081,7 +5180,7 @@ msgstr ""
"\n"
"Slažete li se sa gubitkom svih particija?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5089,7 +5188,7 @@ msgstr ""
"DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
"Nastavljate na vlastiti rizik!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5098,76 +5197,79 @@ msgstr ""
"nastaviti, ali da biste bootali vaš sistem, morate kreirati bootstrap "
"particiju u DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root particija"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Šta je root particija (/) vašeg sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje želite formatirati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Provjeri loše blokove?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Nemam dovoljno swap prostora da dovršim instalaciju, molimo dodajte još"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Tražim dostupne pakete"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Tražim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Pronalazim pakete za unaprjeđenje"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Potpuna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimalna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporučena (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5175,35 +5277,35 @@ msgstr ""
"Molimo izaberite učitaj ili spasi izbor paketa na disketu.\n"
"Format je isti kao i diskete koje generiše auto_install"
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Vrati sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Vraćam sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Izbor paketa"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Ubacite disketu koja sadrži izbor paketa"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Spasi na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5212,19 +5314,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju želite"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5234,16 +5336,16 @@ msgstr ""
"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5252,23 +5354,23 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Post-instalacijsko podešavanje"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5304,7 +5406,7 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5340,13 +5442,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5358,151 +5462,181 @@ msgstr ""
"\n"
"Da li želite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podešen na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nema štampača"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vašu zvučnu "
"karticu"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Miš"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Štampač"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root šifru"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez šifre"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentikacijski LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Preuzmi fontove iz Windowsa"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5534,19 +5668,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5572,7 +5706,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5586,29 +5720,29 @@ msgstr ""
"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
"raditi, pošto XFS traži veoma velik drajver)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Izaberite disketnu jedinicu koju želite koristiti da napravite boot disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5620,11 +5754,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vašeg računara"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Da li želite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5632,15 +5766,15 @@ msgstr ""
"Greška u instaliranju aboota, \n"
"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5658,18 +5792,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5679,7 +5812,8 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5690,7 +5824,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5705,17 +5839,22 @@ msgstr ""
"pogledajte Errata koja je dostupna na:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
"\"nakon instalacije\" vašeg Zvaničnog Mandrake Linux priručnika za upotrebu."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5729,15 +5868,15 @@ msgstr ""
"\n"
"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -5764,44 +5903,24 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molimo sačekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Proširi stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Smanji stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prekidač između ravnog i grupnog sortiranja"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Pogrešan izbor, pokušajte ponovo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vaš izbor? (podrazumjevano %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5810,31 +5929,35 @@ msgstr ""
"Stavke koje morate popuniti:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vaš izbor? (0/1, podrazumjevano %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Dugme '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Da li želite kliknuti na ovo dugme?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vaš izbor? (podrazumjevano '%s' %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari od kojih možete izabrati (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5844,7 +5967,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"Vaš izbor?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5853,327 +5976,327 @@ msgstr ""
"=> Primjetite, label je promjenjena:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ponovo pošalji"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Češka (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Španska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveška"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Švedska"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tastatura"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tastatura"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća mašina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbejdžanska (latinica)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švicarska (Njemački izgled)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Švicarska (Francuski izgled)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Češka (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipki)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveška)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Švedska)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" izgled)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latinični\" izgled)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelska (Fonetska)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italijanska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanska 106 tipki"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejanska tastatura"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino-Američka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litvanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanska AYERTY (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandska"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadska (Kvebek)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunska (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunska (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenačka"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilska"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tastatura"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadžička tastatura"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderni \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US tastatura (međunarodna)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinično)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Obje Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipka istovremeno"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istovremeno"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "\"Meni\" tipka"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6186,7 +6309,31 @@ msgstr "Kružno montiranje %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Broj telefona"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatiranje particija"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6228,10 +6375,6 @@ msgstr "1 dugme"
msgid "Generic 2 Button Mouse"
msgstr "Opšti miš sa 2 dugmeta"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Opšti"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Kotač"
@@ -6296,38 +6439,54 @@ msgstr "nijedan"
msgid "No mouse"
msgstr "Bez miša"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Molimo testirajte miš"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miša,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Kraj"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sljedeći ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Prethodni"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Proširi stablo"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Smanji stablo"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Prekidač između ravnog i grupnog sortiranja"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
@@ -6374,7 +6533,7 @@ msgstr ""
"Nije pronađen ethernet mrežni adapter na vašem sistemu.\n"
"Ne mogu podesiti ovu vrstu konekcije."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Izaberite mrežni interface"
@@ -6388,7 +6547,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mrežna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Podešavam mrežu"
@@ -6404,15 +6563,15 @@ msgstr ""
"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
"kao što je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Host name"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Čarobnjak za podešavanje mreže"
@@ -6467,7 +6626,7 @@ msgstr "Podešavanje ISDNa"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Izaberite vašeg providera.\n"
" Ako nije na listi, izaberite Nije na listi"
@@ -6486,14 +6645,14 @@ msgstr "Protokol za ostatak svijeta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol za ostatak svijeta \n"
" bez D-kanala (iznajmljene linije)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Koji protokol želite koristiti?"
#: ../../network/isdn.pm_.c:199
@@ -6517,7 +6676,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ako imate ISA karticu, vrijednosti na idućem ekranu bi trebale biti "
@@ -6534,13 +6694,13 @@ msgid "Continue"
msgstr "Nastavak"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Koja je vaša ISDN kartica ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
"karticu na idućem ekranu."
@@ -6559,47 +6719,47 @@ msgstr "Molimo izaberite na koji serijski port je nakačen vaš modem."
msgid "Dialup options"
msgstr "Opcije dialupa"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Naziv konekcije"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Broj telefona"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ime domena"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvi DNS server (opcionalno)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS server (opcionalno)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6607,7 +6767,7 @@ msgstr ""
"\n"
"Možete se diskonektovati ili prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6615,11 +6775,11 @@ msgstr ""
"\n"
"Možete prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6627,32 +6787,32 @@ msgstr ""
"\n"
"Možete se spojiti na Internet ili prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Trenutno niste konektovani na Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konektuj me"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Prekini konekciju"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Podesi konekciju"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internet konekcija & podešavanje"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti konekciju %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6671,12 +6831,12 @@ msgstr ""
"\n"
"Pritisnite OK za nastavak."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Podešavanje mreže"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6687,9 +6847,9 @@ msgstr ""
"Kliknite na Ok da zadržite tu konfiguraciju ili Odustani za podešavanje vaše "
"Internet & Mrežne konekcije.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6699,66 +6859,72 @@ msgstr ""
"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
"Ako ne želite da koristite automatsko prepoznavanje, isključite opciju.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Izaberite profil za podešavanje"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertni mod"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normalna modemska konekcija"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detektovan na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN konekcija"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detektovan %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL konekcija"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detektovan na interfejsu %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kablovska konekcija"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "otkrivena kablovska konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "prepoznata ethernet kartica(e)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Izaberite konekciju koju želite podesiti"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6768,23 +6934,23 @@ msgstr ""
"Izaberite jedan od njih koji ćete koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet konekcija"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Podešavanje mreže"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Potrebno je restartovati mrežu"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6795,7 +6961,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6805,7 +6971,7 @@ msgstr ""
"\n"
"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6813,19 +6979,19 @@ msgstr ""
"Nakon što je to gotovo, preporučujemo da restartujete vaš X\n"
"okoliš kako bi se izbjegao problem sa promjenom naziva računara."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Došlo je do problema prilikom podešavanja.\n"
"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
"radi, možete ponovo pokrenuti podešavanje"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6834,7 +7000,7 @@ msgstr ""
"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6844,38 +7010,43 @@ msgstr ""
"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
"razdvojenoj tačkama (npr. 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (drajver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatska IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Pokrenut na bootu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6887,64 +7058,64 @@ msgstr ""
"kao što je ``mojcomp.mojlab.mojafirma.com''.\n"
"Možete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mrežne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet konfiguracija"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li se želite pokušati spojiti na Internet sada?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probavam vašu konekciju..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sistem je sada spojen na Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Iz sigurnosnih razloga, sada će biti odspojen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6952,111 +7123,116 @@ msgstr ""
"Izgleda da sistem nije spojen na Internet.\n"
"Probajte promjeniti postavke vaše konekcije."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Podešavanje konekcije"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Molimo ispunite ili provjerite polje ispod"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaš lični broj telefona"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Naziv provajdera (npr. provajder.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Broj telefona provajdera"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 (opcionalno)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 (opcionalno)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Izaberite vašu državu"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Način biranja broja"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Brzina konekcije"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout konekcije (u sek.)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login naloga (korisničko ime)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Šifra naloga"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Extended particije nisu podržane na ovoj platformi"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Imate rupu u vašoj tabeli particija li je ja ne mogu upotrijebiti.\n"
"Jedino rješenje je da pomjerite vaše primarne particija kako bi rupa bila "
"pored extended particija"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Povratak iz datoteke %s nije uspio: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Loša backup datoteka"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Greška u pisanju datoteke: %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7066,186 +7242,186 @@ msgstr ""
"Test integriteta podataka nije uspio. \n"
"To znači će da pisanje bilo čeka na disk rezultirati smećem"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "obavezno"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "važno"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "vrlo fino"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "fino"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "možda"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokalni štampač"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Udaljeni štampač"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Štampač na udaljenom CUPS serveru"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Štampač na udaljenom lpd serveru"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Mrežni štampač (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Štampač na NetWare serveru"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Unesite URI uređaja štampača"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Spoji zadatak na komandu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Nepoznat model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokalni štampači"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Udaljeni štampači"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB štampač \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", višenamjenski uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", višenamjenski uređaj na USBu"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", višenamjenski uređaj na HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", višenamjenski uređaj"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", štampa u %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na Novell serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", koristeći komandu %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Sirovo štampanje (Bez drajvera)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na ovom računaru)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS serveru \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Default)"
@@ -7267,11 +7443,11 @@ msgstr ""
"Ovdje ne morate podešavati štampače na udaljenim CUPS serverima;\n"
"ovi štampači će biti automatski prepoznati."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Podešavanje CUPSa"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Navedite CUPS server"
@@ -7313,7 +7489,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba biti u formatu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Broj porta treba biti cijeli broj!"
@@ -7321,7 +7497,7 @@ msgstr "Broj porta treba biti cijeli broj!"
msgid "CUPS server IP"
msgstr "IP CUPS servera"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7329,20 +7505,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska konfiguracija CUPSa"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Prepoznajem uređaje ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testiraj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Dodaj novi štampač"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7365,13 +7533,13 @@ msgstr ""
"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
"konekcije štampača."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokalni štampač"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7404,11 +7572,11 @@ msgstr ""
"želite da podesite štampanje na udaljenom štampaču a printerdrake ga ne "
"izlista automatski."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatski prepoznaj štampače"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7432,11 +7600,11 @@ msgstr ""
"štampe...), izaberite opciju \"Štampač\" u \"Hardware\" sekciji Mandrake "
"Kontrolnog centra."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatsko prepoznavanje štampača"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7452,33 +7620,37 @@ msgstr ""
"\n"
"Da li zaista želite da vaši štampači budu prepoznati automatski?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Ručno podesite štampač"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Testiraj portove"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Štampač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB štampač \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7490,11 +7662,11 @@ msgstr ""
"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB štampač: /dev/"
"usb/lp0, drugi USB štampač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Morate unijeti naziv uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7502,7 +7674,7 @@ msgstr ""
"Nije pronađen nijedan lokalni štampač!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7510,7 +7682,7 @@ msgstr ""
"Mrežni štampači mogu biti instalirani samo nakon završetka instalacije. "
"Izaberite \"Hardware\" i zatim \"Štampač\" u Mandrake Kontrolnom centru."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7518,7 +7690,7 @@ msgstr ""
"Da instalirate mrežne štampače, kliknite na \"Odustani\", prebacite na "
"\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi štampač\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7526,7 +7698,7 @@ msgstr ""
"Sljedeći štampač je prepoznat automatski: ako to nije onaj koji želite "
"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7535,7 +7707,7 @@ msgstr ""
"koji želite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
"liniju"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7546,7 +7718,7 @@ msgstr ""
"potpuno automatski. Ako vaš štampač nije ispravno prepoznat ili ako želite "
"sami podesiti štampač, uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7558,7 +7730,7 @@ msgstr ""
"vaš štampač nije ispravno prepoznat ili ako želite sami podesiti štampač, "
"uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7566,11 +7738,11 @@ msgstr ""
"Molimo izaberite port na koji je vaš štampač povezan ili unesite naziv "
"uređaja / naziv datoteke na ulaznoj liniji"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Molimo izaberite na koji port je priključen vaš štampač."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7579,52 +7751,65 @@ msgstr ""
"LPT2:, ..., prvi USB štampač: /dev/usb/lp0, drugi USB štampač: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ručno podešavanje"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Da li je vaš štampač višenamjenski uređaj od HPa (OfficeJet, PSC, "
"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instaliram HPOJ paket..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Provjeravam uređaj i podešavam HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instaliram SANE paket..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaliram pakete..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skeniram na vašem HP višenamjenskom uređaju"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skeniram na vašem HP višenamjenskom uređaju"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Omogućujem CUPSu port štampača ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Čitam bazu podataka o štampačima ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcije udaljenog lpd štampača"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7632,27 +7817,27 @@ msgstr ""
"Da biste koristili udaljeni lpd štampač, morate dati ime računara za printer "
"server i ime štampača na tom serveru."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Ime udaljenog računara"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ime udaljenog štampača"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Ime udaljenog računara nedostaje!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ime udaljenog štampača nedostaje!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcije SMB (Windows 9x/NT) štampača"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7664,35 +7849,35 @@ msgstr ""
"kao i share naziv štampača kojem želite pristupiti i korisničko ime, šifru i "
"informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB server ime"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB server IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Share naziv"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Naziv samba share-a nedostaje!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7716,7 +7901,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7725,7 +7910,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7733,11 +7918,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcije NetWare štampača"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7749,27 +7934,27 @@ msgstr ""
"naziv reda za štampu na štampaču kojem želite pristupiti i eventualno "
"korisničko ime i šifru."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Naziv reda za štampu"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP naziv servera nedostaje!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP naziv reda nedostaje!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/socket opcije štampača"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7780,19 +7965,19 @@ msgstr ""
"opcionalno broj porta. Na HP JetDirect serverima broj porta je obično 9100, "
"na ostalim serverima on može varirati. Pogledajte priručnik vašeg hardware-a."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Hostname štampača"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Hostname štampača nedostaje!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI uređaja štampača"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7802,11 +7987,11 @@ msgstr ""
"CUPS ili Foomatic specifikacije. Obratite pažnju da nisu svi tipovi URIja "
"podržani od svih spoolera."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Trebate unijeti ispravan URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7814,27 +7999,23 @@ msgstr ""
"Svakom štampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
"nije potrebno popuniti. Oni su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Naziv štampača"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Pripremam bazu podataka o štampačima..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model vašeg štampača"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7860,24 +8041,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Model je ispravan"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Izaberite model ručno"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Izbor modela štampača"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Koji model štampača imate?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7891,7 +8072,7 @@ msgstr ""
"prepoznavanje modela vašeg štampača. Potražite ispravan model na listi ako "
"kursor stoji na pogrešnom modelu ili na \"Raw štampač\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7899,11 +8080,11 @@ msgstr ""
"Ako štampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
"štampač) ili sličan."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Podešavanje OKI winprinter-a"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7919,11 +8100,11 @@ msgstr ""
"nego što odštampate testnu stranicu. Inače štampač neće raditi. Drajver će "
"ignorisati vaše podešenje tipa konekcije."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Podešavanje Lexmark inkjet-a"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7935,7 +8116,7 @@ msgstr ""
"Molimo spojite vaš štampač na lokalni port ili ga podesite na računaru na "
"koji je spojen."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7957,7 +8138,7 @@ msgstr ""
"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
"pomoću ovog programa."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7972,22 +8153,22 @@ msgstr ""
"ispravno podešeni. Obratite pažnju da za voma veliku kvalitetu / rezoluciju "
"štampa može postati znatno sporija."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s izvan raspona!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7996,11 +8177,11 @@ msgstr ""
"Da li želite da podesite ovaj štampač (\"%s\")\n"
"kao podrazumjevani štampač?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testna stranica"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8012,39 +8193,39 @@ msgstr ""
"laserskim štampačima sa malo memorije možda neće nikad ni izaći. U većini "
"slučajeva dovoljno je odštampati standardnu testnu stranicu."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Nijedna testna strana"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Štampaj"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardna testna strana"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna strana (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativna testna strana (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto testna strana"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Nemoj štampati testnu stranicu"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Štampam testnu stranicu..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8059,7 +8240,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8067,15 +8248,15 @@ msgstr ""
"Testna stranica je poslana štampaču.\n"
"Može potrajati određeno vrijeme dok štampač krene.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Da li je radilo ispravno?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Sirovi štampač"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8088,7 +8269,7 @@ msgstr ""
"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
"jednostavno odaberete štampač i izmjenite podešenja opcija.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8098,8 +8279,8 @@ msgstr ""
"dijalozima za štampu mnogih aplikacija, ali ovdje ne morate navesti ime "
"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8112,18 +8293,18 @@ msgstr ""
"štampe. Jednostavno dodajte željena podešenja na komandnu liniju, npr. \"%s "
"<datoteka>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač ili pročitajte listu "
"koja je data ispod ili kliknite na dugme \"Lista opcija za štampu\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8131,7 +8312,7 @@ msgstr ""
"Ovo je lista mogućih opcija za štampu za trenutni štampač:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8140,8 +8321,8 @@ msgstr ""
"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8151,7 +8332,7 @@ msgstr ""
"dijalozima za štampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8159,7 +8340,7 @@ msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač kliknite na dugme "
"\"Lista opcija za štampu\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8168,7 +8349,7 @@ msgstr ""
"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8184,7 +8365,7 @@ msgstr ""
"zaustavlja sve zadatke štampe odmah kada kliknete na nju. Ovo je korisno "
"npr. u slučaju zaglavljivanja papira.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8197,38 +8378,49 @@ msgstr ""
"zadatak štampe. Jednostavno dodajte željena podešenja na komandnu liniju, "
"npr. \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Štampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Štampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Štampam/skeniram na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Štampam na štampač \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zatvori"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Lista opcija za štampu"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8242,39 +8434,30 @@ msgstr ""
"\n"
"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
-"skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-hp "
-"%s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još nije "
-"podržano za vaš uređaj. Više informacija možete naći u datoteci\"/usr/share/"
-"doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate HP LaserJet "
-"1100 ili 1200, možete skenirati samo ako ste instalirali opciju za "
-"skeniranje.\n"
-"\n"
-"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Čitam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Premještanje konfiguracije štamapča"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8289,7 +8472,7 @@ msgstr ""
"zadaci štampe neće biti prebačeni.\n"
"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8297,7 +8480,7 @@ msgstr ""
"CUPS ne podržava štampače na Novell serverima ili štampačekoji šalju podatke "
"u komandama slobodnog oblika.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8305,11 +8488,11 @@ msgstr ""
"PDQ podržava samo lokalne štampače, udaljene LPD štampačei Socket/TCP "
"štampače.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podržavaju IPP štampače.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8317,7 +8500,7 @@ msgstr ""
"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
"configure\" ne mogu biti premješteni."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8327,7 +8510,7 @@ msgstr ""
"Također štampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8337,15 +8520,15 @@ msgstr ""
"Označite štampače koje ćete prebacivati i kliknite na \n"
"\"Prebaci\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Nemoj prebacivati štampače"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8356,11 +8539,11 @@ msgstr ""
"Kliknite na \"Prebaci\" da to prepišete.\n"
"Možete također unijeti novo ime ili preskočiti ovaj štampač."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Naziv štampača bi se trebao sastojati od slova, brojeva i donje linije"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8369,16 +8552,16 @@ msgstr ""
"Štampač \"%s\" već postoji,\n"
"da li sigurno želite prepisati ovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Novo ime štampača"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8387,29 +8570,29 @@ msgstr ""
"Prebacili ste vaš bivši podrazumjevani štampač (\"%s\"),Da li će to također "
"biti podrazumjevani štampač podnovim sistemom štampe %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Osvježavam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Podešavanje udaljenog štampača"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Pokrećem mrežu..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Sada podesite mrežu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Mrežna funkcionalnost nije podešena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8421,11 +8604,11 @@ msgstr ""
"mreže, nećete moći koristiti štampač koji sada podešavate. Kako želite da "
"nastavimo?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Nastavi bez podešavanja mreže"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8440,7 +8623,7 @@ msgstr ""
"\"Mreža i Internet\"/\"Konekcija\", a zatim podesite štampač, ponovo "
"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Štampač\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8450,24 +8633,24 @@ msgstr ""
"vašu konfiguraciju i vaš hardware. Onda ponovo pokušajte podesiti udaljeni "
"štampač."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Restartujem sistem za štampu ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "visok"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoičan"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram sistem za štampu na sigurnosnom nivou: %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8491,11 +8674,11 @@ msgstr ""
"\n"
"Da li zaista želite podesiti štampanje na ovom računaru?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Pokrećem sistem za štampu tokom boota"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8515,63 +8698,63 @@ msgstr ""
"\n"
"Da li želite da ponovo uključite automatsko pokretanje sistema za štampu?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Provjeravam instalirani software..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Izaberite spooler štampača"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji sistem štampanja (spooler) želite koristiti?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Podešavam štampač \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcije štampača"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Pripremam PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Podešavam aplikacije..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Da li želite podesiti štampanje?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistem štampe: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8583,7 +8766,7 @@ msgstr ""
"njemu; ili da učinite štampač na udaljenom CUPS serveru upotrebljivim iz "
"Star Office/OpenOffice.org-a."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8593,29 +8776,33 @@ msgstr ""
"postavki; ako ga želite učiniti podrazumjevanim štampačem; ili da biste "
"vidjeli informacije o njemu."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Osvježi listu štampača (kako bi bili prikazani svi dostupni CUPS štampači)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Promjenite sistem štampe"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Izlaz"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Želite li podesiti još jedan štampač?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Izmjeni konfiguraciju štampača"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8624,102 +8811,102 @@ msgstr ""
"Štampač %s\n"
"Šta želite da izmjenite na ovom štampaču?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Uradi!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tip konekcije štampača"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Naziv štampača, opis, lokacija"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Proizvođač štampača, model, drajver"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Proizvođač štampača, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Podesi štampač kao podrazumjevani"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Dodaj ovaj štampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Ukloni ovaj štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Štampaj testnu stranicu"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Saznaj kako koristiti ovaj štampač"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Ukloni štampač"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari štampač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Podrazumjevani štampač"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Štampač \"%s\" je sada podešen kao podrazumjevani štampač."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Dodajem štampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspješno dodan u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Nisam uspio dodati štampač \"%s\" u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Uklanjam štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspješno uklonjen iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Nisam uspio ukloniti štampač \"%s\" iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li želite da uklonite štampač \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Uklanjam štampač \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8803,24 +8990,62 @@ msgstr "Šifre se ne poklapaju. Pokušajte opet!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne mogu dodati particiju na _formatiran_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne mogu pisati datoteku %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid nije uspio"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nije uspio (možda nedostaju raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Ovaj nivo treba koristiti pažljivo. On čini vaš sistem lakšim za upotrebu,\n"
+"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
+"druge ili na Internet. Nema pristupa šifrom."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
+"server.\n"
+"Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
+"prima\n"
+"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
+"Internetu, možda je bolje da izaberete niži nivo."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcije"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA zvučni sistem (Advanced Linux Sound Architecture)"
@@ -8877,7 +9102,7 @@ msgstr ""
"HardDrake pokreće probavanje hardware-a i opcionalno konfiguriše\n"
"novi/izmjenjeni hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8952,7 +9177,7 @@ msgstr ""
"Linux Virtuelni Server, koristi se za izgradnju servera visokih performansi\n"
"i dostupnosti."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9029,7 +9254,7 @@ msgstr ""
"su NFS i NIS. Portmap server mora raditi na računarima koje služe kao\n"
"serveri za protokole koji koriste RPC mehanizam."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9124,7 +9349,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistem"
@@ -9254,6 +9479,7 @@ msgstr ""
"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni centar"
@@ -9374,6 +9600,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instaliram pakete..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molimo izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9382,6 +9617,160 @@ msgstr ""
"Ne mogu čitati vašu tabelu particija, previše je oštećena za mene :(\n"
"Pokušaću izbrisati loše particije"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Premještanje konfiguracije štamapča"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server baze podataka"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server baze podataka"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS server"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nije konektovan"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Obriši"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Sve izabrano"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Podešavam..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguriši"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nema pogodne disketne jedinice"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Greška!"
@@ -9434,6 +9823,11 @@ msgstr ""
"Molimo izaberite za svaki korak da li ćete ga ponoviti kao i u vašoj "
"instalaciji ili će se obaviti ručno"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Pravim auto instalacijsku disketu"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9446,12 +9840,12 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Čestitamo!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9459,28 +9853,19 @@ msgstr ""
"Disketa je uspješno napravljena.\n"
"Sada možete ponoviti vašu instalaciju."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Auto instalacija"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Ukloniti zadnju stavku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9490,7 +9875,7 @@ msgstr ""
" DrakBackup Izvještaj \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9502,19 +9887,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9526,63 +9899,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"lista datoteka poslana putem FTPa : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Greška tokom slanja pošte. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9590,25 +9987,25 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu spasiti ili vratiti sve datoteke u vašem /etc direktoriju.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9616,83 +10013,77 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vašeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Molimo izaberite sve korisnike koje želite uključiti u vaš backup."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Molimo unesite direktorij za\n"
" smještaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Molimo unesite vaš login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Molimo unesite vašu šifru"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Zapamti ovu šifru"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP konekcija"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sigurna konekcija"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Molimo izaberite vaš CD prostor"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9700,7 +10091,7 @@ msgstr ""
"Molim izaberite ako želite uključiti\n"
" instalacijski boot na CDu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9708,16 +10099,21 @@ msgstr ""
"Molim unesite naziv uređaja vašeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9725,51 +10121,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Mreža"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tip"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9777,7 +10179,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9785,71 +10187,67 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Koristi hard disk sa demonom"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Koristi FTP sa demonom"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Molim budite sigurni da je cron demon aktiviran u vašim servisima."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Pošalji mail izvještaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Šta"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Više opcija"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Podešavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje želite backupovati"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "preko mreže"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Molim izaberite šta želite backupovati"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9857,7 +10255,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9865,7 +10263,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9873,7 +10271,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9881,7 +10279,7 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9890,16 +10288,45 @@ msgstr ""
"\n"
"- spasi na hard disku u direktoriju : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Uređaj miša: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- spasi na FTPu na računaru : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- spasi na FTPu na računaru : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9908,7 +10335,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9916,19 +10343,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9937,27 +10364,41 @@ msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Mrežu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Mrežu preko FTPa.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Mrežu preko FTPa.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9965,7 +10406,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9973,131 +10414,134 @@ msgstr ""
"Lista oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobrišite ga idući put."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Svi vaši izabrani podaci su "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspješno spašeni na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je značajan)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Molimo unesite direktorij za spasiti:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP konekcija"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sigurna konekcija"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smješteni backupi"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Pobriši korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pomoć"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Sljedeći"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10105,7 +10549,7 @@ msgstr ""
"Molimo pokrenite Izgradi backup prije vraćanja...\n"
" ili provjerite da li je put za spašavanje ispravan."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10115,31 +10559,35 @@ msgstr ""
" vaš mail izvještaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista paketa za instalaciju"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Greška tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vašu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10147,75 +10595,75 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Šaljem datoteke..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista podataka koji će biti smješteni na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Molim unesite brzinu cd pisača"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Molim unesite naziv uređaja vašeg CD pisača (ex: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Molim uključite ako želite imati instalacioni boot na vašem CDu."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Čarobnjak za podešavanje"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Napredno podešavanje"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10275,7 +10723,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10289,7 +10737,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10367,7 +10815,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10419,13 +10867,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10455,7 +10908,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10531,7 +10984,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10549,7 +11002,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10571,7 +11024,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10650,99 +11103,530 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %sa nije uspjela. Javila se sljedeća greška:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Alati za konzolu"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "na hard disk"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Miš"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Udaljeni štampač"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Share naziv"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Čarobnjak za podešavanje mreže"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentikacija"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Izbor paketa"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Molimo sačekajte"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post Uninstall"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Podešavanje mreže (%d adaptera)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Briši profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil za brisanje:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novi profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
+"postojećeg) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Hostname: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Pristup Internetu"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tip:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfejs:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Molim sačekajte"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Podesi Internet pristup..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Podešavanje LANa"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drajver"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfejs"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Podesi Lokalnu mrežu..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Čarobnjak..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Primjeni"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Konektovan"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nije konektovan"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konektuj se..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Prekini konekciju..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijedan podešen interfejs.\n"
+"Podesite ih prvo klikajući na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Podešavanje LANa"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot protokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Pokrenut na bootu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "pokreni sada"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "zaustavi sada"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Interfejs još nije podešen.\n"
+"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijednu Internet konekciju.\n"
+"Napravite jednu klikajući na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Podešavanje Internet konekcije"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Podešavanje Internet konekcije"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tip konekcije: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet kartica"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "koristi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Naziv modula"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Veličina"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Kreiranje boot diskete"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "Podrazumijevano"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy greška: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kernel verzija"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Općenito"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspert područje"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opcionalni argumenti"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Dodaj modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "prisili"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ako je potrebno"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "izostavi scsi module"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "izostavi raid module"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ukloni modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ispis"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Napravi disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Provjeri da li je medij prisutan za ovaj uredjaj %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Nema medija za ovaj uredjaj %s.\n"
+"Molim ubacite ga."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne mogu izvrsiti fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Pretraži instalirane fontove"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Isključi instalirane fontove"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "obradi sve fontove"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nije pronađen nijedan font"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "gotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "ne mogu naći nijedan font na montiranim particijama"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ponovo izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "ne mogu naći nijedan font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Pretraži fontove na listi instaliranih"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "molimo sačekajte tokom ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Završena True Type instalacija"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverzija fontova"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "type1inst kreiranje"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript referenciranje"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf fonts konverzija"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm fonts konverzija"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Onemogući privremene datoteke"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Restartuj XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Onemogući datoteke fontova"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "restart xfs-a"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10756,107 +11640,107 @@ msgstr ""
"-Možete instalirati fontove koristeći uobičajen način. U rijetkim "
"slučajevima, neispravni fontovi mogu zaglaviti vaš X Server."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Deinstaliraj fontove"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Napredne opcije"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista fontova"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Izaberite aplikacije koje će podržavati fontove :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Razni štampači"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Lista instalacije"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "kliknite ovdje ako ste sigurni."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "ovdje ako ne."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Ništa izabrano"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Sve izabrano"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Pobriši listu"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Probni inicijali"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopiraj fontove na sistem"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instaliraj i konvertuj fontove"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post Install"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Pobriši fontove sa mog sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post Uninstall"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet konekcije"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10868,31 +11752,31 @@ msgstr ""
"\n"
"Šta želite uraditi?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "isključi"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "otkaži"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "rekonfiguriši"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Isključujem servere..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje Internet konekcije je sada isključeno."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10904,19 +11788,19 @@ msgstr ""
"\n"
"Šta želite uraditi?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "uključi"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Uključujem servere..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje Internet konekcije je sada uključeno."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10932,21 +11816,21 @@ msgstr ""
"Napomena: potreban vam je poseban Mrežni adapter da biste podesili Lokalnu "
"mrežu (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfejs %s (koristeći modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfejs %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nema mrežnog adaptera na vašem sistemu!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10954,11 +11838,11 @@ msgstr ""
"Na vašem sistemu nije pronađen nijedan ethernet mrežni adapter. Molimo "
"pokrenite alat za podešavanje hardware-a."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Mrežni interface"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10973,18 +11857,18 @@ msgstr ""
"\n"
"Sada ću podesiti vašu Lokalnu mrežu sa ovim adapterom."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo izaberite koji mrežni adapter će biti spojen na vašu Lokalnu mrežu."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Mrežni interfejs je već podešen"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10999,15 +11883,15 @@ msgstr ""
"\n"
"To možete obaviti ručno, ali morate znati šta radite."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatsko ponovno podešavanje"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Prikaži postavke trenutnog interfejsa"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11024,7 +11908,7 @@ msgstr ""
"IP atributi: %s\n"
"Drajver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11043,33 +11927,33 @@ msgstr ""
"Ako ne, mogu ponovo podesiti vaš interfejs i podesiti DHCP server za vas.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokalna mreža C klase"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP adresa (ovog) DHCP servera"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Ponovo podesi interfejs i DHCP server"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mreža se ne završava sa `.0', izlazim."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Otkrivena konfiguracija firewalla!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11077,20 +11961,20 @@ msgstr ""
"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
"potrebno neko ručno podešavanje nakon instalacije."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Podešavam..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi tokom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11100,23 +11984,23 @@ msgstr ""
"Sada možete dijeliti Internet konekciju sa ostalim računarima na vašoj "
"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Podešavanje je već završeno, ali je trenutno isključeno."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Podešavanje je već završeno i trenutno je uključeno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje Internet konekcije nije nikad podešeno."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Podešavanje dijeljenja Internet konekcije"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11131,215 +12015,6 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Podešavanje mreže (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Briši profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za brisanje:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
-"postojećeg) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Pristup Internetu"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfejs:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Molim sačekajte"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podesi Internet pristup..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Podešavanje LANa"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drajver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfejs"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi Lokalnu mrežu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Čarobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektovan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije konektovan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektuj se..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Prekini konekciju..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijedan podešen interfejs.\n"
-"Podesite ih prvo klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Podešavanje LANa"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenut na bootu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "pokreni sada"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "zaustavi sada"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Interfejs još nije podešen.\n"
-"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijednu Internet konekciju.\n"
-"Napravite jednu klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Podešavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Podešavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip konekcije: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Podešavanje nivoa sigurnosti"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolni centar"
@@ -11348,63 +12023,85 @@ msgstr "Kontrolni centar"
msgid "Choose the tool you want to use"
msgstr "Izaberite alat koji želite koristiti"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kablovska)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kablovska)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japan (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (kablovska)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Istočna Evropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francuska"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irska"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Zapadna Evropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australija"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Južna Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11412,27 +12109,44 @@ msgstr ""
"Molim,\n"
"unesite vaš tv standard i državu"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Pretraga TV kanala je u toku ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Tražim TV kanale"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Došlo je do greške kod instaliranja paketa:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11477,7 +12191,7 @@ msgstr "Ne mogu da pokrenem live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11487,7 +12201,7 @@ msgstr "Prikaži samo za izabrani dan"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/File/_New"
+msgstr "/Datoteka/_Nova"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11511,7 +12225,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Datoteaka/Sačuvaj _kao"
+msgstr "/_Datoteka/Sačuvaj K_ao"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11525,10 +12239,6 @@ msgstr "/_Opcije"
msgid "/Options/Test"
msgstr "/Opcije/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoć"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Pomoć/_O programu..."
@@ -11589,7 +12299,7 @@ msgstr "Kalendar"
msgid "Content of the file"
msgstr "Sadržaj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Mail/SMS obavijest"
@@ -11598,11 +12308,11 @@ msgstr "Mail/SMS obavijest"
msgid "please wait, parsing file: %s"
msgstr "molim sačekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Podešavanje Mail/SMS obavijesti"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11612,65 +12322,97 @@ msgstr ""
"\n"
"Ovdje možete podesiti sistem obavještavanja.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ime domena"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail server, Inn news server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servisi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer Server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "postavke servisa"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Možete primiti obavještenje ako neki od izabranih servisa prestane raditi"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "postavka opterećenja"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "postavka upozorenja"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Podesite način na koji će vas sistem obavijestiti"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Sačuvaj kao..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Molimo izaberite vrstu vašeg miša."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nije pronađen serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliraj treće dugme?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Čitam podatke o štampaču..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Prepoznajem uređaje ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11716,6 +12458,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Podešavanje firewalla"
@@ -12120,10 +12874,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedija - Zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Korisni programi"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentacija"
@@ -12227,10 +12977,6 @@ msgstr ""
"pregledanje Weba"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, nadzor"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Lične finansije"
@@ -12278,59 +13024,207 @@ msgstr "Multimedija - Prženje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
-#~ msgid "About"
-#~ msgstr "O programu"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikacija grafičke karte: %s\n"
-#~ msgid " Help "
-#~ msgstr " Pomoć "
+#~ msgid "Choose options for server"
+#~ msgstr "Izaberite opcije za server"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-2,*-r-*"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor nije konfigurisan"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafička karta još uvijek nije konfigurisana"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezolucije još nisu odabrane"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Ne mogu pristupiti kernel modulima koji odgovaraju vašem kernelu "
-#~ "(nedostaje datoteka %s)"
+#~ "\n"
+#~ "probajte izmjeniti neke parametre"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Došlo je do greške"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Napuštam za %d sekundi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Da li je ovo ispravna vrijednost?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Došlo je do greške, probajte izmjeniti neke parametre"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Prikaži sve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pripremam X-Window konfiguraciju"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Šta želite učiniti?"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Change Monitor"
+#~ msgstr "Izmjena Monitora"
-#~ msgid "None"
-#~ msgstr "Nijedan"
+#~ msgid "Change Graphics card"
+#~ msgstr "Izmjena Grafičke kartice"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Izaberite default štampač!"
+#~ msgid "Change Server options"
+#~ msgstr "Izmjena Server opcija"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Izmjena Rezolucije"
+
+#~ msgid "Show information"
+#~ msgstr "Prikaži informacije"
+
+#~ msgid "Test again"
+#~ msgstr "Testiraj ponovo"
#~ msgid ""
-#~ "With remote CUPS servers, you do not have to configure any printer here; "
-#~ "CUPS servers inform your machine automatically about their printers. All "
-#~ "printers known to your machine currently are listed in the \"Default "
-#~ "printer\" field. Choose the default printer for your machine there and "
-#~ "click the \"Apply/Re-read printers\" button. Click the same button to "
-#~ "refresh the list (it can take up to 30 seconds after the start of CUPS "
-#~ "until all remote printers are visible). When your CUPS server is in a "
-#~ "different network, you have to give the CUPS server IP address and "
-#~ "optionally the port number to get the printer information from the "
-#~ "server, otherwise leave these fields blank."
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
#~ msgstr ""
-#~ "Sa udaljenim CUPS serverom, ne morate podešavati nijedan\n"
-#~ "štampač ovdje; CUPS serveri obavještavaju vaš računar automatski\n"
-#~ "o svojim štampačima. Svi štampači koji su trenutno poznati vašem\n"
-#~ "računaru su izlistani u polju \"Podrazumjevani štampač\". Izaberite "
-#~ "podrazumjevani\n"
-#~ "štampač za vaš računar ovdje i kliknite na dugme \"Primjeni/Ponovo\n"
-#~ "pročitaj štampače\". Kliknite na isto dugme za osvježavanje liste (može\n"
-#~ "trajati do 30 sekundi nakon pokretanja CUPSa dok svi udaljeni štampači\n"
-#~ "ne postanu vidljivi). Kada je vaš CUPS server u različitoj mreži, morate "
-#~ "dati\n"
-#~ "IP adresu CUPS servera i eventualno broj porta kako bi se dobavile "
-#~ "informacije\n"
-#~ "o štampačima sa servera, inače ostavite ova polja praznim."
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Primjeni/Ponovo pročitaj štampače"
-
-#~ msgid "Configure printing system"
-#~ msgstr "Podešavanje sistema štampe"
+#~ "Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
+#~ "skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-"
+#~ "hp %s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još "
+#~ "nije podržano za vaš uređaj. Više informacija možete naći u datoteci\"/"
+#~ "usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate "
+#~ "HP LaserJet 1100 ili 1200, možete skenirati samo ako ste instalirali "
+#~ "opciju za skeniranje.\n"
+#~ "\n"
+#~ "Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Koristi hard disk sa demonom"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Koristi FTP sa demonom"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista paketa za instalaciju"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Podešavanje nivoa sigurnosti"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafička karta"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Izaberite grafičku kartu"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Izaberite X drajver"
+
+#~ msgid "X driver"
+#~ msgstr "X drajver"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standardna VGA, 640x480 na 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 na 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ako želite da instalirate manje od ove veličine,\n"
+#~ "izaberite procenat paketa koje želite instalirati.\n"
+#~ "\n"
+#~ "Nizak procenat će instalirati samo one najbitnije pakete;\n"
+#~ "procenat 100%% će instalirati sve izabrane pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Na disku imate mjesta samo za %d%% ovih paketa.\n"
+#~ "\n"
+#~ "Ako želite da instalirate manje od ovoga,\n"
+#~ "izaberite procenat paketa koje želite da instalirate.\n"
+#~ "Nizak procenat će instalirati samo one najbitnije pakete;\n"
+#~ "procenat %d%% će instalirati najveći mogući broj paketa."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procenat paketa za instalaciju"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Izaberite nivo sigurnosti"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 0663d463f..a28b6db58 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1,37 +1,67 @@
-# drakX translation to Catalan
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Copyright (c) 1999-2001 Softcatal
+# drakbootdisk translation to Catalan.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Softcatala, linux@softcatala.org, 2000-2001
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-04-10 23:29+0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatal <traddrake@softcatala.org>\n"
-"Language-Team: Catalan\n"
+"Language-Team: Catalan <info@softcatala.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configura tots els capals independentment"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Utilitza l'extensi Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configura noms la targeta \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o ms"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Escolliu un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuraci Multi-head"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,43 +69,44 @@ msgstr ""
"El vostre sistema permet l's d'una configuraci de mltiples capals.\n"
"Qu voleu fer?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Targeta grfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccioneu la mida de memria de la vostra targeta grfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccioneu una targeta grfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuraci de l'XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolliu un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quina configuraci de l'XFree voleu tenir?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configura tots els capals independentment"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolliu un servidor X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Utilitza l'extensi Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configura noms la targeta \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quina configuraci de l'XFree voleu tenir?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "Xfree %s amb acceleraci 3D de maquinari"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,34 +116,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleraci 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "Xfree %s amb acceleraci 3D de maquinari"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"La vostra targeta pot tenir acceleraci 3D de maquinari amb l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleraci 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +140,58 @@ msgstr ""
"PENJAR.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"La vostra targeta pot tenir acceleraci 3D de maquinari amb l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuraci de l'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccioneu la mida de memria de la vostra targeta grfica"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolliu les opcions per al servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Voleu conservar els canvis?La configuraci actual s:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalitzada"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "General"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Desfs"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -172,516 +214,328 @@ msgstr ""
"el podreu fer malb.\n"
"En cas de dubte, sigueu conservador amb aquest parmetre."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no est configurat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La targeta grfica encara no est configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Encara no s'han escollit les resolucions"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Voleu comprovar la configuraci?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Avs: la comprovaci d'aquesta targeta grfica pot penjar-vos l'ordinador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Comprova la configuraci"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colors (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intenteu canviar alguns parmetres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.768 colors (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "S'ha produt un error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.536 colors (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Sortida en %d segons"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milions de colors (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "s aquest el parmetre corrcte?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4.294 milions de colors (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "S'ha produt un error, intenteu canviar alguns parmetres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolucions"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resoluci"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Escolliu la resoluci i la profunditat de color"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Targeta grfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor xFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Ms"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancella"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "D'acord"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostra'ls tots"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Voleu comprovar la configuraci?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucions"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Comprova la configuraci"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposici del teclat: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipus de ratol: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositiu del ratol: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Sincronitzaci horitzontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresc vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Targeta grfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Targeta grfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memria grfica: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profunditat del color: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resoluci: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "S'est preparant la configuraci de l'X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Qu voleu fer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Canvia el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Canvia la targeta grfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Canvia les opcions del servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Canvia la resoluci"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostra la informaci"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Torna-ho a comprovar"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Surt"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Voleu conservar els canvis?La configuraci actual s:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X a l'inici"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Puc configurar el vostre ordinador de manera que executi X automticament "
"durant l'arrencada.\n"
"Voleu que X s'inici quan torneu a arrencar l'ordinador?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colors (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.768 colors (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.536 colors (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milions de colors (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4.294 milions de colors (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB o ms"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estndard, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaada (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrellaada, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA no entrellaada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'alta freqncia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-freqncia que pot fer 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-freqncia que pot fer 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-freqncia que pot fer 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primer sector de la partici d'arrencada"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Installaci del SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "On voleu installar el carregador d'arrencada?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Installaci del LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO amb men de text"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO amb men grfic"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrencada des de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opcions principals del carregador d'arrencada"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Carregador d'arrencada a utilitzar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installaci del carregador d'arrencada"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona en BIOS antics)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacte"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode de vdeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limita les opcions de la lnia d'ordres"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Habilita perfils mltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Introduu la mida de la RAM en Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opci ``Limita les opcions de la lnia d'ordres'' no t cap s sense una "
"contrasenya"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Missatge d'inicialitzaci"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Demora de firmware obert"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Temps mxim d'arrencada del nucli"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Voleu habilitar l'arrencada des de CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS per defecte?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -690,84 +544,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Aquestes sn les diferents entrades.\n"
"Podeu afegir-ne algunes ms o canviar-ne les existents."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fet"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Modifica el RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Predeterminat"
@@ -802,53 +656,75 @@ msgstr "Aquesta etiqueta ja est en s"
# #msgid "Found %s %s interfaces"
# #msgstr "S'han trobat interfcies %2$s %1$s"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, fuzzy, c-format
msgid "Found %s %s interfaces"
msgstr "S'han trobat interfcies %2$s %1$s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfcie %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "S"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Mira la informaci del maquinari"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "S'est installant el programa de control per a la targeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mdul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ara podeu proporcionar les seves opcions per al mdul %s.\n"
+"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
+"Per exemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcions del mdul:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -865,37 +741,15 @@ msgstr ""
"cerqui al vostre ordinador la informaci que necessita? Aquesta recerca\n"
"podria blocar l'ordinador, per aix no causaria cap dany."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Exploraci automtica"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ara podeu proporcionar les seves opcions per al mdul %s.\n"
-"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
-"Per exemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcions del mdul:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,50 +758,55 @@ msgstr ""
"Ha fallat la crrega del mdul %s.\n"
"Voleu tornar-ho a intentar amb altres parmetres?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Aquesta contrasenya s massa senzilla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Si us plau, introduu un nom d'usuari"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari noms pot contenir lletres en minscula, nmeros, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Aquest nom d'usuari ja s'ha afegit"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -956,32 +815,32 @@ msgstr ""
"Introduu un usuari\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Entrada automtica"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -991,123 +850,103 @@ msgstr ""
"nom d'usuari.\n"
"Si no voleu utilitzar aquesta caracterstica, feu clic al bot Cancella."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per omissi:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Podeu seleccionar altres idiomes, que quedaran disponibles desprs de la "
"installaci"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tots"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalitzada"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "S'est iniciant el CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Quins paquets voleu installar"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancella"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Estndard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alt"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alt"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1118,7 +957,7 @@ msgstr ""
"d'utilitzar, per tamb molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjanant contrasenya."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1126,7 +965,7 @@ msgstr ""
"Ara, la contrasenya est habilitada, per l's com a ordinador de xarxa "
"segueix sense ser recomanable."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1136,62 +975,63 @@ msgstr ""
"s'utilitzar per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Amb aquest nivell de seguretat, la utilitzaci d'aquest sistema com a\n"
"servidor esdev possible.\n"
"La seguretat s ara prou alta com per utilitzar el sistema com a servidor\n"
"que accepti connexions de molts clients. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Assumim les caracterstiques del nivell 4, per ara el sistema est\n"
"totalment tancat.\n"
"Les caracterstiques de seguretat estan al mxim."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escolliu el nivell de seguretat"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "S'est establint el nivell de seguretat"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolliu les opcions per al servidor"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1216,13 +1056,13 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1230,39 +1070,39 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prvies a l'arrencada, o 'c' per obtenir una lnia d'ordres."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posici ressaltada arrencar automticament dintre de %d segons."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Men Inici"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "On voleu installar el carregador d'arrencada?"
@@ -1275,15 +1115,19 @@ msgstr "encara no s'ha implementat cap ajuda.\n"
msgid "Boot Style Configuration"
msgstr "Configuraci del tipus d'arrencada"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxer"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fitxer/_Surt"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1318,7 +1162,7 @@ msgstr "Mode Yaboot"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Benvingut a la utilitat de compartici de la connexi a Internet!\n"
@@ -1327,8 +1171,8 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuraci."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configura"
@@ -1338,7 +1182,7 @@ msgid "System mode"
msgstr "Mode de sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
#: ../../bootlook.pm_.c:148
@@ -1349,14 +1193,16 @@ msgstr "No, no vull l'entrada automtica"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "S, vull l'entrada automtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "D'acord"
@@ -1407,7 +1253,7 @@ msgstr ""
"Podeu seleccionar altres idiomes, que quedaran disponibles desprs de la "
"installaci"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frana"
@@ -1415,7 +1261,7 @@ msgstr "Frana"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1443,11 +1289,12 @@ msgstr "Noruec"
msgid "Sweden"
msgstr "Consulteu"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itali"
@@ -1457,7 +1304,7 @@ msgstr "Itali"
msgid "Austria"
msgstr "srie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1465,8 +1312,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una cpia de seguretat de les vostres dades"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
@@ -1479,11 +1326,12 @@ msgstr ""
"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2.048\n"
"sectors n'hi ha prou) al comenament del disc"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Error"
@@ -1491,11 +1339,11 @@ msgstr "Error"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Trieu una acci"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1507,150 +1355,155 @@ msgstr ""
"Suggereixo que primer en canvieu la mida\n"
"(feu-hi clic i desprs feu clic a \"Canvia la mida\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partici "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalls"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ha fallat el muntatge"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercanvia"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Buit"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Altres"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipus"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Suprimeix"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Desprs de canviar el tipus de la partici %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Trieu una acci"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Crea una nova partici"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normal > Expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Expert > Normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Desfs"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voleu comprovar la configuraci?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Assigna automticament"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Ms"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Informaci del correu"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primries"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "No puc afegir cap ms partici"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1658,35 +1511,35 @@ msgstr ""
"Per tenir ms particions, suprimiu-ne una per poder crear una partici "
"ampliada"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Escriu la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Muntatge automtic del suport extrable"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1694,11 +1547,11 @@ msgstr ""
"La cpia de seguretat de la taula de particions no t la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertncia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1706,124 +1559,131 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "S'est intentant rescatar la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Informaci del correu"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punt de muntatge"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcions"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Afegeix al LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Elimina del LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crea una nova partici"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferncia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "S'est formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Canvia el tipus de partici"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1831,129 +1691,134 @@ msgstr ""
"No es pot anullar el punt de muntatge, perqu aquesta partici\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els lmits del sistema de fitxers de la FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "S'est canviant la mida"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partici"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una cpia de seguretat de totes les dades d'aquesta partici"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Desprs de canviar la mida de la partici %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaar?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "A quin sector us voleu desplaar?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "S'est desplaant"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "S'est desplaant la partici..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Escolliu un LVM existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nom LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Aquesta partici no es pot utilitzar per al loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nom real"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja est utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Opcions del mdul:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivell"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operaci s perillosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Quins paquets voleu installar"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1965,7 +1830,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionar, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1978,7 +1843,7 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"partici /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1989,138 +1854,138 @@ msgstr ""
"boot.\n"
"Per tant, assegureu-vos d'afegir una partici /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriur al disc!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldr tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Desprs de formatar la partici %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "S'est formatant"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'est formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "S'est formatant la partici %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "l'mkraid ha fallit"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resoluci: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (noms s una suposici)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nom: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindre %d a cilindre %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Fitxer(s) de loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2128,27 +1993,27 @@ msgstr ""
"La partici s'ha arrencat per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2160,7 +2025,7 @@ msgstr ""
"una partici de programa de control;\n"
"s millor que no la toqueu.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2172,65 +2037,65 @@ msgstr ""
"especial s per arrencar\n"
"el vostre sistema en dual.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capals, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informaci: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "al bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya s massa senzilla (ha de tenir com a mnim %d carcters)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2241,36 +2106,66 @@ msgstr "Canvia el tipus de partici"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Si us plau, feu clic a una partici "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticaci"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nom d'usuari"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nom d'usuari"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domini del NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "servidor DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "no s com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produt un error en muntar %s: %s"
@@ -2287,70 +2182,323 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de comenar amb una /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partici amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No podeu utilitzar un volum lgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necessiteu un sistema de fitxers real (ext2, reiserfs) per a aquest punt de "
"muntatge\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "No podeu utilitzar un volum lgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignaci automtica"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produt un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"S'ha produt un error: no s'han trobat dispositius vlids on crear nous "
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "No teniu cap partici!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Utilitza la detecci automtica"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "General"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Targeta de memria (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "s'est formatant"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Canvia el tipus de partici"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Surt"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ajuda/_Quant a.."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Mdul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Targeta de memria (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancella"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Mdul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descripci"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticaci"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Seleccioneu el fitxer"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositiu de la passarella"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detecci del disc dur"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Mira la informaci del maquinari"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostra la informaci"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configura el ratol"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectat al port %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Si us plau, espereu"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segons"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "S'est llegint la base de dades de controladors CUPS..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Exploraci automtica"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2364,7 +2512,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2480,9 +2628,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2678,7 +2825,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2690,9 +2837,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2738,21 +2884,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2768,9 +2913,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ara s quan heu de decidir en quin lloc del vostre disc dur voleu "
"installar\n"
@@ -2859,9 +3004,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3005,38 +3149,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3233,11 +3371,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3296,7 +3434,7 @@ msgstr ""
"d'installaci\n"
"tret que sapigueu qu esteu fent."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3311,7 +3449,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3326,7 +3464,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3342,7 +3480,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3350,23 +3488,23 @@ msgstr ""
"Si us plau, seleccioneu el port correcte. Per exemple, el port COM1 en MS\n"
"Windows s'anomena ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3388,7 +3526,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3410,7 +3548,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3418,7 +3556,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3439,7 +3577,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3463,7 +3601,7 @@ msgstr ""
"operatius; en aquest cas podeu suprimir les entrades corresponents, per\n"
"aleshores us caldr un disc d'arrencada per poder-los arrencar!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3478,29 +3616,28 @@ msgstr ""
"Tret que sabeu exactament qu esteu fent, escolliu \"Primer sector\n"
"de la unitat (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3509,7 +3646,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3535,7 +3672,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"El DrakX intentar trobar el(s) adaptador(s) SCSI PCI. \n"
@@ -3562,7 +3699,7 @@ msgstr ""
"maquinari, del lloc web del fabricant (si teniu accs a Internet) o del\n"
"Microsoft Windows (si el teniu al sistema)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3573,9 +3710,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3587,7 +3723,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3676,7 +3812,7 @@ msgstr ""
"Aquesta opci tamb es ressaltar amb un '*' si premeu Tab per veure les\n"
"seleccions d'arrencada."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3704,9 +3840,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3757,10 +3892,10 @@ msgstr ""
" - OS per defecte: podeu seleccionar amb quin OS, per defecte, s'arrencar\n"
"quan la demora de l'Open Firmware venci."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3768,12 +3903,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3789,7 +3923,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3800,7 +3934,7 @@ msgstr ""
"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran "
"recuperar."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3821,7 +3955,7 @@ msgstr ""
"dada\n"
"ni partici d'aquest disc."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3829,12 +3963,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3849,20 +3983,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissi sense un domini NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no est formatat en FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3870,7 +4004,7 @@ msgstr ""
"Per utilitzar aquesta selecci de paquets desada, arrenqueu la installaci "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produt un error en llegir el fitxer %s"
@@ -3900,7 +4034,7 @@ msgstr "Heu de tenir una partici d'intercanvi"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3908,60 +4042,60 @@ msgstr ""
"\n"
"Voleu continuar igualment?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Heu de tenir una partici d'intercanvi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Utilitza l'espai lliure"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Utilitza la partici existent"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "No existeix cap partici per utilitzar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Utilitza la particio Windows per al loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quina partici voleu utilitzar per al Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Escolliu les mides"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Mida de la partici arrel en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Mida de la partici d'intercanvi en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Utilitza l'espai lliure de la partici de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "A quina partici voleu canviar la mida?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "S'estan calculant els lmits del sistema de fitxers de Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3970,13 +4104,16 @@ msgstr ""
"El redimensionador de la FAT no pot gestionar la vostra partici, \n"
"s'ha produt l'error segent: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"La partici de Windows est massa fragmentada; si us plau, executeu "
"``defrag'' primer"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3999,55 +4136,55 @@ msgstr ""
"vostres dades.\n"
"Quan estigueu segur, premeu D'acord."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Quina mida voleu deixar per a la partici de Windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partici %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ha fallat la redimensi de la FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"No hi ha particions FAT a qu canviar la mida o per utilitzar-les com a "
"loopback (o no queda prou espai)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Esborra el disc complet"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Elimina el Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teniu ms d'un disc dur; en quin voleu installar el Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionament personalitzat de disc"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Utilitza l'fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4056,11 +4193,11 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utiltzant `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "No teniu prou espai lliure a la partici de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "No puc trobar espai per a la installaci"
@@ -4069,16 +4206,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'assistent de particionament del DrakX ha trobat les solucions segents:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "S'est activant la xarxa"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "S'est desactivant la xarxa"
@@ -4090,12 +4227,12 @@ msgstr ""
"S'ha produt un error, per no s com gestionar-lo correctament.\n"
"Si continueu, s sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4107,12 +4244,12 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador installat mitjanant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -4122,9 +4259,9 @@ msgstr "No hi ha cap unitat de disquet disponible"
msgid "Entering step `%s'\n"
msgstr "S'est introduint el pas `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4135,204 +4272,158 @@ msgstr ""
"mode text. Per fer-ho, premeu `F1' en arrencar des del CD-ROM i escriviu "
"`text'"
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Tipus d'installaci"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'installaci segents:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si no voleu installar tants MB, seleccioneu el percentatge de paquets\n"
-"que voleu installar.\n"
-"\n"
-"Un percentatge baix installar noms els paquets ms importants;\n"
-"un percentatge del 100%% installar tots els paquets seleccionats."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Noms teniu prou espai al disc per a %d%% d'aquests paquets.\n"
-"\n"
-"Si en voleu installar menys, seleccioneu el percentatge de paquets\n"
-"que voleu installar.\n"
-"Un percentatge baix installar noms els paquets ms importants;\n"
-"un percentatge del %d%% installar tants paquets com sigui possible."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Podreu fer una elecci ms concreta al pas segent"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentatge de paquets per installar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selecci del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selecci individual de paquets"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versi: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Mida: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importncia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No podeu seleccionar aquest paquet perqu no queda prou espai per installar-"
"lo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Ara s'installaran els paquets segents"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Ara s'eliminaran els paquets segents"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet s obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "No podeu desseleccionar aquest paquet; ja est installat"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostra automticament els paquets seleccionats"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installa"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Desa la selecci de paquets"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalla"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu installar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "S'est installant"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "S'est estimant"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Si us plau, espereu, s'est preparant la installaci"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "S'est installant el paquet %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accepta"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4348,17 +4439,17 @@ msgstr ""
"Si no el teniu, premeu Cancella per no fer la installaci des d'aquest CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "S'ha produt un error en ordenar els paquets"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "S'ha produt un error en installar els paquets"
@@ -4435,11 +4526,11 @@ msgstr "S'ha produt un error"
msgid "Do you really want to leave the installation?"
msgstr "Voleu reiniciar la xarxa"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acord de llicncia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4454,7 +4545,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4663,114 +4754,118 @@ msgstr ""
"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
"contacte amb MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclat"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Si us plau, selecioneu la disposici del vostre teclat."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Aquesta s la llista completa de teclats disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Quin tipus d'installaci voleu?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installa/Actualitza"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Es tracta d'una installaci o d'una actualitzaci?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomanada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Actualitza"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Desa la selecci de paquets"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port del ratol"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port srie a qu est connectat el vostre ratol."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulaci dels botons"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulaci del bot 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulaci del bot 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "S'estan configurant les targetes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "S'est configurant l'IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "no hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4781,7 +4876,7 @@ msgstr ""
"L'altra soluci s impedir al DrakX que modifiqui la taula de particions.\n"
"(l'error s %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4789,143 +4884,146 @@ msgstr ""
"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
"Si continueu, s sota la vostra responsabilitat!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "No s'ha trobat cap partici arrel"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partici arrel"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Quina s la partici arrel (/) del vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldr tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'est creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"No hi ha prou intercanvi per completar la installaci; si us plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "S'estan cercant els paquets disponibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "No podeu desseleccionar aquest paquet; ja est installat"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Al vostre sistema no li queda prou espai per a la installaci o "
"actualitzaci (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mnima (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomanada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaura des del disquet"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaura des del disquet"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Selecci del grup de paquets"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Escolliu el paquet a installar"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Espera"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4935,16 +5033,16 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancella.\n"
"Si noms falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "S'est preparant la installaci"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4953,23 +5051,23 @@ msgstr ""
"S'est installant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Publica la configuraci de la installaci "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5034,171 +5132,202 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"S'est contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu un mirror al qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"S'est contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "En quina zona horria us trobeu?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador est regulat a GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Cap impressora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "En teniu una altra?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Ratol"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zona horria"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Utilitza el NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Elimina el Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Impressora local"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya s massa senzilla (ha de tenir com a mnim %d carcters)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticaci"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticaci"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS d'autenticaci"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticaci"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Domini del NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5228,19 +5357,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5268,7 +5397,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5277,30 +5406,30 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "S'est creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "S'est preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5308,11 +5437,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5321,18 +5450,18 @@ msgstr ""
"voleu intentar igualment la installaci encara que aix destrueixi la "
"primera partici?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Installa el LILO"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la installaci del carregador d'arrencada. S'ha produt l'error "
"segent:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5350,18 +5479,17 @@ msgstr ""
" Desprs, escriviu: shut-down\n"
"En l'arrencada segent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "S'est creant el diquet d'installaci automtica"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5371,7 +5499,8 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5382,7 +5511,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5396,18 +5525,22 @@ msgstr ""
"Mandrake Linux a la fe d'errates que hi ha a \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"La informaci sobre com configurar el vostre sistema est disponible a\n"
"l'ltim captol d'installaci de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la installaci automtica"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5422,15 +5555,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la installaci.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automtica"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Desa la selecci de paquets"
@@ -5458,421 +5591,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Trieu una acci"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanat"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Si us plau, espereu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informaci"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandeix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Redueix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Commuta entre pla i ordenat per grups"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Elecci incorrecta, torneu-ho a intentar\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "La vostra elecci? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "La vostra elecci? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcions: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "La vostra elecci? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Txec (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fins"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francs"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polons"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Teclat EU"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Irani"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeni (mquina d'escriure)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeni (fontic)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjans (llat)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeni (fontic)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Blgar"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielors"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Sus (disposici alemanya)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Sus (disposici francesa)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Txec (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dans"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruec)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoni"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgi (disposici \"russa\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgi (disposici \"llatina\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongars"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israeli (fontic)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Irani"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islands"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itali"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japons de 106 tecles"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Teclat core"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Espanyol sud-americ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litu AZERTY (antic)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litu AZERTY (nou)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litu \"fila de nmeros\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litu \"fontic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Ubicaci"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedoni"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holands"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polons (disposici qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polons (disposici qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugus"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Eslov"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovac (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovac (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidjans (cirllic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Taula"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucrans"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"fila numrica\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslau (llat/cirllic)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5885,7 +6002,31 @@ msgstr "Muntatges circulars %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lgics\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Nmero de telfon"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formata les particions"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5926,10 +6067,6 @@ msgstr "1 bot"
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "General"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "De bola"
@@ -5994,38 +6131,54 @@ msgstr "cap"
msgid "No mouse"
msgstr "Cap ratol"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratol."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Per activar el ratol,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Fins"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Segent ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Aix s correcte?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informaci"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandeix l'arbre"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Redueix l'arbre"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Commuta entre pla i ordenat per grups"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connecta't a internet"
@@ -6072,7 +6225,7 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
"No puc configurar aquest tipus de connexi."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Escolliu la interfcie de xarxa"
@@ -6087,7 +6240,7 @@ msgstr ""
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "S'est configurant la xarxa"
@@ -6103,15 +6256,15 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nom de l'ordinador central"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Assistent de configuraci de xarxa"
@@ -6159,7 +6312,7 @@ msgstr "Configuraci de l'XDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccioneu el vostre provedor.\n"
" Si no s a la llista, seleccioneu No s a la llista"
@@ -6182,14 +6335,14 @@ msgstr "Resta del mn"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Resta del mn \n"
" cap canal D (lnies llogades)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Quin protocol voleu utilitzar?"
#: ../../network/isdn.pm_.c:199
@@ -6213,7 +6366,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si teniu una targeta ISA, els valors de la pantalla segent han de ser "
@@ -6230,13 +6384,13 @@ msgid "Continue"
msgstr "Continua"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Quina targeta XDSI teniu ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"He detectat una targeta PCI XDSI, per no en conec el tipus. Si us plau, "
"seleccioneu una targeta PCI a la pantalla segent."
@@ -6256,47 +6410,47 @@ msgstr ""
msgid "Dialup options"
msgstr "Opcions de marcatge"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nom de la connexi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Nmero de telfon"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID d'entrada"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Basat en script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Basat en terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nom de domini"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primer servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segon servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6304,7 +6458,7 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6312,11 +6466,11 @@ msgstr ""
"\n"
"Podeu tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Ara mateix esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6324,35 +6478,35 @@ msgstr ""
"\n"
"Podeu connectar-vos a Internet o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Connecta"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Desconnecta"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configura una connexi per cable"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connexi i configuraci d'Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6366,12 +6520,12 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuraci de xarxa"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6383,9 +6537,9 @@ msgstr ""
"Feu clic a D'acord per conservar la configuraci, o a Cancella per tornar a "
"configurar la connexi a Internet i xarxa.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6396,93 +6550,99 @@ msgstr ""
"Si no voleu utilitzar la detecci automtica, desactiveu el quadre de "
"verificaci.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Escolliu el perfil per configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Utilitza la detecci automtica"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Connexi normal per mdem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectat al port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Connexi XDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "s'ha detectat %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Connexi LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectat a la interfcie %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Connexi de cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Connexi de cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Connexi LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "s'han detectat una o diverses targetes Ethernet"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Connexi a Internet compartida"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Voleu iniciar la connexi en arrencar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuraci de xarxa"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6493,7 +6653,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6503,7 +6663,7 @@ msgstr ""
"\n"
"Ara s'aplicar la configuraci al sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6511,16 +6671,16 @@ msgstr ""
"Desprs d'aix, s recomanable que reinicieu l'entorn X per\n"
"evitar problemes deguts al canvi de nom de l'ordinador central."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6529,7 +6689,7 @@ msgstr ""
"Noms cal que accepteu mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuraci."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6539,38 +6699,43 @@ msgstr ""
"S'ha d'introduir cada element com a una adrea IP amb notaci decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "S'est configurant el dispositiu de xarxa %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (programa de control %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Adrea IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Submscara de la xarxa"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automtic"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adrea IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6582,64 +6747,64 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"Tamb podeu introduir l'adrea IP de la passarella, si en teniu una"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositiu de la passarella"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuraci dels proxys"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "El proxy ha de ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuraci d'Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voleu intentar connectar-vos a Internet ara?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "S'est comprovant la vostra conexi..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ara, el sistema est connectat a Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Per raons de seguretat, ara es desconnectar."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6647,114 +6812,119 @@ msgstr ""
"No sembla que el sistema estigui connectat a Internet.\n"
"Intenteu tornar a configurar la connexi."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuraci de la connexi"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Si us plau, ompliu o marqueu el camp inferior"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Targeta IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Targeta de memria (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Targeta d'E/S"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Targeta d'E/S_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Targeta d'E/S_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "El vostre telfon particular"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nom del provedor (p.ex. proveidor.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Nmero de telfon del provedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 del provedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 del provedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Escolliu el vostre teclat"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Mode de marcatge"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Tipus de connexi: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipus de connexi: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Entrada del compte (nom d'usuari)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Contrasenya del compte"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions esteses"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Hi ha un forat a la vostra taula de particions, per no puc utilitzar-lo.\n"
"L'nica soluci s moure les particions primries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauraci del fitxer %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produt un error en escriure al fitxer %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6764,193 +6934,193 @@ msgstr ""
"Ha fallat una comprovaci de la integritat de les dades. \n"
"Aix vol dir que qualsevol cosa que s'escrigui al disc acabar feta malb"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ha de tenir"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "molt bonic"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bonic"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "potser"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remot"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impressora de xarxa (TCP/scol)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de la impressora"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Impressora local"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "S'ha produt un error en escriure al fitxer %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mdul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP del servidor CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Predeterminat)"
@@ -6973,12 +7143,12 @@ msgstr ""
"impressora; les impressores es detectaran automticament.\n"
"En cas de dubte, seleccioneu \"Servidor CUPS remot\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuraci de la LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remot"
@@ -7009,7 +7179,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'adrea IP ha d'estar amb el format 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "El nmero de port ha de ser numric"
@@ -7018,7 +7188,7 @@ msgstr "El nmero de port ha de ser numric"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7027,22 +7197,13 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuraci del tipus d'arrencada"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "S'estan detectant els dispositius..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ports de comprovaci"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7055,14 +7216,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7080,12 +7241,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7099,11 +7260,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7113,35 +7274,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Utilitza la detecci automtica"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ports de comprovaci"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "s'ha detectat %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7149,43 +7314,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7193,7 +7358,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7201,74 +7366,84 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Si us plau, seleccioneu el port srie al qual teniu connectat el mdem."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuraci"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "S'est installant el paquet %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "S'est installant el paquet %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "S'est installant el paquet %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7278,31 +7453,31 @@ msgstr ""
"el nom de l'ordinador central del servidor de la impressora i el nom de la\n"
"cua d'aquest servidor on s'hi han de situar les tasques."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7317,35 +7492,35 @@ msgstr ""
"de compartici de la impressora a qu voleu accedir i el nom d'usuari,\n"
"contrasenya i informaci de grup si sn necessaris."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nom de compartici"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grup de treball"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7369,7 +7544,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7378,7 +7553,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7386,11 +7561,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7405,28 +7580,28 @@ msgstr ""
"la impressora a qu voleu accedir i el nom d'usuari i contrasenya si sn\n"
"necessaris."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressi"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcions de la impressora de scol"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7437,60 +7612,56 @@ msgstr ""
"Per imprimir a una impressora de scol, heu d'indicar el nom de l'ordinador\n"
"central de la impressora i, opcionalment, el nmero de port."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nom de la impressora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descripci"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ubicaci"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7505,28 +7676,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Aix s correcte?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Connexi de la impressora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Quin tipus d'impressora teniu?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7535,18 +7706,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuraci del mdem"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7556,12 +7727,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuraci d'Internet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7569,7 +7740,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7582,7 +7753,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7592,34 +7763,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Voleu comprovar la impressi?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Ports de comprovaci"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7627,45 +7798,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "S, imprimeix ambdues pgines de prova"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Impressora"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Eines estndard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7681,7 +7852,7 @@ msgstr ""
"\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7691,16 +7862,16 @@ msgstr ""
"Degut a aix, pot passar un cert temps abans no comenci la impressi.\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7709,15 +7880,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7726,49 +7897,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7778,7 +7949,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7787,30 +7958,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Tanca"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "S'est desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "S'est desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "S'est desactivant la xarxa"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "S'est desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Tanca"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7818,38 +8000,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuraci d'Internet"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7859,51 +8041,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7911,64 +8093,64 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nom de la impressora noms pot constar de lletres, nmeros i el carcter "
"de subratllat"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "S'est comprovant la vostra conexi..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configura la xarxa"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "El monitor no est configurat"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7976,12 +8158,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "S'est configurant la xarxa"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7991,34 +8173,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Quin sistema d'impressi voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alt"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoic"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8033,12 +8215,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Quin sistema d'impressi voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8052,69 +8234,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Seleccioneu la connexi de la impressora"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quin sistema d'impressi voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "S'est installant el paquet %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Voleu configurar una impressora?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8125,7 +8307,7 @@ msgstr ""
"Aquestes sn les cues d'impressi segents.\n"
"Podeu afegir-ne algunes ms o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8135,139 +8317,143 @@ msgstr ""
"Aquestes sn les cues d'impressi segents.\n"
"Podeu afegir-ne algunes ms o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configura la xarxa"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Surt"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Voleu comprovar la configuraci?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuraci del mdem"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Voleu comprovar la configuraci?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Connexi a Internet compartida"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Connexi de la impressora"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Voleu comprovar la configuraci?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Voleu reiniciar la xarxa"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8351,24 +8537,62 @@ msgstr "Les contrasenyes no coincideixen"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No es pot afegir una partici a un RAID _formatat_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "No es pot escriure al fitxer %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "l'mkraid ha fallit"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "l'mkraid ha fallit (potser manquen eines del RAID?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt ms "
+"fcil\n"
+"d'utilitzar, per tamb molt sensible: no s'ha d'utilitzar en un ordinador\n"
+"connectat a d'altres o a Internet. No s'hi accedeix mitjanant contrasenya."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Amb aquest nivell de seguretat, la utilitzaci d'aquest sistema com a\n"
+"servidor esdev possible.\n"
+"La seguretat s ara prou alta com per utilitzar el sistema com a servidor\n"
+"que accepti connexions de molts clients. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuraci de la LAN"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcions"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8424,7 +8648,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8494,7 +8718,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8570,7 +8794,7 @@ msgstr ""
"executant en ordinadors que actuen com a servidors per a protocols que\n"
"utilitzen el mecanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8670,7 +8894,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mode de sistema"
@@ -8793,6 +9017,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Control Center"
@@ -8897,6 +9122,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "S'est installant el paquet %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8905,6 +9139,161 @@ msgstr ""
"No puc llegir la vostra taula de particions, est massa malmesa per a mi :(\n"
"Intentar seguir buidant les particions incorrectes"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuraci d'Internet"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Afegeix un usuari"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Ajuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Sense connexi"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Suprimeix"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccioneu el fitxer"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Afegeix un usuari"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "S'est configurant..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "torna a configurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Inseriu un disquet a la unitat %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "No hi ha cap unitat de disquet disponible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8946,6 +9335,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "S'est creant el diquet d'installaci automtica"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8954,47 +9348,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Felicitats!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installa"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Afegeix un usuari"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "S'est formatant el fitxer de loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9002,15 +9389,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9018,712 +9397,775 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "S'ha produt un error en llegir el fitxer %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Selecci del grup de paquets"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Elimina la cua"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Elimina el Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Si us plau, comproveu el ratol."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Sense contrasenya"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Connexi LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Seleccioneu la connexi de la impressora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Si us plau, selecioneu la disposici del vostre teclat."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, feu clic a una partici "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Si us plau, escolliu els paquets que voleu installar"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Si us plau, comproveu el ratol."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Xarxa:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipus"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Voleu utilitzar l'optimitzaci del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Voleu utilitzar l'optimitzaci del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Espera"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "De bola"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "De bola"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opcions del mdul:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuraci de xarxa"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Xarxa:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Sistemes de fitxers"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositiu del ratol: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcions"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ""
"Si us plau, seleccioneu el port srie al qual teniu connectat el mdem."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuraci de xarxa"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Si us plau, comproveu el ratol."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Connexi LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Seleccioneu la connexi de la impressora"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaura des del disquet"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Altres"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Installa el sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalitzada"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Ajuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Estat:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Text"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Paquets a installar"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ara s'installaran els paquets segents"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Desa al fitxer"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Si us plau, comproveu el ratol."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuraci de xarxa"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuraci de xarxa"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuraci de la LAN"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuraci de la LAN"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Sistemes de fitxers"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9755,7 +10197,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9764,7 +10206,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9805,7 +10247,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9833,12 +10275,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9855,7 +10302,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9895,7 +10342,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9906,7 +10353,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9919,7 +10366,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9963,105 +10410,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Ha fallat la installaci del %s. S'ha produt l'error segent:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Eines de consola"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Control Center"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "obligatori"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ratol"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impressora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nom de compartici"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Assistent de configuraci de xarxa"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticaci"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Selecci del grup de paquets"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Si us plau, espereu"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Surt de la installaci"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Podeu seleccionar altres idiomes, que quedaran disponibles desprs de la "
+"installaci"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuraci de xarxa (%d adaptadors)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Suprimeix el perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil a suprimir:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Perfil nou..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nom de l'ordinador central: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Accs a Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipus:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Passarella:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Intefcie:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estat:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configura l'accs a Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuraci de la LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Programa de control"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfcie"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Estat:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configura la xarxa d'rea local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplica"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Si us plau, espereu... s'est aplicant la configuraci"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Connectat"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Sense connexi"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Connecta..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Desconnecta..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuraci de la LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocol d'arrencada"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Actiu"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Actiu"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuraci de la connexi a Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuraci de la connexi a Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipus de connexi: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parmetres"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Passarella"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Targeta Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "sintaxi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nom del mdul"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Mida"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creaci de discs d'arrencada"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "predeterminat"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Error del DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versi del nucli"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "General"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "rea d'experts"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Arguments opcional de l'mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Afegeix un mdul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "imposa"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si cal"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omet els mduls SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omet els mduls RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Elimina un mdul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Sortida"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Munta el disc"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"No hi ha cap suport al dispositiu %s.\n"
+"Si us plau, inseriu-ne un."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "No es pot bifurcar: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"No es pot tancar l'mkbootdisk correctament: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "no s'ha trobat %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Fet"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formata el disquet"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "S'est preparant la installaci"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "limita"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "limita"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10070,123 +10943,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formata les particions"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "S'estan desinstallant els RPM"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuraci de la LAN"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Punt de muntatge"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oficina"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Interromp"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Impressora"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Installa el sistema"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Seleccioneu el fitxer"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Impressora remota"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Missatge d'inicialitzaci"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installa"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Surt de la installaci"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Connexi a Internet compartida"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "La connexi a Internet compartida est habilitada"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10198,31 +11070,31 @@ msgstr ""
"\n"
"Qu voleu fer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "inhabilita"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "deixa-ho crrer"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "torna a configurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "S'estan inhabilitant els servidors..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ara, la compartici de la connexi a Internet est inhabilitada."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "La connexi a Internet compartida est inhabilitada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10234,19 +11106,19 @@ msgstr ""
"\n"
"Qu voleu fer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "habilita"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "S'estan habilitant els servidors..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ara, la connexi compartida a Internet est habilitada."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10263,21 +11135,21 @@ msgstr ""
"Nota: per configurar una xarxa d'rea local (LAN), us cal un adaptador de "
"xarxa dedicat."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfcie %s (utilitzant el mdul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfcie %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10285,11 +11157,11 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
"executeu l'eina de configuraci de maquinari."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfcie de la xarxa"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10304,7 +11176,7 @@ msgstr ""
"\n"
"Ara configurar la vostra xarxa d'rea local amb aquest adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10312,12 +11184,12 @@ msgstr ""
"Si us plau, escolliu l'adaptador de xarxa que es connectar\n"
"a la vostra xarxa d'rea local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "El monitor no est configurat"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10327,17 +11199,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuraci del tipus d'arrencada"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuraci del mdem"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10348,7 +11220,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10360,35 +11232,35 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP del servidor CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"S'ha trobat un conflicte potencial d'adrea LAN en la configuraci actual de "
"%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "S'ha detectat la configuraci del sistema de tallafocs!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10396,22 +11268,22 @@ msgstr ""
"Atenci! S'ha detectat una configuraci existent del sistema de tallafocs. "
"Potser us caldr fer algun ajustament manual desprs de la installaci."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "S'est configurant..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"S'estan configurant les seqncies, installant el programari, iniciant els "
"servidors..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Hi ha hagut problemes en installar el paquet %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10422,23 +11294,23 @@ msgstr ""
"vostra xarxa d'rea local utilitzant la configuraci automtica de xarxa "
"(DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuraci ja s'ha realitzat, per ara est inhabilitada."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuraci ja s'ha realitzat i ara est habilitada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No s'ha configurat mai cap connexi compartida a Internet."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuraci de la compartici de la connexi a Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10453,209 +11325,6 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuraci."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuraci de xarxa (%d adaptadors)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Suprimeix el perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a suprimir:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Perfil nou..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de l'ordinador central: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accs a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipus:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passarella:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Intefcie:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configura l'accs a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuraci de la LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Programa de control"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfcie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configura la xarxa d'rea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplica"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Si us plau, espereu... s'est aplicant la configuraci"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connectat"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Sense connexi"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Connecta..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconnecta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuraci de la LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol d'arrencada"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciat en l'arrencada"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuraci de la connexi a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuraci de la connexi a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipus de connexi: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parmetres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passarella"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Targeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "S'est establint el nivell de seguretat"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Control Center"
@@ -10664,94 +11333,130 @@ msgstr "Control Center"
msgid "Choose the tool you want to use"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadenc (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frana"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islands"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "srie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "S'ha produt un error en installar els paquets"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10796,7 +11501,7 @@ msgstr "No es pot iniciar l'actualitzaci en directe !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10845,13 +11550,9 @@ msgstr "/_Opcions"
msgid "/Options/Test"
msgstr "/Opcions/Prova"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ajuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ajuda/_Quant a..."
+msgstr "/Ajuda/_Quant a.."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10912,7 +11613,7 @@ msgstr "Calendari"
msgid "Content of the file"
msgstr "Contingut del fitxer"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10921,81 +11622,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "si us plau, espereu, s'est analitzant el fitxer: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuraci de la LAN"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "ombra"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nom de domini"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "dispositiu"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de la impressora"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "s'est formatant"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuraci"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Anomena i desa..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no s'ha trobat cap serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Voleu emular el tercer bot?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "S'est llegint la base de dades de controladors CUPS..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "S'estan detectant els dispositius..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11039,6 +11770,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Configuraci del sistema de tallafocs"
@@ -11446,10 +12189,6 @@ msgid "Multimedia - Sound"
msgstr "Multimdia - So"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitats"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentaci"
@@ -11553,10 +12292,6 @@ msgstr ""
"per navegar pel Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivament, emuladors, monitoritzaci"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Comptabilitat personal"
@@ -11605,3374 +12340,212 @@ msgstr "Multimdia - Gravaci de CD"
msgid "Scientific Workstation"
msgstr "Estaci cientfica de treball"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Interromp"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Cap"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Escolliu l'usuari per omissi:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Impressora remota"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ara podeu proporcionar les seves opcions per al mdul %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ha fallat el muntatge"
-
-#~ msgid "Low"
-#~ msgstr "Baix"
-
-#~ msgid "Medium"
-#~ msgstr "Mitj"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poques millores per a aquest nivell de seguretat; la principal s que hi "
-#~ "ha\n"
-#~ "ms avisos i comprovacions de seguretat."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimdia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Mode d'arrencada"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Expert"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "El GNU/Linux gestiona l'hora en GMT (Hora de Greenwich) i la\n"
-#~ "tradueix a l'hora local segons la zona horria seleccionada."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Connecta't a Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconnecta't d'Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configura la connexi de xarxa (LAN o Internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "A quin disc us voleu desplaar?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Si us plau, escolliu els paquets que voleu installar"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informaci"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Estaci de treball GNOME"
+#~ msgid "Choose options for server"
+#~ msgstr "Escolliu les opcions per al servidor"
-#~ msgid "authentification"
-#~ msgstr "autenticaci"
+#~ msgid "Monitor not configured"
+#~ msgstr "El monitor no est configurat"
-#~ msgid "user"
-#~ msgstr "usuari"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "L'Apache s un servidor de World Wide Web. S'utilitza per servir fitxers\n"
-#~ "HTML i CGI."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La targeta grfica encara no est configurada"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) s un servidor de noms de domini (DNS) que s'utiilitza\n"
-#~ "per convertir noms d'ordinadors centrals en adreces IP."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Encara no s'han escollit les resolucions"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Surt"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Muntatge automtic del suport extrable"
-
-#~ msgid "Active"
-#~ msgstr "Actiu"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "No"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "S'ha detectat una impressora, model \"%s\", a"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositiu de la impressora local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mode de sistema"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Altres"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Si us plau, selecioneu la disposici del vostre teclat."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Si us plau, feu clic a una partici "
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipus: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Fitxer de cpia de seguretat incorrecte"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Configura l'X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cancella"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "D'acord"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Tanca"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "S'est comprovant la vostra conexi..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "S'est tancant la connexi..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "La connexi no est tancada.\n"
-#~ "Intenteu fer-ho manualment executant\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "a root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ara, el sistema est desconnectat."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolliu la mida que voleu installar"
-
-#~ msgid "Total size: "
-#~ msgstr "Mida total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Si us plau, espereu, "
-
-#~ msgid "Total time "
-#~ msgstr "Temps total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Voleu utilitzar la configuraci existent per a X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "A quin dispositiu est connectada la vostra impressora?\n"
-#~ "(tingueu en compte que /dev/lp0 equival a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Compte, l'adaptador de xarxa ja est configurat. El tornar a configurar."
-
-#~ msgid "New"
-#~ msgstr "Nou"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Elimina"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Si us plau, feu clic a una partici "
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigitat (%s), sigueu ms precs\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (predeterminat %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "La vostra elecci? (predeterminat %s introduu `cap' per a cap) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "no es pot obrir /etc/sysconfig/autologin per a lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Voleu reiniciar la xarxa"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Hi esteu d'acord?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ara reiniciar el dispositiu de xarxa:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ara reiniciar el dispositiu de xarxa %s. Hi esteu d'acord?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa, "
-#~ "l'elecci\n"
-#~ "habitual s \"/dev/hda\" (el disc IDE mestre primari) o b \"/dev/sda\"\n"
-#~ "(el primer disc SCSI)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Tipus de connexi: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Escolliu l'usuari per omissi:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Si us plau, comproveu el ratol."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Escolliu l'idioma que voleu utilitzar per a la installaci i per a l's "
-#~ "del sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Heu d'acceptar els termes de la llicncia de ms amunt per poder "
-#~ "continuar la installaci.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si us plau, feu clic a \"Accepto\" si hi esteu d'acord.\n"
-#~ "\n"
-#~ "\n"
-#~ "Feu clic a \"No accpeto\" si no hi esteu d'acord. La installaci "
-#~ "finalitzar sense modificar la installaci actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolliu el vostre tipus de teclat de la llista inferior"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Si desitgeu que altres idiomes (a ms del que vau triar en\n"
-#~ "iniciar la installaci) estiguin disponibles desprs de la "
-#~ "installaci,\n"
-#~ "escolliu-los de la llista de ms amunt. Si els voleu seleccionar tots,\n"
-#~ "noms cal que seleccioneu \"Tots\"."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l's del sistema installat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una installaci per a un s\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu installar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "installaci totalment personalitzada, aquest s el vostre\n"
-#~ "tipus d'installaci. Podreu seleccionar l's del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ara heu de decidir com utilitzareu l'ordinador. Les opcions sn:\n"
-#~ "\n"
-#~ "* Estaci de treball: l'elecci ideal si penseu utilitzar l'ordinador "
-#~ "bsicament per a l's quotidi, a la feina o\n"
-#~ " a casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolupament: si penseu utilitzar l'ordinador bsicament per a "
-#~ "desenvolupament de programari, aquesta s l'elecci ideal.\n"
-#~ " Tindreu installada una completa collecci de programari per poder "
-#~ "compilar, depurar i formatar codi font,\n"
-#~ " o crear paquets de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: si penseu utilitzar l'ordinador com a servidor, aquesta s "
-#~ "l'elecci ideal, ja sigui un servidor de fitxers (NFS o\n"
-#~ " SMB), un servidor d'impressi (tipus Unix o Microsoft Windows), un "
-#~ "servidor d'autenticaci (NIS), un servidor\n"
-#~ " de bases de dades, etc. En canvi, no espereu que se us installin coses "
-#~ "com ara el KDE, el GNOME, etc.)"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ara podeu seleccionar el grup de paquets que voleu installar o "
-#~ "actualitzar.\n"
-#~ "\n"
-#~ "\n"
-#~ "El DrakX comprovar si teniu prou espai per installar-los tots i, si no, "
-#~ "us\n"
-#~ "ho avisar. Si voleu seguir igualment, continuar amb la installaci de "
-#~ "tots\n"
-#~ "els grups seleccionats per no n'installar alguns de menys inters. Al "
-#~ "final\n"
-#~ "de la llista podeu seleccionar l'opci \"Selecci individual de paquets"
-#~ "\", i\n"
-#~ "en aquest cas haureu de navegar per ms de 1.000 paquets..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ara podeu triar individualment tots els paquets que voleu installar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podeu expandir o reduir l'arbre fent clic a les opcions del rac esquerre "
-#~ "de la finestra de paquets.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si preferiu veure els paquets ordenats alfabticament, feu clic a la "
-#~ "icona\n"
-#~ "\"Commuta entre ordenaci plana i per grups\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu ser avisat pel que fa a les dependncies, feu clic a "
-#~ "\"Dependncies\n"
-#~ "automtiques\". Si ho feu, tingueu en compte que el fet de "
-#~ "desseleccionar\n"
-#~ "un paquet pot causar la desselecci d'altres paquets que en depenen, i "
-#~ "no\n"
-#~ "us n'assabentareu."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Si teniu tots els CD de la llista superior, feu clic a D'acord.\n"
-#~ "Si no teniu cap d'aquests CD, feu clic a Cancella.\n"
-#~ "Si noms falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Si voleu connectar l'ordinador a Internet o a una xarxa local, "
-#~ "seleccioneu\n"
-#~ "l'opci corresponent, per abans recordeu engegar el dispositiu per tal "
-#~ "que\n"
-#~ "el DrakX el detecti automticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu connexi a Internet ni a cap xarxa local, escolliu "
-#~ "\"Inhabilita el servei de xarxa\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu configurar la xarxa ms endavant, desprs de la installaci, o "
-#~ "si\n"
-#~ "heu acabat la configuraci de la connexi de xarxa, trieu \"Fet\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "No s'ha detectat cap mdem. Si us plau, seleccioneu el port srie on est "
-#~ "connectat.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informaci, el primer port srie (anomenat \"COM1\" en "
-#~ "Microsoft Windows) s'anomena \"ttyS0\" en Linux."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no sabeu qu heu "
-#~ "d'introduir,\n"
-#~ "o si no n'esteu segur, podreu aconseguir la informaci necessria del "
-#~ "vostre\n"
-#~ "provedor d'Internet. Si no introduu aqu la informaci del DNS "
-#~ "(servidor de\n"
-#~ "noms), aquesta informaci s'obtindr del provedor en el moment de "
-#~ "connectar."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Si el mdem que teniu s extern, engegueu-lo per tal que el DrakX el "
-#~ "detecti automticament."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Si us plau, engegueu el mdem i trieu-ne el correcte."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Si no esteu segur de si la informaci de ms amunt s correcta, si no "
-#~ "sabeu\n"
-#~ "qu introduir o si no n'esteu segur, podreu aconseguir la informaci\n"
-#~ "necessria del vostre provedor d'Internet. Si no introduu aqu la\n"
-#~ "informaci del DNS (servidor de noms), aquesta informaci s'obtindr del\n"
-#~ "provedor en el moment de connectar."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central. Si no esteu "
-#~ "segur del que hi\n"
-#~ "heu d'introduir, el vostre provedor us en donar la informaci correcta."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu configurar el voste dispositiu de xarxa.\n"
-#~ "\n"
-#~ " * Adrea IP: si no la sabeu, o no n'esteu segur, pregunteu-la a "
-#~ "l'administrador de la xarxa.\n"
-#~ " No heu d'introduir cap adrea IP si ms avall seleccioneu l'opci "
-#~ "\"IP automtica\".\n"
-#~ "\n"
-#~ " * Mscara de la xarxa: Normalment, \"255.255.255.0\" s una bona "
-#~ "elecci. Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa.\n"
-#~ "\n"
-#~ " * IP automtica: si la vostra xarxa utilitza els protocols BOOTP o "
-#~ "DHCP,\n"
-#~ "seleccioneu aquesta opci. Si es selecciona, no cal cap valor per a "
-#~ "\"Adrea IP\". Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no "
-#~ "el\n"
-#~ "sabeu, o no esteu segur de qu heu d'introduir, consulteu a "
-#~ "l'administrador de la xarxa."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no\n"
-#~ "el sabeu, o si esteu segur de qu introduir, deixeu-ho en blanc."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no esteu segur del que "
-#~ "hi\n"
-#~ "heu d'introduir, el vostre provedor us en donar la informaci correcta."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Si teniu previst utilitzar proxys, configureu-los ara. Si no sabeu si\n"
-#~ "n'utilitzareu, consulteu-ho a l'administrador de la xarxa o al vostre\n"
-#~ "provedor."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Podeu installar el paquet criptogrfic si la vostra connexi a Internet\n"
-#~ "s'ha configurat correctament. Escolliu primer una rpilca des de la qual\n"
-#~ "vulgueu descarregar paquets i desprs seleccioneu els paquets a "
-#~ "installar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tingueu en compte que heu de seleccionar la rplica i els paquets\n"
-#~ "criptogrfics segons la vostra legislaci."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ara podeu seleccionar la zona horria segons el lloc on viviu."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Podeu configurar una impressora local (connectada al vostre ordinador) o\n"
-#~ "remota (accessible mitjanant una xarxa Unix, Netware o Microsoft "
-#~ "Windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Si voleu imprimir, trieu un sistema de impressi entre CUPS i LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "El CUPS s un nou sistema d'impressi, potent i flexible, per a sistemes "
-#~ "Unix\n"
-#~ "(CUPS significa \"Common Unix Printing System\"). s el sistema "
-#~ "d'impressi\n"
-#~ "per defecte en Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'LPR s l'antic sistema d'impressi utilitzat en distribucions anteriors "
-#~ "de\n"
-#~ "Mandrake Linux distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu impressora, feu clic a \"Cap\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores, per cada un\n"
-#~ "d'aquests tipus requereix una configuraci diferent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si teniu la impressora connectada fsicament a l'ordinador, seleccioneu\n"
-#~ "\"Impressora local\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Unix "
-#~ "remot,\n"
-#~ "seleccioneu \"Impressora remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Microsoft\n"
-#~ "Windows remot (o en un ordinador Unix que utilitza el protocol SMB),\n"
-#~ "seleccioneu \"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Si us plau, engegueu la impressora abans de continuar per tal que el "
-#~ "DrakX\n"
-#~ "la pugui detectar.\n"
-#~ "\n"
-#~ "Aqu heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la impressora: l'spool d'impressi utilitza \"lp\" com a nom "
-#~ "per\n"
-#~ "omissi de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si noms teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; noms cal que els separeu amb el carcter \"|\". Per tant,\n"
-#~ "si preferiu un nom ms expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) ser la impressora "
-#~ "per omissi.\n"
#~ "\n"
-#~ "\n"
-#~ " * Descripci: s opcional, per pot ser til si teniu diverses\n"
-#~ "impressores connectades a l'ordinador o si permeteu que altres\n"
-#~ "ordinadors accedeixin a aquesta impressora.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ubicaci: si voleu incloure informaci sobre la ubicaci de la\n"
-#~ "impressora, feu-ho aqu (podeu escriure el que vulgueu, (per exemple,\n"
-#~ "\"2n pis\").\n"
+#~ "intenteu canviar alguns parmetres"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Aqu heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la cua: l'spool d'impressi utilitza \"lp\" com a nom per\n"
-#~ "omissi de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si noms teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; noms cal que els separeu amb el carcter \"|\". Per tant,\n"
-#~ "si preferiu un nom ms expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) ser la impressora "
-#~ "per omissi.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Directori d'spool: les tasques d'impressi s'emmagatzemen en aquest "
-#~ "directori.Conserveu la opci predeterminada si no sabeu quina utilitzar\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador Unix\n"
-#~ "remot, seleccioneu \"Impressora lpd remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador\n"
-#~ "Microsoft Windows remot (o en un ordinador Unix que utilitza el protocol\n"
-#~ "SMB), seleccioneu \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en una xarxa "
-#~ "NetWare,\n"
-#~ "seleccioneu \"NetWare\".\n"
+#~ msgid "An error occurred:"
+#~ msgstr "S'ha produt un error:"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "No s'ha detectat la vostra impressora. Si us plau, introduu el nom del\n"
-#~ "dispositiu a qu est connectada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informaci, la majoria d'impressores estan connectades "
-#~ "al\n"
-#~ "primer port parallel, que s'anomena \"/dev/lp0\" en GNU/Linux i \"LPT1"
-#~ "\"\n"
-#~ "en Microsoft Windows."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Sortida en %d segons"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Ara heu de seleccionar la vostra impressora a la llista superior."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "s aquest el parmetre corrcte?"
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Si us plau, seleccioneu les opcions correctes segons la vostra "
-#~ "impressora;\n"
-#~ "consulteu-ne la documentaci si no sabeu qu heu de seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podreu comprovar la configuraci en el pas segent i modificar-la si no\n"
-#~ "funciona exactament com voleu."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "S'ha produt un error, intenteu canviar alguns parmetres"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ara podeu introduir la contrasenya de l'usuari 'root' del vostre\n"
-#~ "sistema Mandrake Linux. Ho heu de fer dos cops per verificar que\n"
-#~ "ambdues introduccions sn idntiques.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'usuari 'root' s l'administrador del sistema, i s l'nic\n"
-#~ "autoritzat per modificar la configuraci del sistema; per tant,\n"
-#~ "trieu amb molta cura aquesta contrasenya. L's no autoritzat del\n"
-#~ "compte 'root' pot ser extremadament perills per a la integritat\n"
-#~ "del sistema, per a les seves dades, i per a altres sistema que hi\n"
-#~ "estan connectats.\n"
-#~ "\n"
-#~ "\n"
-#~ "La contrasenya s'ha de crear amb diversos carcters alfanumrics, ha de\n"
-#~ "tenir una llargada mnima de 8 carcters, i mai no s'ha d'anotar enlloc.\n"
-#~ "\n"
-#~ "\n"
-#~ "No obstant aix, no creeu una contrasenya excessivament llarga o\n"
-#~ "complicada: heu de poder recordar-la sense problemes."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor xFree86: %s"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ara podeu crear un o ms comptes \"normals\" d'usuari, en\n"
-#~ "contraposici al compte \"privilegiat\", el 'root'. Podeu crear\n"
-#~ "un o ms comptes per a cada una de les persones a qui permetreu\n"
-#~ "utilitzar l'ordinador. Tingueu en compte que cada compte d'usuari\n"
-#~ "tindr les seves prpies preferncies (entorn grfic, parmetres\n"
-#~ "del programa. etc.) i el seu propi \"directori inicial\", on\n"
-#~ "s'emmagatzemen aquestes preferncies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Primer de tot, creeu-vos un compte propi! Encara que sigueu l'nic\n"
-#~ "usuari de l'ordinador, NO us connecteu com a 'root'\n"
-#~ "per a l's quotidi del sistema: s un risc de seguretat molt alt.\n"
-#~ "Tot sovint, fer el sistema inutilitzable depn d'un simple error\n"
-#~ "tipogrfic.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per tant, connecteu-vos al sistema amb el compte d'usuari que heu\n"
-#~ "creat, i entreu-hi com a 'root' noms per a tasques d'administraci\n"
-#~ "i manteniment."
+#~ msgid "Show all"
+#~ msgstr "Mostra'ls tots"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "s molt recomanable crear un disc d'arrencada. Si no podeu arrencar "
-#~ "l'ordinador,\n"
-#~ "s l'nica manera de solucionar-ho sense haver de reinstallar-ho tot."
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "S'est preparant la configuraci de l'X-Window"
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Les opcions principals del LILO i del Grub sn:\n"
-#~ " - Dispositiu d'arrencada: Defineix el nom del dispositiu (p.\n"
-#~ "ex., una partici del disc dur) que cont el sector d'arrencada.\n"
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa,\n"
-#~ "trieu \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aix s til en sistemes que arrenquen immediatament des del disc\n"
-#~ "dur desprs d'habilitar el teclat. El carregador d'arrencada no\n"
-#~ "esperar si s'omet el \"temps d'espera\" o si se li dna el valor zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mode de vdeo: Amb aix s'especifica el mode de text VGA que\n"
-#~ "cal seleccionar en arrencar. Es poden utilitzar els valors\n"
-#~ "segents:\n"
-#~ " * normal: selecciona el mode de text 80x25 normal.\n"
-#~ " * <nmero>: utilitza el mode de text corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els "
-#~ "fitxers i\n"
-#~ "directoris emmagatzemats a \"/tmp\" en arrencar el sistame, seleccioneu\n"
-#~ "aquesta opci.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Si cal, indicaci de la mida exacta de la RAM: malauradament, no hi "
-#~ "cap\n"
-#~ "mtode estndard per preguntar al BIOS la quantitat de RAM que teniu a\n"
-#~ "l'ordinador. Per tant, s possible que el Linux no pugui detectar\n"
-#~ "correctament la quantitat de RAM installada. Si s aquest el cas, en "
-#~ "podeu\n"
-#~ "indicar aqu la quantitat correcta, per penseu que una diferncia de 2 o "
-#~ "4\n"
-#~ "MB entre la memria detectada i la memria real s normal."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "El SILO s un carregador d'arrencada per a l'SPARC: pot arrencar el\n"
-#~ "GNU/Linux o qualsevol altre sistema operatiu que tingueu a l'ordinador.\n"
-#~ "Normalment, aquests altres sistemes operatius es detecten i installen\n"
-#~ "correctament, per si no s aix, podeu afegir-los manualment en aquesta\n"
-#~ "pantalla. Aneu amb compte de triar els parmetres correctes.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tamb s possible que no volgueu donar accs a tothom a aquests sistemes\n"
-#~ "operatius; en aquest cas podeu suprimir les entrades corresponents, per\n"
-#~ "aleshores us caldr un disc d'arrencada per poder-los arrencar!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Les opcions principals del SILO sn:\n"
-#~ " - Installaci del carregador d'arrencada: indica on voleu situar la\n"
-#~ "informaci necessria per arrencar el GNU/Linux. Tret que sapigueu\n"
-#~ "exactament qu esteu fent, seleccioneu \"Primer sector de la unitat\n"
-#~ "(MBR)\".\n"
-#~ " \n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aix s til en sistemes que arrenquen immediatament des del disc\n"
-#~ "dur desprs d'habilitar el teclat. El carregador d'arrencada no\n"
-#~ "esperar si s'omet el \"temps d'espera\" o si se li dna el valor zero."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ara cal configurar el sistema X Window, que s el nucli del GUI\n"
-#~ "(Interfcie grfica d'usuari) del GNU/Linux. Per a aix, heu de\n"
-#~ "configurar la vostra targeta grfica i el monitor. No obstant\n"
-#~ "aix, la majoria d'aquests passos estan automatitzats, aix que pot\n"
-#~ "ser que la vostra feina es limiti a verificar qu s'ha fet i a\n"
-#~ "acceptar els parmetres :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quan la configuraci hagi acabat s'iniciar X (tret que demaneu al\n"
-#~ "Drakx que no ho faci), i podreu verificar si els parmetres us\n"
-#~ "convenen. Si no, podreu tornar enrere i canviar-los tantes vegades\n"
-#~ "com calgui."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Si hi ha algun problema a la configuraci X, utilitzeu aquestes opcions\n"
-#~ "per configurar correctament l'X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Si preferiu utilitzar una entrada grfica, seleccioneu \"S\". En cas\n"
-#~ "contrari, seleccioneu \"No\"."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Podeu triar un nivell de seguretat per al vostre sistema. Si us plau,\n"
-#~ "consulteu el manual per obtenir informaci completa. Bsicament, si no\n"
-#~ "sabeu qu triar, conserveu l'opci per defecte.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ara, el sistema es tornar a arrencar.\n"
-#~ "\n"
-#~ "Desprs d'aix, el sistema Mandrake Linux es carregar\n"
-#~ "automticament. Si voleu arrencar un altre sistema operatiu existent,\n"
-#~ "llegiu les instruccions addicionals."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Txec (Programadors)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovac (Programadors)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nom del perfil a crear:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escriu a /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formata-ho tot"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Desprs de formatar totes les particions,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "totes les dades d'aquestes particions s'hauran perdut"
-
-#~ msgid "Reload"
-#~ msgstr "Torna a carregar"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Voleu generar un disquet d'installaci automtica per fer cpies del "
-#~ "Linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuraci de l'ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Amb un servidor CUPS remot, aqu no us cal configurar cap\n"
-#~ "impressora; les impressores es detectaran automticament,\n"
-#~ "tret que tingueu un servidor en una altra xarxa; en aquest\n"
-#~ "cas, heu d'indicar l'adrea IP, i opcionalment el nmero de\n"
-#~ "port, al servidor CUPS."
-
-#~ msgid "Remote queue"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Nom de domini"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Cap impressora"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Monitoritzaci de la xarxa"
-
-#~ msgid "Profile "
-#~ msgstr "Perfil "
-
-#~ msgid "Statistics"
-#~ msgstr "Estadstiques"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "S'est enviant la velocitat: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "S'est rebent la velocitat: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Tipus de connexi: "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "S'est establint la connexi a Internet"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "S'est realitzant la desconnexi d'Internet"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "No s'ha pogut realitzar la desconnexi d'Internet"
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "La desconnexi d'Internet ha finalitzat"
-
-#~ msgid "Connection complete."
-#~ msgstr "La connexi ha finalitzat."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "No s'ha pogut establir la connexi.\n"
-#~ "Comproveu la configuraci al Centre de control de Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "enviat: "
-
-#~ msgid "received: "
-#~ msgstr "rebut: "
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "escombraries"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Predeterminat"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "No s'ha pogut interpretar el contingut del fitxer de configuraci."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Fitxer de configuraci no reconegut"
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
-
-#~ msgid "Disable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Ara podeu provar el ratol. Utilitzeu els botons i la bola per comprovar "
-#~ "que\n"
-#~ "els parmetres sn correctes; si no ho sn, feu clic a \"Cancella\" per\n"
-#~ "seleccionar un altre controlador."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Connexi per DSL (o ADSL)"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Tanca"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Podeu indicar directament l'URI per accedir a la impressora amb CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "S, imprimeix una pgina ASCII de prova"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "S, imprimeix una pgina PostScript de prova"
-
-#~ msgid "Paper Size"
-#~ msgstr "Mida del paper"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Voleu expulsar la pgina desprs de la tasca?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcions del programa de control Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opcions de profunditat del color"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Voleu imprimir el text com a PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Voleu ajustar el text 'stair-stepping'?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombre de pgines per pgines de sortida"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marges dret/esquerra en punts (1/72 de polzada)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marges superior/inferior en punts (1/72 de polzada)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "opcions addicionals del GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Opcions addicionals per al text"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverteix l'ordre de les pgines"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccioneu la connexi de la impressora remota"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Cada impressora necessita un nom (p.ex. lp).\n"
-#~ "Es poden definir altres parmetres, com ara la descripci de la "
-#~ "impressora\n"
-#~ "o la seva ubicaci. Quin nom cal utilitzar per a aquesta impressora, i "
-#~ "com\n"
-#~ "est connectada?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Cada cua d'impressi (a qu s'adrecen les tasques d'impressi) necessita\n"
-#~ "un nom (sovint lp) i un directori d'spool associada amb ell. Quin nom i\n"
-#~ "directori cal utilitzar per a aquesta cua, i com est connectada la "
-#~ "impressora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nom de la cua"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directori d'spool"
-
-#~ msgid "Disable"
-#~ msgstr "Inhabilita"
-
-#~ msgid "Enable"
-#~ msgstr "Habilita"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Per habilitar un sistema ms segur, seleccioneu \"Utilitza el\n"
-#~ "fitxer d'ombra\" i \"Utilitza les contrasenyes MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Si la vostra xarxa utilitza NIS, seleccioneu \"Utilitza NIS\". Si no ho\n"
-#~ "sabeu, consulteu a l'administrador de la xarxa."
-
-#~ msgid "yellow pages"
-#~ msgstr "pgines grogues"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Configuraci de la LAN"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1 del provedor"
+#~ msgid "What do you want to do?"
+#~ msgstr "Qu voleu fer?"
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2 del provedor"
+#~ msgid "Change Monitor"
+#~ msgstr "Canvia el monitor"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Com us voleu connectar a Internet?"
+#~ msgid "Change Graphics card"
+#~ msgstr "Canvia la targeta grfica"
-#~ msgid "cannot fork: "
-#~ msgstr "no es pot bifurcar: "
+#~ msgid "Change Server options"
+#~ msgstr "Canvia les opcions del servidor"
-#~ msgid "Configure..."
-#~ msgstr "Configura..."
+#~ msgid "Change Resolution"
+#~ msgstr "Canvia la resoluci"
-#~ msgid "Selected size %d%s"
-#~ msgstr "S'ha seleccionat la mida %d%s"
+#~ msgid "Show information"
+#~ msgstr "Mostra la informaci"
-#~ msgid "Opening your connection..."
-#~ msgstr "S'est obrint la connexi..."
+#~ msgid "Test again"
+#~ msgstr "Torna-ho a comprovar"
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Aquest script d'inici intenta carregar els mduls del ratol USB."
+#~ msgid "Setting security level"
+#~ msgstr "S'est establint el nivell de seguretat"
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Configuraci del LILO/Grub"
+#~ msgid "Graphics card"
+#~ msgstr "Targeta grfica"
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuraci del tipus d'arrencada"
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccioneu una targeta grfica"
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Ara que ja teniu configurada la connexi a Internet,\n"
-#~ "podeu configurar l'ordinador per tal que la comparteixi.\n"
-#~ "Nota: per configurar una xarxa d'rea local (LAN), us cal un adaptador de "
-#~ "xarxa dedicat.\n"
-#~ "\n"
-#~ "Voleu configurar la connexi a Internet compartida?\n"
-
-#~ msgid "Welcome to the Internet Connection Sharing utility!"
-#~ msgstr "Benvingut a la utilitat de compartici de la connexi a Internet!"
+#~ "Avs: la comprovaci d'aquesta targeta grfica pot penjar-vos l'ordinador"
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependncies automtiques"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estndard, 640x480 a 60 Hz"
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configura el LILO/GRUB"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 60 Hz"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Crea un disquet d'arrencada"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaada (no 800x600)"
-#~ msgid "Choice"
-#~ msgstr "Elecci"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrellaada, 800x600 a 56 Hz"
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "aurora horitzontal amb bon aspecte"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#~ msgid "vertical traditional aurora"
-#~ msgstr "aurora vertical tradicional"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "Ara podeu seleccionar diverses opcions per al vostre sistema.\n"
-#~ "\n"
-#~ "* Utilitzaci de l'optimitzaci del disc dur: Aquesta opci pot millorar "
-#~ "el\n"
-#~ "rendiment del disc dur, per s noms per a usuaris avanats. Alguns "
-#~ "xips\n"
-#~ "amb errors poden fer malb les vostres dades, aix que aneu amb compte. "
-#~ "El\n"
-#~ "nucli inclou una \"llista negra\" d'unitats i jocs de xips, per, si "
-#~ "voleu\n"
-#~ "evitar-vos sorpreses desagradables, no activeu aquesta opci.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Selecci d'un nivell de seguretat: Podeu escollir un nivell de\n"
-#~ "seguretat per al sistema. Si us plau, consulteu el manual per a ms\n"
-#~ "informaci. Bsicament, si no n'esteu segur, trieu l'opci "
-#~ "predeterminada.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Si cal, indicaci de la mida exacta de la RAM: malauradament, no hi "
-#~ "cap\n"
-#~ "mtode estndard per preguntar al BIOS la quantitat de RAM que hi ha a\n"
-#~ "l'ordinador. Per tant, s possible que el Linux no pugui detectar\n"
-#~ "correctament la quantitat de RAM installada. Si s aquest el cas, en "
-#~ "podeu\n"
-#~ "indicar aqu la quantitat correcta, per penseu que una diferncia de 2 o "
-#~ "4\n"
-#~ "MB entre la memria detectada i la memria real s normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Muntatge automtic de suports extrables: Si preferiu no haver\n"
-#~ "de muntar manualment les unitats extrables (CD-ROM, disquet, Zip)\n"
-#~ "escrivint \"mount\" i \"umount\", seleccioneu aquesta opci.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els "
-#~ "fitxers\n"
-#~ "i directoris que hi ha emmagatzemats a \"/tmp\" quan arranqueu el "
-#~ "sistema,\n"
-#~ "seleccioneu aquesta opci.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Habilitaci de BlocNum a l'inici: Si voleu que BlocNum s'habiliti "
-#~ "desprs\n"
-#~ "de l'arrencada, seleccioneu aquesta opci. Tingueu en compte que no heu\n"
-#~ "d'habilitar aquesta opci en porttils i que BlocNum pot funcionar o pot "
-#~ "no\n"
-#~ "funcionar sota X."
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Si us plau, tingueu pacincia; la configuraci del correu encara no est "
-#~ "implementada."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA no entrellaada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Benvingut a l'Auxiliar de configuraci de la xarxa.\n"
-#~ "Quins components voleu configurar?\n"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA d'alta freqncia, 1024x768 a 70 Hz"
-#~ msgid "Internet/Network access"
-#~ msgstr "Accs a Internet/xarxa"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-freqncia que pot fer 1280x1024 a 60 Hz"
-#~ msgid "Miscellaneous"
-#~ msgstr "Miscellnia"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-freqncia que pot fer 1280x1024 a 74 Hz"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Preguntes diverses"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-freqncia que pot fer 1280x1024 a 76 Hz"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "No es pot utilitzar supermount en un nivell d'alta seguretat"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Atenci: EN AQUEST NIVELL DE SEGURETAT NO ES POT ENTRAR COM A ROOT A LA "
-#~ "CONSOLA!\n"
-#~ "Si voleu ser root, heu d'entrar com a usuari i aleshores utilitzar \"su"
-#~ "\".\n"
-#~ "En general, no espereu utilitzar l'ordinador per a altre cosa que com a "
-#~ "servidor.\n"
-#~ "Esteu avisat."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "Aneu amb compte; si teniu BlocNm habilitat, moltes tecles donaran\n"
-#~ "nmeros en comptes de lletres (p.ex., si premeu la `p' obtindreu un `6')"
-
-#~ msgid "not connected"
-#~ msgstr "sense connexi"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Aplicacions cientfiques"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Servidor, Fitxer/Impressi/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Servidor, DNS/DHCP "
-
-#~ msgid "First DNS Server"
-#~ msgstr "Servidor DNS primari"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Servidor DNS secundari"
-
-#~ msgid "using module"
-#~ msgstr "s'est utilitzant el mdul"
-
-#~ msgid "Development, Database"
-#~ msgstr "Desenvolupament, base de dades"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Desenvolupament, entorn integrat"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Desenvolupament, eines estndard"
+#~ "La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ "Si no voleu installar tants MB, seleccioneu el percentatge de paquets\n"
+#~ "que voleu installar.\n"
#~ "\n"
-#~ "Avs:\n"
-#~ "Si apliquu els canvis durant l'execuci, s possible que l'entorn X "
-#~ "caigui."
+#~ "Un percentatge baix installar noms els paquets ms importants;\n"
+#~ "un percentatge del 100%% installar tots els paquets seleccionats."
#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
+#~ "Noms teniu prou espai al disc per a %d%% d'aquests paquets.\n"
#~ "\n"
-#~ "Si continueu, tancar l'entorn %s"
+#~ "Si en voleu installar menys, seleccioneu el percentatge de paquets\n"
+#~ "que voleu installar.\n"
+#~ "Un percentatge baix installar noms els paquets ms importants;\n"
+#~ "un percentatge del %d%% installar tants paquets com sigui possible."
-#~ msgid "loopback"
-#~ msgstr "loopback"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Podreu fer una elecci ms concreta al pas segent"
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Quin(s) carregador(s) d'arrencada voleu utilitzar?"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Percentatge de paquets per installar"
-#~ msgid "Auto install floppy"
-#~ msgstr "Disquet d'installaci automtica"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Escolliu el nivell de seguretat"
-#~ msgid "Try to find a modem?"
-#~ msgstr "Voleu que intenti trobar un mdem?"
+#~ msgid "hide expert mode"
+#~ msgstr "oculta el mode expert"
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Configura una connexi per XDSI"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Inhabilita la connexi a Internet"
-
-#~ msgid "Configure local network"
-#~ msgstr "Configura la xarxa local"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Configura la connexi a Internet / Configura la xarxa local"
+#~ msgid "show expert mode"
+#~ msgstr "mostra el mode expert"
#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "La xarxa local ja s'ha configurat.\n"
-#~ "Voleu:"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Manipulaci de grfics"
-
-#~ msgid "Sciences"
-#~ msgstr "Cincies"
+#~ "Si '%s' s un perifric extrable,\n"
+#~ " comproveu que hi ha un suport present."
#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ "Programes de xat (IRC o missatgeria instantnia) com ara xchat, licq, "
-#~ "gaim, i eines de transferncia de fitxers"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Installacions de comunicaci"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Eines d'Internet"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Clients de bases de dades i servidors (mysql i postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Desenvolupament C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Zona horria"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(pot malmetre les dades)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Habilita la tecla Bloc Num en iniciar"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Confirmeu la contrasenya"
+#~ "ATENCI! Amb aix formatareu '%s'.\n"
+#~ "S'esborraran totes les dades del perifric '%s'.\n"
+#~ "Si voleu continuar, premeu D'acord. "
-#~ msgid "default"
-#~ msgstr "predeterminat"
+#~ msgid "unknown"
+#~ msgstr "desconegut"
-#~ msgid "What is your system used for?"
-#~ msgstr "Amb quina finalitat utilitzeu el sistema?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Seleccioneu la mida que voleu installar"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Utilitza el diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Personalitzada"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Esteu segur que sou un expert? \n"
-#~ "Aqu podreu fer coses molt potents, per tamb perilloses.\n"
-#~ "\n"
-#~ "Us preguntaran coses com: ``Voleu utilitzar un fitxer d'ombres per a les "
-#~ "contrasenyes?'',\n"
-#~ "Sou capa de respondre aquest tipus de preguntes?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Utilitza el fitxer d'ombra"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Utilitza les contrasenyes MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cerca"
-
-#~ msgid "Package"
-#~ msgstr "Paquet"
-
-#~ msgid "Tree"
-#~ msgstr "Arbre"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordena per"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Seleccioneu un mdul o escriviu-ne el nom:"
#~ msgid "Category"
#~ msgstr "Categoria"
-#~ msgid "Installed packages"
-#~ msgstr "Paquets installats"
-
-#~ msgid "Available packages"
-#~ msgstr "Paquets disponibles"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Mostra noms les fulles"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandeix-ho tot"
-
-#~ msgid "Collapse all"
-#~ msgstr "Redueix-ho tot"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Afegeix la ubicaci dels paquets"
-
-#~ msgid "Update location"
-#~ msgstr "Actualitza la ubicaci"
-
-#~ msgid "Find Package"
-#~ msgstr "Cerca el paquet"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Cerca el paquet que cont el fitxer"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Commuta entre Installats i Disponibles"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "S'estan comprovant les dependncies"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ara es desinstallaran els paquets segents"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Quin paquet esteu cercant"
-
-#~ msgid "No match"
-#~ msgstr "Cap coincidncia"
-
-#~ msgid "No more match"
-#~ msgstr "Cap altra coincidncia"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "Actualment, l'rpmdrake est en el mode ``poca memria''.\n"
-#~ "Ara tornar a reiniciar l'rpmdrake per permetre la recerca de fitxers"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Quin fitxer esteu cercant?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Qu esteu cercant?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Introduu un nom (p.ex. `extra', `comercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directori"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "No hi ha cap CD-ROM disponible (no hi ha res a /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "L'URL del directori que cont els RPM"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Per a FTP i HTTP, us cal introduir la ubicaci de hdlist\n"
-#~ "Ha de ser relativa a l'URL superior"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Si us plau, trameteu la informaci segent"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s ja s en s"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "S'est actualitzant la base dels RPM"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ara s'eliminar l'entrada %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "S'estan cercant les fulles"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Cal una mica de temps per cercar les fulles"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "He trobat una targeta XDSI:\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Altres pasos"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "A quin pas us trobeu?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Mdem Alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "Mdem ECI"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Si el vostre mdem adsl s un mdem Alcatel, seleccioneu Alcatel. Si no, "
-#~ "ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "no utilitzis pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (important)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (molt bonic)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (bonic)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "A quin port srie est connectat el vostre ratol?"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, biblioteques, eines"
-
-#~ msgid "Czech"
-#~ msgstr "Txec"
-
-#~ msgid "Slovakian"
-#~ msgstr "Eslovac"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM d'ipchains amb l'urpmi."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM de dhcp amb l'urpmi."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM de linuxconf amb l'urpmi."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM de bind amb l'urpmi."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM de caching-nameserver amb l'urpmi"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Torna a configurar la xarxa local"
-
-#~ msgid ""
-#~ " Introduction\n"
-#~ "\n"
-#~ "The operating system and the different components available in the "
-#~ "Mandrake Linux distribution \n"
-#~ "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 Mandrake Linux distribution.\n"
-#~ "\n"
-#~ "\n"
-#~ "1. License Agreement\n"
-#~ "\n"
-#~ "Please read carefully this document. This document is a license agreement "
-#~ "between you and \n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, which applies "
-#~ "to the Software Products.\n"
-#~ "By installing, duplicating or using the Software Products in any manner, "
-#~ "you explicitly \n"
-#~ "accept and fully agree to conform to the terms and conditions of this "
-#~ "License. \n"
-#~ "If you disagree with any portion of the License, you are not allowed to "
-#~ "install, duplicate or use \n"
-#~ "the Software Products. \n"
-#~ "Any attempt to install, duplicate or use the Software Products in a "
-#~ "manner which does not comply \n"
-#~ "with the terms and conditions of this License is void and will terminate "
-#~ "your rights under this \n"
-#~ "License. Upon termination of the License, you must immediately destroy "
-#~ "all copies of the \n"
-#~ "Software Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "2. The GPL License and Related Licenses\n"
-#~ "\n"
-#~ "The Software Products consist of components created by different persons "
-#~ "or entities. Most \n"
-#~ "of these components are governed under the terms and conditions of the "
-#~ "GNU General Public \n"
-#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-#~ "licenses allow you to use, \n"
-#~ "duplicate, adapt or redistribute the components which they cover. Please "
-#~ "read carefully the terms \n"
-#~ "and conditions of the license agreement for each component before using "
-#~ "any component. Any question \n"
-#~ "on a component license should be addressed to the component author and "
-#~ "not to MandrakeSoft.\n"
-#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
-#~ "License. Documentation written \n"
-#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
-#~ "the documentation for \n"
-#~ "further details.\n"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. Intellectual Property Rights\n"
-#~ "\n"
-#~ "All rights to the components of the Software Products belong to their "
-#~ "respective authors and are \n"
-#~ "protected by intellectual property and copyright laws applicable to "
-#~ "software programs.\n"
-#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
-#~ "Products, as a whole or in \n"
-#~ "parts,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "special, \n"
-#~ "incidental, direct or indirect damages whatsoever (including without "
-#~ "limitation damages for loss of \n"
-#~ "business, interruption of business, financial loss, legal fees and "
-#~ "penalties resulting from a court \n"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "Software \n"
-#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
-#~ "or occurance of such \n"
-#~ "damages.\n"
-#~ "\n"
-#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
-#~ "SOME COUNTRIES\n"
-#~ "\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
-#~ "will, in no circumstances, be \n"
-#~ "liable for any special, incidental, direct or indirect damages whatsoever "
-#~ "(including without \n"
-#~ "limitation \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, this \n"
-#~ "portion is excluded from this contract. You remain bound by the other "
-#~ "applicable sections of the \n"
-#~ "agreement.\n"
-#~ "The terms and conditions of this License are governed by the Laws of "
-#~ "France.\n"
-#~ "All disputes on the terms of this license will preferably be settled out "
-#~ "of court. As a last \n"
-#~ "resort, \n"
-#~ "the dispute will be referred to the appropriate Courts of Law of Paris - "
-#~ "France.\n"
-#~ "For any question on this document, please contact MandrakeSoft S.A., \n"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
-#~ msgstr ""
-#~ " Introducci\n"
-#~ "\n"
-#~ "D'ara endavant, el sistema operatiu i els diferents components que "
-#~ "s'inclouen\n"
-#~ "a la distribuci Mandrake Linux s'anomenaran els \"Productes de programari"
-#~ "\".\n"
-#~ "Els Productes de programari inclouen, per no es limiten a, el conjunt "
-#~ "de\n"
-#~ "programes, mtodes, regles i documentaci relativa al sistema operatiu i "
-#~ "als\n"
-#~ "diferents components de la distribuci Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "1. Acord de Llicncia\n"
-#~ "\n"
-#~ "Si us plau, llegiu aquest document atentament. Aquest document s un "
-#~ "acord\n"
-#~ "de llicncia entre vs i MandrakeSoft S.A., 43, rue d'Aboukir, 75002 "
-#~ "Pars,\n"
-#~ "Frana, que s'aplica als Productes de programari.\n"
-#~ "Pel fet d'installar, duplicar o utilitzar els Productes de programari, "
-#~ "en \n"
-#~ "qualsevol manera, accepteu i esteu totalment d'acord, de manera "
-#~ "explcita, en\n"
-#~ "sometre-us als termes i condicions d'aquesta Llicncia. Si no esteu "
-#~ "d'acord amb\n"
-#~ "qualsevol part d'aquesta Llicncia, no esteu autoritzat a installar, "
-#~ "duplicar\n"
-#~ "ni utilitzar els Productes de programari. Qualsevol intent d'installar,\n"
-#~ "duplicar o utilitzar els Productes de programari d'una manera no conforme "
-#~ "als\n"
-#~ "termes i condicions d'aquesta Llicncia s invlid i conclour els "
-#~ "vostres\n"
-#~ "drets sota aquesta Llicncia. En concloure la Llicncia, heu de destruir\n"
-#~ "immediatament totes les cpies dels Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "2. la Llicncia GPL i Llicncies relacionades\n"
-#~ "\n"
-#~ "Els Productes de programari sn components creats per diferents persones "
-#~ "o\n"
-#~ "entitats. La majoria d'aquests components estan coberts pels termes i\n"
-#~ "condicions de la Llicncia General Pblica de GNU (d'ara endavant \"GPL"
-#~ "\"), o\n"
-#~ "de llicncies similars. La majoria d'aquestes llicncies us permeten "
-#~ "utilitzar,\n"
-#~ "duplicar, adaptar o redistribuir els components que cobreixen. Si us "
-#~ "plau,\n"
-#~ "llegiu atentament els termes i condicions de l'acord de llicncia de "
-#~ "cada\n"
-#~ "component abans d'utilitzar-lo. Qualsevol pregunta sobre un component "
-#~ "s'ha\n"
-#~ "d'adrear al seu autor i no a MandrakeSoft. Els programes desenvolupats "
-#~ "per\n"
-#~ "MandrakeSoft S.A. estan coberts per la Llicncia GPL. La documentaci "
-#~ "escrita\n"
-#~ "per MandrakeSoft S.A. est coberta per una llicncia especfica. Si us "
-#~ "plau,\n"
-#~ "consulteu la documentaci per a ms informaci. Algunes versions dels "
-#~ "Productes\n"
-#~ "de programari poden incloure components que no estiguin coberts per la\n"
-#~ "Llicncia GPL o llicncies similars; en aquest cas, cada un d'aquests\n"
-#~ "components estar cobert pels termes i condicions de la seva prpia "
-#~ "llicncia\n"
-#~ "especfica. Si us plau, llegiu atentament i respecteu aquestes "
-#~ "llicncies\n"
-#~ "especfiques abans d'installar, utilitzar o redistribuir els components\n"
-#~ "esmentats. En general, aquestes llicncies impediran la transferncia,\n"
-#~ "duplicaci (excepte amb la finalitat de fer cpies de seguretat),\n"
-#~ "redistribuci, enginyeria inversa, desensamblatge, decompilaci o "
-#~ "modificaci\n"
-#~ "del component. Qualsevol ruptura de l'acord conclour immediatament els "
-#~ "vostres\n"
-#~ "drets sota la llicncia especfica. Tret que els termes de la llicncia\n"
-#~ "especfica us ho autoritzin, normalment no podreu installar els "
-#~ "programes en\n"
-#~ "ms d'un sistema ni adaptar-lo per al seu s en xarxa. Si hi teniu "
-#~ "dubtes,\n"
-#~ "poseu-vos en contacte directament amb el distribudor o editor del "
-#~ "component.\n"
-#~ "Normalment, est prohibida la transferncia a terceres parts i la cpia\n"
-#~ "d'aquests components, incloent la documentaci.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. Drets de propietat intellectual\n"
-#~ "\n"
-#~ "Tots els drets dels components dels Productes de programari pertanyen als "
-#~ "seus\n"
-#~ "autors respectius i estan protegits per la propietat intellectual i les "
-#~ "lleis\n"
-#~ "de copyright aplicables al programari. MandrakeSoft S.A. es reserva els "
-#~ "drets\n"
-#~ "de modificar o adaptar els Productes de programari, ja sigui parcialment "
-#~ "o\n"
-#~ "totalment, per tots els mitjans i per a totes les finalitats. \"Mandrake"
-#~ "\",\n"
-#~ "\"Mandrake Linux\" i els logotips associats son marques registrades de\n"
-#~ "MandrakeSoft S.A. Tots els drets reservats. Es prohibeix la duplicaci "
-#~ "sense\n"
-#~ "consentiment previ per escrit de MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Garantia limitada\n"
-#~ "\n"
-#~ "Els Productes de programari i la documentaci que s'hi adjunta es "
-#~ "subministren\n"
-#~ "\"tal com sn\", sense cap garantia, fins al punt perms per la llei. En "
-#~ "cas\n"
-#~ "que els Productes de programari siguin defectuosos, MandrakeSoft S.A., a\n"
-#~ "criteri seu, decidir si reemplaa els Productes de programari o si en\n"
-#~ "reemborsa el preu pagat. Aquesta garantia limitada s nulla si no "
-#~ "compliu les\n"
-#~ "recomanacions, instruccions i condicions d's que s'indiquen a la "
-#~ "documentaci\n"
-#~ "o als acords de llicncia dels Productes de programari. Fins al punt "
-#~ "perms per\n"
-#~ "la llei, MandrakeSoft S.A. no ser, en cap circumstncia, responsable de "
-#~ "cap\n"
-#~ "dany especial, incidental, directe o indirecte (incloent, per sense "
-#~ "limitar-se\n"
-#~ "a, danys per prdua de negocis, interrupci de negocis, prdues "
-#~ "financeres,\n"
-#~ "honoraris i multes legals que resultin per un judici i qualsevol altre "
-#~ "prdua\n"
-#~ "important) que resulti de l's o impossibilitat d'utilitzar els Productes "
-#~ "de\n"
-#~ "programari, fins i tot si s'ha notificat a MandrakeSoft S.A. la "
-#~ "possibilitat de\n"
-#~ "que es produeixin aquests danys.\n"
-#~ "\n"
-#~ "RESPONSABILITAT LIMITADA LLIGADA A LA POSESSI O UTILITZACI DE "
-#~ "PROGRAMARI PROHIBIT EN ALGUNES PASOS\n"
-#~ "\n"
-#~ "Fins al put perms per la llei, MandrakeSoft S.A. i els seus "
-#~ "distribudors no\n"
-#~ "seran, sota cap circumstncia, responsables de cap dany especial, "
-#~ "incidental,\n"
-#~ "directe o indirecte (incloent, per sense limitar-se a, danys per prdua "
-#~ "de\n"
-#~ "negocis, interrupci de negocis, prdues financeres, honoraris i multes "
-#~ "legals\n"
-#~ "que resultin per un judici i qualsevol altre prdua important) que "
-#~ "resultin de\n"
-#~ "la possessi i s de components de programari o de la descrrega de "
-#~ "components\n"
-#~ "de programari d'algun dels llocs web de Mandrake Linux que estiguin "
-#~ "prohibits o\n"
-#~ "restringits en alguns pasos per lleis locals. Aquesta responsabilitat "
-#~ "limitada\n"
-#~ "s'aplica, per no est restringida a, els potents components de "
-#~ "criptografia\n"
-#~ "inclosos en els Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Lleis aplicables \n"
-#~ "\n"
-#~ "Si qualsevol part d'aquest acord s declarat nul, illegal o inaplicable "
-#~ "en un\n"
-#~ "judici, aquesta part s'exclou del contracte, per seguiu obligat per les "
-#~ "altres\n"
-#~ "seccions aplicables de l'acord. Els termes i condicions d'aquesta "
-#~ "Llicncia\n"
-#~ "estan coberts per les lleis de Frana. Preferiblement, tots els desacords "
-#~ "sobre\n"
-#~ "els termes d'aquesta Llicncia es resoldran fora dels tribunals. Com a "
-#~ "ltim\n"
-#~ "recurs, el plet es dirimir en els tribunals de Pars, Frana.\n"
-#~ "Per a qualsevol pregunta sobre aquest document, poseu-vos en contacte "
-#~ "amb\n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Pars, Frana.\n"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Es pot configurar el vostre ordinador per tal que comparteixi la connexi "
-#~ "a Internet.\n"
-#~ "\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "S'ha configurat tot.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Connecta't a Internet amb un mdem normal"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Connecta't a Internet mitjanant XDSI"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Connecta't a Internet mitjanant DSL (o ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Connecta't a Internet mitjanant cable"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Temps (en segons) d'inactivitat desprs del qual\n"
-#~ "penjar (deixeu-ho en blanc per inhabilitar-ho)."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Alemanya (1TR6)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Qu voleu fer?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Installa/Rescata"
-
-#~ msgid "Rescue"
-#~ msgstr "Rescata"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Quin tipus de partici voleu?"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Escolliu \"Installaci\" si no hi ha installada cap versi anterior de "
-#~ "GNU/Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "Escolliu \"Rescat\" si voleu rescatar una versi anterior de\n"
-#~ "Mandrake Linux ja installada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu installat el GNU/Linux,\n"
-#~ " escolliu aquesta opci.\n"
-#~ " - Personalitzada: Si esteu prou familiaritzat amb el GNU/Linux, podeu\n"
-#~ " triar l's principal del vostre ordinador. Consulteu-ne els detalls\n"
-#~ " ms avall.\n"
-#~ "\n"
-#~ " - Per a experts: S'assumeix que domineu el GNU/Linux i voleu realitzar "
-#~ "una\n"
-#~ " installaci altament personalitzada. Com en el cas del tipus\n"
-#~ " d'installaci \"Personalitzada\", podreu seleccionar l's del "
-#~ "vostre\n"
-#~ " sistema.\n"
-#~ " Per, si us plau, sobretot NO TRIEU AQUESTA OPCI TRET QUE SAPIGUEU "
-#~ "QU ESTEU FENT!\n"
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
-#~ "\n"
-#~ "- Ctrl-c to create a new partition (when an empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ "- Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ "- Ctrl-m to set the mount point\n"
-#~ msgstr ""
-#~ "En aquest moment podeu decidir quina(es) partici(ns) voleu utilitzar\n"
-#~ "per installar el sistema Mandrake Linux, si s que ja es va(n)\n"
-#~ "definir (en una installaci anterior del GNU/Linux o mitjanant una\n"
-#~ "altra eina de partici). En altres casos, s'han de definir les\n"
-#~ "particions del disc dur: aquesta operaci consisteix en dividir el\n"
-#~ "disc dur de l'ordinador en rees lgiques separades.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si heu de crear noves particions, utilitzeu \"Assignaci\n"
-#~ "automtica\" per crear particions per al GNU/Linux de manera automtica.\n"
-#~ "Podeu triar el disc on s'hi han de fer les particions fent clic a\n"
-#~ "\"hda\" per a la primera unitat IDE, \"hdb\" per a la segona, o\n"
-#~ "\"sda\" per a la primera unitat SCSI, i aix successivament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dues particions habituals sn: la partici root (/), que s el punt\n"
-#~ "d'inici de la jerarquia de directoris del sistema de fitxers, i\n"
-#~ "/boot, que cont tots els fitxers necessaris per iniciar el sistema\n"
-#~ "operatiu quan s'arrenca l'ordinador per primer cop.\n"
-#~ "\n"
-#~ "\n"
-#~ "Donat que aquest procs sol ser irreversible, la partici d'un disc\n"
-#~ "s sovint un procs que espanta als usuaris sense experincia, per\n"
-#~ "el DiskDrake simplifica molt aquest procs. Consulteu la documentaci\n"
-#~ "i preneu-vos tant temps com sigui necessari abans de realitzar la\n"
-#~ "partici.\n"
-#~ "\n"
-#~ "Podeu accedir a qualsevol opci mitjanant el teclat: desplaceu-vos per "
-#~ "les particions amb el tabulador i les fletxes amunt i avall. Quan se "
-#~ "selecciona una partici, podeu utilitzar:\n"
-#~ "\n"
-#~ "- Ctrl-c per crear una nova partici (quan se selecciona una partici "
-#~ "buida)\n"
-#~ "\n"
-#~ "- Ctrl-d per suprimir una partici\n"
-#~ "\n"
-#~ "- Ctrl-m per definir el punt de muntatge\n"
-
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Cal formatar les particions que s'acaben de definir per poder-les\n"
-#~ "utilitzar ('formatar' significa 'crear un sistema de fitxers').\n"
-#~ "En aquest punt podeu, si voleu, tornar a formatar particions\n"
-#~ "existents per eliminar les dades que contenen. Nota: no s\n"
-#~ "necessari tornar a formatar les particions existents, especialment\n"
-#~ "si contenen fitxers o dades que voleu conservar.\n"
-#~ "Els directoris que es solen conservar sn /home i /usr/local."
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Ara s'estan installant els paquets seleccionats. Aquesta operaci\n"
-#~ "trigar pocs minuts, tret que hagueu escollit actualitzar un\n"
-#~ "sistema existent; en aquest cas trigar ms temps, fins i tot\n"
-#~ "abans que s'inici la installaci."
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Si el DrakX no ha pogut trobar el ratol, o si voleu comprovar qu\n"
-#~ "ha fet, a la part superior apareixer la llista de ratolins.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si esteu d'acord amb els parmetres del DrakX, feu clic a 'D'acord'.\n"
-#~ "Si no, escolliu, al men superior, el tipus de ratol que us sembli ms "
-#~ "semblant al vostre.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si es tracta d'un ratol srie, tamb us caldr indicar al DrakX a\n"
-#~ "quin port srie est connectat."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Aquesta secci est dedicada a la configuraci d'una xarxa local\n"
-#~ "(LAN) o d'un mdem.\n"
-#~ "\n"
-#~ "Escolliu \"LAN local\" i el DrakX intentar trobar un adaptador\n"
-#~ "Ethernet al vostre ordinador. El sistema trobar i inicialitzar\n"
-#~ "automticament els adaptadors PCI.\n"
-#~ "No obstant aix, si el vostre perifric s ISA, la detecci\n"
-#~ "no funcionar, i us caldr escollir un programa de control a la\n"
-#~ "llista que apareixer.\n"
-#~ "\n"
-#~ "\n"
-#~ "Com en el cas dels adaptadors SCSI, podeu deixar que, d'entrada,\n"
-#~ "el programa de control comprovi l'adaptador; si no ho feu aix, us\n"
-#~ "caldr especificar les opcions del programa de control que haureu\n"
-#~ "d'anar a buscar a la documentaci del vostre maquinari.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si installeu un sistema Mandrake Linux en un ordinador que forma\n"
-#~ "part d'una xarxa existent, l'administrador de la xarxa us haur de\n"
-#~ "facilitar la informaci necessria (l'adrea IP, la submscara de\n"
-#~ "xarxa i el nom de l'ordinador central). Si esteu configurant una\n"
-#~ "xarxa privada, com ara a casa, haureu d'escollir les adreces.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Marcatge amb mdem\" i es configurar la connexi a\n"
-#~ "Internet amb un mdem. El DrakX intentar trobar el mdem, per,\n"
-#~ "si no se'n surt, us caldr seleccionar el port srie al qual est\n"
-#~ "connectat."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores. Per a cada\n"
-#~ "un d'aquests tipus, per, cal una configuraci diferent. Tingueu\n"
-#~ "en compte, per, que l'spooler utilitza 'lp' com a nom d'impressora\n"
-#~ "per defecte, de manera que heu de tenir una impressora amb aquest nom.\n"
-#~ "No obstant aix, podeu donar diferents noms a una impressora, separant-\n"
-#~ "los amb el carcter '|'. D'aquesta manera, si voleu donar-li un nom ms\n"
-#~ "aclaridor noms us caldr indicar-lo en primer lloc, p.ex. \"La meva\n"
-#~ "impressora|lp\".\n"
-#~ "La impressora que contingui \"lp\" al(s) nom(s) ser la impressora per\n"
-#~ "defecte\n"
-#~ "\n"
-#~ "\n"
-#~ "Si la vostra impressora est connectada directament a l'ordinador,\n"
-#~ "seleccioneu \"Impressora local\". Haureu d'indicar a quin port\n"
-#~ "est connectada i seleccionar-ne el filtre corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba a un ordinador Unix\n"
-#~ "remot, seleccioneu \"lpd remot\". Per poder-la fer funcionar no\n"
-#~ "cal cap nom d'usuari ni contrasenya, per us caldr saber el nom\n"
-#~ "de la cua d'impressi del servidor remot.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora SMB (s a dir, una impressora\n"
-#~ "que es troba a un ordinador remot amb Windows 9x/NT), per poder-ho\n"
-#~ "fer haureu d'indicar el seu nom SMB (que no s el seu nom TCP/IP)\n"
-#~ "i possiblement la seva adrea IP, nom d'usuari, grup de treball,\n"
-#~ "contrasenya, i, evidentment, el nom de la impressora. El mateix\n"
-#~ "per a una impressora NetWare, per en aquest cas no us caldr la\n"
-#~ "informaci del grup de treball."
-
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "s molt recomanable que respongueu \"S\" aqu. Si ms endavant\n"
-#~ "installeu Microsoft Windows, sobreescriur el sector d'arrencada.\n"
-#~ "Tret que hagueu fet el disc d'arrencada com es\n"
-#~ "recomana, ja no podreu tornar a arrencar el GNU/Linux."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Moveu la bola!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Voleu descartar els canvis?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "De quin tipus s el vostre ratol?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Resolucions automtiques"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Per saber quines resolucions estan disponibles, en provar algunes.\n"
-#~ "La pantalla parpellejar...\n"
-#~ "Ho podeu desactivar si voleu; sentireu un avs sonor quan estigui llest"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Puc mirar de trobar les resolucions disponibles (p.ex. 800x600).\n"
-#~ "De vegades, per, aix pot penjar l'ordinador.\n"
-#~ "Us hi voleu arriscar?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "No s'han trobat modes vlids\n"
-#~ "Intenteu-ho amb una altra targeta de vdeo o monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Recerca automtica de resolucions"
-
-#~ msgid "dhcpd"
-#~ msgstr "dhcpd"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB Mouse"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB Mouse (2 botons)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB Mouse (3 o ms botons)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB Mouse"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB Mouse (2 botons)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB Mouse (3 o ms botons)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Bus Mouse"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus Mouse"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech Bus Mouse"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Mouse (3 o ms botons)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A o superior (srie)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (srie)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (srie)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (srie)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generic Mouse (srie)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Compatible Microsoft (srie)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Ratol Generic de 3 botons (srie)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Ratol Kensington Thinking (srie)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Necessito configurar el vostre adaptador de xarxa por poder connectar a "
-#~ "Internet."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "ha fallat el muntatge de l'nfs"
-
-#~ msgid "Socket"
-#~ msgstr "Scol"
-
-#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "El DrakX generar els fitxers de configuraci tant per a l'XFree 3.3 com "
-#~ "per a l'Xfree 4.0.\n"
-#~ "Per defecte, s'utilitza el servidor 4.0, tret que no funcioni per a la "
-#~ "vostra targeta.\n"
-#~ "\n"
-#~ "Voleu conservar l'Xfree 3.3?"
-
-#~ msgid "tie"
-#~ msgstr "lla"
-
-#~ msgid "brunette"
-#~ msgstr "morena"
-
-#~ msgid "girl"
-#~ msgstr "noia"
-
-#~ msgid "woman-blond"
-#~ msgstr "dona-rossa"
-
-#~ msgid "automagic"
-#~ msgstr "automagic"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Criptogrfic"
-
-#~ msgid "Take over the hard drive"
-#~ msgstr "Encarrega't del disc dur"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "No configuris la xarxa"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Voleu configurar la xarxa local per al vostre sistema?"
-
-#~ msgid "Have you been provided with a hostname?"
-#~ msgstr "Us han donat un nom d'ordinador central?"
-
-#~ msgid "Show less"
-#~ msgstr "Mostra'n menys"
-
-#~ msgid "Show more"
-#~ msgstr "Mostra'n ms"
-
-#~ msgid "URI for Local printer"
-#~ msgstr "URI per a la impressora local"
-
-#~ msgid "URI for Network printer"
-#~ msgstr "URI per a la impressora de xarxa"
-
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "Dispositiu de la impressora local (URI)"
-
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "A quin dispositiu URI est connectada la vostra impressora?\n"
-#~ "(tingueu en compte que parallel:/dev/lp0 equival a LPT1:)"
-
-#~ msgid "Network Printer Options (URI)"
-#~ msgstr "Opcions de la impressora de xarxa (URI)"
-
-#~ msgid ""
-#~ "Choose the right Device URI for a network printer or a local file. "
-#~ "Examples:\n"
-#~ " file:/path/to/filename.prn\n"
-#~ " http://hostname:631/ipp/port1\n"
-#~ " ipp://hostname/ipp/port1\n"
-#~ " lpq://hostname/queue\n"
-#~ " socket://hostname\n"
-#~ " socket://hostname:9100"
-#~ msgstr ""
-#~ "Seleccioneu l'URI de dispositiu correcte per a una impressora de xarxa o "
-#~ "un fitxer local. Exemples:\n"
-#~ " file:/cam/al/nomdefitxer.prn\n"
-#~ " http://ordinadorcentral:631/ipp/port1\n"
-#~ " ipp://ordinadorcentral/ipp/port1\n"
-#~ " lpq://ordinadorcentral/cua\n"
-#~ " socket://ordinadorcentral\n"
-#~ " socket://ordinadorcentral:9100"
-
-#~ msgid "Local Area Network specification"
-#~ msgstr "Especificaci de la xarxa d'rea local"
-
-#~ msgid "You may now decide which class C network to use.\n"
-#~ msgstr "Ara podeu decidir quina xarxa de classe C voleu utilitzar.\n"
-
-#~ msgid "Internet Connection Sharing - setup of %s"
-#~ msgstr "Connexi a Internet compartida: configuraci de %s"
-
-#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Ara es configurar la interfcie segent:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-
-#~ msgid "Everything configured!"
-#~ msgstr "S'ha configurat tot!"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Quina s la disposici del vostre teclat?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Voleu que intenti trobar targetes PCMCIA?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Voleu que intenti trobar els dispositius %s?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr ""
-#~ "Voleu configurar el marcatge amb xarxa per mdem per al vostre sistema?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Voleu que intenti trobar dispositius PCI?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "S'est cercant la partici arrel."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Aquesta partici no s arrel; si us plau, seleccioneu-ne una altra."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Si us plau, seleccioneu una partici per utilitzar-la com a arrel."
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "No teniu cap partici de Windows!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "No teniu prou espai per al Lnx4win"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Benvingut al LILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-# NOTE: this message will be displayed by SILO at boot time; that is
-# only the ascii charset will be available
-# so use only 7bit for this message
-#
-#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Benvingut al SILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "Opcions principals del SILO"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Aquestes sn les entrades segents del SILO.\n"
-#~ "Podeu afegir-ne algunes ms o canviar-ne les existents."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Aquesta etiqueta ja est en s"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Ha fallat la installaci del SILO. S'ha produt l'error segent:"
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "En primer lloc, el DrakX intentar trobar un o ms adaptadors SCSI\n"
-#~ "PCI. Si en troba, i sap quin(s) programa(es) de control utilitzar,\n"
-#~ "l'inserir o els inserir automticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si el vostre adaptador SCSI s una targeta ISA, o si s PCI per\n"
-#~ "el DrakX no sap amb quin programa de control ha d'utilitzar-la, o\n"
-#~ "si no teniu cap adaptador SCSI, se us preguntar si en teniu un o\n"
-#~ "no. Si no en teniu cap, respongueu \"No\". Si en teniu un o ms,\n"
-#~ "respongueu \"S\". Apareixer una llista de programes de control,\n"
-#~ "de la qual n'haureu de triar un.\n"
-#~ "\n"
-#~ "\n"
-#~ "Un cop hagueu triat el programa de control, el DrakX us preguntar\n"
-#~ "si voleu establir-ne les opcions. Primer, per, deixeu que el\n"
-#~ "programa de control explori el maquinari: normalment funciona b.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no, no oblideu la informaci sobre el vostre maquinari que\n"
-#~ "pugueu aconseguir a la documentaci o al Windows (si el teniu al\n"
-#~ "sistema), com aconsella la guia d'installaci. Aquestes sn les\n"
-#~ "opcions que haureu de proporcionar al programa de control."
-
-#~ msgid "Shutting down"
-#~ msgstr "S'est tancant l'ordinador"
-
-#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under "
-#~ "Linux."
-#~ msgstr ""
-#~ "S'han trobat alguns tipus de lletra \"true type\" del Windows a "
-#~ "l'ordinador.\n"
-#~ "Voleu utilitzar-les? Assegureu-vos que esteu autoritzat a utilitzar-les "
-#~ "sota Linux."
-
-#~ msgid "useless"
-#~ msgstr "intil"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
-#~ msgstr ""
-#~ "Escolliu \"Installa\" si no hi ha installada cap versi anterior de "
-#~ "Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Actualitzaci\" si voleu actualitzar una versi anterior de\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 o 7.0 (Air)."
+#~ msgid "preload module"
+#~ msgstr "mdul de pre-crrega"
-#~ msgid ""
-#~ "(a user ``mandrake'' with password ``mandrake'' has been automatically "
-#~ "added)"
-#~ msgstr ""
-#~ "(s'ha afegit automticament un usuari ``mandrake'' amb contrasenya "
-#~ "``mandrake'')"
+#~ msgid "click on a category"
+#~ msgstr "feu clic a una categoria"
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Voleu utilitzar el LILO?"
-
-#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "Ara podeu seleccionar els paquets que voleu installar.\n"
-#~ "\n"
-#~ "\n"
-#~ "En primer lloc, podeu seleccionar el grup del paquet a installar\n"
-#~ "o actualitzar. Desprs, podeu seleccionar ms paquets segons la\n"
-#~ "mida total que voleu seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si treballeu amb el mode expert, podeu seleccionar els paquets\n"
-#~ "individualment.\n"
-#~ "Tingueu en compte, per, que alguns paquets necessiten que altres\n"
-#~ "tamb estiguin installats.\n"
-#~ "Aix s'anomena 'dependncia de paquets'. Els paquets que\n"
-#~ "seleccioneu, i els que aquests necessitin, es seleccionaran\n"
-#~ "automticament per a la installaci. No s possible installar un\n"
-#~ "paquet sense installar-ne tots els dependents."
-
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
-#~ msgstr ""
-#~ "El LILO (el carregador de Linux) pot arrencar el Linux i altres sistemes\n"
-#~ "operatius, que normalment es detecten correctament durant la "
-#~ "installaci.\n"
-#~ "Si veieu que el vostre no s'ha detectat, ara podeu afegir-ne un o ms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu que tothom pugui accedir a algun d'ells, podeu\n"
-#~ "eliminar-lo ara (caldr un disc d'arrencada per arrencar-lo)."
-
-#~ msgid ""
-#~ "Now that you've selected desired groups, please choose \n"
-#~ "how many packages you want, ranging from minimal to full \n"
-#~ "installation of each selected groups."
-#~ msgstr ""
-#~ "Ara que ja heu seleccionat els grups desitjats, seleccioneu \n"
-#~ "quants paquets voleu, ordenant-los des de la installaci mnima \n"
-#~ "fins a la installaci completa de cadascun dels grups seleccionats."
-
-#~ msgid ""
-#~ "You need %dMB for a full install of the groups you selected.\n"
-#~ "You can go on anyway, but be warned that you won't get all packages"
-#~ msgstr ""
-#~ "Us calen %dMB per a una instalaci completa dels grups que heu "
-#~ "seleccionat.\n"
-#~ "Podeu continuar igualment, per tingueu en compte que no tindreu tots els "
-#~ "paquets"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Escolliu un altre CD per installar"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the "
-#~ "computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You "
-#~ "will\n"
-#~ "be able to select the usage of your installed system as for \"Customized"
-#~ "\"."
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu installat el Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l's del sistema installat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una installaci per a un s\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu installar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "installaci totalment personalitzada, aquest s el vostre\n"
-#~ "tipus d'installaci. Podreu seleccionar l's del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "S'estan descarregant els paquets criptogrfics"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Configura el SCSI"
-
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "CD d'installaci Nr %s"
-
-#~ msgid ""
-#~ "Update installation image!\n"
-#~ "\n"
-#~ "Ask your system administrator or reboot to update your installation image "
-#~ "to include\n"
-#~ "the Cd-Rom image labelled \"%s\". Press Ok if image has been updated or "
-#~ "press Cancel\n"
-#~ "to avoid installation from this Cd-Rom image."
-#~ msgstr ""
-#~ "Actualitzeu la imatge de la installaci!\n"
-#~ "\n"
-#~ "Consulteu a l'administrador del sistema o torneu a arrencar per "
-#~ "actualitzar\n"
-#~ "la imatge de la installaci per incloure la imatge en CD-ROM etiquetada "
-#~ "com\n"
-#~ "\"%s\". Premeu D'acord si la imatge s'ha actualitzat o premeu Cancella "
-#~ "per\n"
-#~ "no fer la installaci des d'aquesta imatge en Cd-ROM."
-
-#~ msgid "Which language do you want?"
-#~ msgstr "Quin idioma voleu?"
-
-#~ msgid "Hurt me plenty"
-#~ msgstr "Fes-me molt de mal"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Quina utilitzaci voleu?"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Installaci o actualitzaci"
-
-#~ msgid "Enter a floppy (all data will be lost)"
-#~ msgstr ""
-#~ "Inseriu un disquet a la unitat\n"
-#~ "(Se'n perdran totes les dades)"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Ara s'installaran %d MB. Podeu triar installar ms programes"
-
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "S'han escollit massa paquets: %dMB no cap a %dMB"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Fitxer d'inici rpid %s incorrecte (ha fallat %s)"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Mida: %s MB"
-
-#~ msgid "US Keyboard"
-#~ msgstr "Teclat EU"
-
-#~ msgid "resizing"
-#~ msgstr "s'est canviant la mida"
-
-#~ msgid "changing type of"
-#~ msgstr "s'est canviant el tipus de"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Desprs de %s partici %s,"
-
-#~ msgid "linear"
-#~ msgstr "lineal"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Lineal (necessari per a algunes unitats SCSI)"
-
-#~ msgid "beginner"
-#~ msgstr "principiant"
-
-#~ msgid "developer"
-#~ msgstr "desenvolupador"
-
-#~ msgid "Password:"
-#~ msgstr "Contrasenya:"
-
-#~ msgid "User name:"
-#~ msgstr "Nom d'usuari:"
-
-#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
-#~ msgstr ""
-#~ "No s'ha pogut crear un disquet d'arrencada HTP.\n"
-#~ "Potser us caldr reiniciar la installaci i introduir \"%s\" a "
-#~ "l'indicador"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Cal reiniciar la installaci amb els nous parmetres"
+#~ msgid "Remove"
+#~ msgstr "Elimina"
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Cal reiniciar la installaci arrencant des del disquet"
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Eina per a la creaci de discs d'arrencada"
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Introduu un disquet per una arrencada habilitada per a HTP\n"
-#~ "(es perdran totes les dades del disquet)"
+#~ msgid "Show expert mode"
+#~ msgstr "Mostra el mode expert"
-#~ msgid ""
-#~ "Linux does not yet fully support ultra dma 66.\n"
-#~ "As a work-around i can make a custom floppy giving access the hard drive "
-#~ "on ide2 and ide3"
-#~ msgstr ""
-#~ "El Linux encara no suporta completament l'ultra dma 66.\n"
-#~ "Com a alternativa, puc fer un disquet personalitzat que doni accs a tot "
-#~ "el disc dur a ide2 i ide3"
+#~ msgid "modules"
+#~ msgstr "mduls"
-#~ msgid "A entry %s already exists"
-#~ msgstr "Ja existeix una entrada %s"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "Creador de discs d'arrencada. Encara en una fase primerenca.\n"
-#~ msgid "Installation CD Nr 1"
-#~ msgstr "CD d'installaci Nr 1"
+#~ msgid "experts only"
+#~ msgstr "noms experts"
-#~ msgid "Local LAN"
-#~ msgstr "LAN local"
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Fitxer/_Preferncies"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 3b88dd7d4..9d1a5c392 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -1,39 +1,69 @@
-# Czech messages for DrakX.
+# Czech messages for drakbootdisk.
# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (C) 1999 MandrakeSoft
-# Vladimr Marek <vlmarek@volny.cz>, 2000
-# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000
+# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001.
+# Michal Bukovjan <michal.bukovjan@openone.cz>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 14:25GMT+0100\n"
-"Last-Translator: Radek Vybral <Radek.Vybiral@vsb.cz>\n"
-"Language-Team: Czech <cs@li.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-29 14:57GMT\n"
+"Last-Translator: Michal Bukovjan <michal.bukovjan@openone.cz>\n"
+"Language-Team: etina <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurovat vechny monitory nezvisle"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Pout rozen Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurovat pouze kartu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB nebo vce"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Zvolte X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Konfigurace dvou monitor"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,41 +71,44 @@ msgstr ""
"V systm podporuje zobrazen na dvou monitorech.\n"
"Co chcete dlat?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafick karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Kolik pamti je na va grafick kart ?"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Zvolte typ va grafick karty"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Nastaven XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Zvolte X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kter XFree by jste chtli pout?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurovat vechny monitory nezvisle"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Zvolte ovlada pro X server"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Pout rozen Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Ovlada pro X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurovat pouze kartu \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kter XFree by jste chtli pout?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s s hardwarovou 3D akcelerac"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +118,17 @@ msgstr ""
"Pokud pouijete XFree %s, mete na druhou stranu doshnout lepch vsledk "
"ve 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "S XFree %s me vae karta vyut 3D hardwarov akcelerace."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s hardwarovou 3D akcelerac"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"S XFree %s me vae karta vyut 3D hardwarov akcelerace.\n"
-" TOTO JE POUZE EXPERIMENTLN VERZE, A MٮE VST K NESTABILIT SYSTMU."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s s EXPERIMENTLN 3D hardwarovou akcelerac"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +139,57 @@ msgstr ""
"TOTO JE POUZE EXPERIMENTLN VERZE, A MٮE VST K NESTABILIT SYSTMU.\n"
"Vae karta je podporovna i v XFree %s, kde me mt lep podporu pro 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"S XFree %s me vae karta vyut 3D hardwarov akcelerace.\n"
+" TOTO JE POUZE EXPERIMENTLN VERZE, A MٮE VST K NESTABILIT SYSTMU."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalan ovlada pro obrazovku)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Nastaven XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kolik pamti je na va grafick kart ?"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Zvolte monosti pro dan X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zachovat zmny?\n"
+"Aktuln konfigurace je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Zvolte typ svho monitoru"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Vlastn"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Obecn"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Dodavatel"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,511 +213,326 @@ msgstr ""
"jist\n"
"zvolte radji typ s nimi schopnostmi."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontln(dkov) synchronizace"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikln(obrazovkov) synchronizace"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nen nastaven"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafick karta jet nen nastavena"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Jet nejsou zvolena rozlien"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Chcete si vyzkouet nastaven?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varovn: na tto grafick kart je testovn nebezpen"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Vyzkouet nastaven"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 barev (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"zkuste zmnit nkter parametry"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisc barev (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Vyskytla se tato chyba:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisc barev (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Test skon automaticky za %d sekund"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milin barev (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je to sprvn nastaven?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardy barev (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Vyskytla se chyba, zkuste zmnit nkter parametry"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rozlien"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rozlien"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Vyberte si rozlien a barevnou hloubku"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafick karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Vce"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Zruit"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expertn reim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ukzat ve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Chcete si vyzkouet nastaven?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rozlien"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Vyzkouet nastaven"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Rozloen klvesnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myi: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ppojen myi: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontln frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikln frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafick karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikace grafick karty: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Pam na gr. kart: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Barevn hloubka: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rozlien: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ovlada: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pipravuji nastaven X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Co chcete dlat?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Zmnit monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Zmnit grafickou kartu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Zmnit parametry X Serveru"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Zmnit rozlien"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Zobrazit informace"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Znovu vyzkouet nastaven X"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Konec"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachovat zmny?\n"
-"Aktuln konfigurace je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Spout se X"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mu nastavit v pota tak, aby automaticky spustil X pi startu.\n"
"Chcete aby pota po zapnut spustil grafick reim?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Pro aktivaci zmn se prosm znovu pihlaste na %s"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosm odhlaste se a pak stisknte Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 barev (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisc barev (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisc barev (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milin barev (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy barev (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB nebo vce"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Klasick VGA, 640x480 pi 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 pi 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kompatibiln s 8514, 1024x768 pi 87 Hz prokldan (ne 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 pi 87 Hz prokldan, 800x600 pi 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Lep Super VGA, 800x600 pi 60 Hz, 640x480 pi 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Neprokldan SVGA, 1024x768 pi 60 Hz, 800x600 pi 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Vysokofrekvenn SVGA, 1027x768 pi 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multifrekvenn kter um 1280x1024 pi 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multifrekvenn, kter um 1280x1024 pi 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multifrekvenn, kter um 1280x1024 pi 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, kter um 1600x1200 pi 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, kter um 1600x1200 pi 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvn sektor zavdcho diskovho oddlu"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvn sektor disku (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalace SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zavdc program?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalace LILO/Grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO s textovou nabdkou"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO s grafickou nabdkou"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Sputn s DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Zkladn nastaven zavdcho programu"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Zavdc program"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalace zavdcho programu"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Startovac zazen"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nefunguje se starm BIOSem)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktn"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktn"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Textov reim"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Prodleva ped automatickm sputnm"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Heslo"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Heslo (podruh)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Omezen nastaven z pkazov dky"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "omezen"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Vyistit /tmp pi kadm startu"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Pokud je teba, upesnte velikost pamti (nalezeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Povolit vce profil"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Zadejte velikost pamti v MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Volba ''Omezen nastaven z pkazov dky'' je bezpedmtn bez hesla"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Zkuste to znovu, prosm"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Hesla nejsou shodn"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "vodn zprva"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Prodleva pro firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Prodleva pi sputn"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Povolit sputn z CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Povolit zavad OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Vchoz OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -687,83 +546,83 @@ msgstr ""
"\n"
"Ze kterho disku spoutte systm?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Tady jsou vechny zznamy.\n"
"Mete pidat dal nebo zmnit stvajc."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Pidat"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Hotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Zmnit"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Jak typ zznamu chcete pidat?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Jin systm (SunOs...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Jin systm (MacOs...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Jin systm (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Obraz(image)"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Koenov(root)"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Pipojit"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Pro ten i zpis"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabulka"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nejist"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Znaka"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Vchoz"
@@ -795,53 +654,77 @@ msgstr "Muste zadat koenov oddl"
msgid "This label is already used"
msgstr "Tato znaka se ji pouv"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Nael jsem %s %s rozhran"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Mte jet njak jin?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Mte njak %s rozhran?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ano"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ukzat informace o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaluji ovlada pro %s kartu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Nyn lze zadat volby pro modul %s.\n"
+"Pozn.: kad adresa by mla bt ve tvaru 0x nap. '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nyn mete poskytnout modulu %s dal parametry.\n"
+"Volby se zadvaj ve tvaru ''jmno=hodnota jmno2=hodnota2 ...''.\n"
+"Napklad, ''io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Volby modulu:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kter %s ovlada mm zkusit?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -857,43 +740,19 @@ msgstr ""
"njak doplujc monosti, nebo radji nechte ovlada samostatn "
"prozkoumat\n"
"hardware vaeho potae, aby zskal informace kter potebuje? Zkoumn\n"
-"hardware me ve vyjmench ppadech zpsobit zamrznut potae, ale "
+"hardware me ve vjimench ppadech zpsobit zamrznut potae, ale "
"nemlo\n"
"by v dnm ppad zpsobit jin kody."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatick prozkoumn"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Zadejte monosti"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Nyn lze zadat volby pro pslun modul %s.\n"
-"Pozn.: kad adresa by mla bt ve tvaru 0x nap. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nyn mete poskytnout modulu %s dal parametry.\n"
-"Volby se zadvaj ve tvaru ''jmno=hodnota jmno2=hodnota2 ...''.\n"
-"Napklad, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Volby modulu:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -902,49 +761,53 @@ msgstr ""
"Sputn modulu %s selhalo.\n"
"Chcete to zkusit s jinmi parametry?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pstup k programm v X prosted"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pstup k rpm nstrojm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pstup k administrativnm souborm"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(u byl pidn %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Toto heslo je pli jednoduch"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Prosm zadejte uivatelsk jmno"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Uivatelsk jmno me obsahovat pouze mal psmena, sla, '-' a '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Toto uivatelsk jmno je pli dlouh"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Toto uivatelsk jmno u bylo pidno"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Pidat uivatele"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -953,32 +816,32 @@ msgstr ""
"Zadejte uivatele\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Vytvoit uivatele"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Skuten jmno"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Uivatelsk jmno"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automatick pihlen"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -987,56 +850,58 @@ msgstr ""
"uivatele.\n"
"Chcete pout tuto monost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Zvolte standardnho uivatele :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Vyberte si, kter sprvce oken m bt spoutn:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Prosm zvolte si jazyk, kter chcete pouvat."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Mete si zvolit dal jazyky, kter budou dostupn po instalaci"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Vechno"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Povolit vem uivatelm"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Vlastn"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Nesdlet"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Balek %s mus bt nainstalovn. Chcete ho nainstalovat?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Nyn lze provst export pes NFS nebo Samba protokol. Kter chcete"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr ""
+"Nyn lze provst export pes protokol NFS nebo Samba. Vyberte prosm, kter "
+"chcete pout."
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Chyb potebn balek %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1045,67 +910,47 @@ msgstr ""
"Chcete povolit uivatelm, aby si mohli sdlet adrese ve svm domovskm "
"adresi?\n"
"Pokud to povolte, uivatelm sta pouze kliknout na \"Sdlet\" v "
-"aplikacch konqueror a nautilus.\n"
+"aplikacch Konqueror a Nautilus.\n"
"\n"
"Lze tak provst \"Vlastn\" povolen pro jednotliv uivatele.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Zruit"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
-msgstr "Spustit userdrake"
+msgstr "Spustit UserDrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
"Sdlen mezi uivateli pouv skupinu \"fileshare\". \n"
-"Uivatele lze do tto skupiny pidat pomoc nstroje userdrake."
+"Uivatele lze do tto skupiny pidat pomoc nstroje UserDrake."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dvee dokon"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardn"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Vysok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Vy"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidn"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1116,14 +961,14 @@ msgstr ""
"systm, ale na druhou stranu je velmi citliv: Nesm bt pouit pro\n"
"pota pipojen k Internetu. Pro pihlen nen zapoteb dn heslo."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Hesla jsou nyn aktivn, ale stle nedoporuuji pout tento pota na sti."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,60 +976,62 @@ msgstr ""
"Toto je standardn rove zabezpeen pro pota, kter je pouvn jako "
"klient pro pipojen k internetu."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
"Existuj zde nkter omezen a kadou noc jsou sputny automatick testy."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-"S touto bezpenostn rovn je mon pouvat pota jako server.\n"
-"Bezpenost je nyn dostaten pro server s pipojenm mnoha klient.\n"
-"Poznmka: pokud je pota pouvn pouze jako klient pro pipojen k "
-"Internetu, je lep zvolit ni rove."
+"S touto bezpenostn rovn je mon pouvat systm jako server.\n"
+"Bezpenost je nyn dostaten vysok, aby bylo mon pouvat systm jako "
+"server, ke ktermu\n"
+"je mon pipojit mnoho klient. Poznmka: pokud je pota pouvn pouze "
+"jako klient pro pipojen k Internetu, je lep zvolit ni rove."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Tato rove m vlastnosti pedchoz rovn, ale systm je pln uzaven.\n"
"Zabezpeen je nastaveno na maximum."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Zvolte si rove zabezpeen"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "rove zabezpeen"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Pout libsafe pro servery"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Knihovna, kter zabrauje tokm proti peteen bufferu nebo proti patnmu "
"formtovn etzc."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Administrtor bezpenosti (pihlaovac jmno nebo email)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1208,7 +1055,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
@@ -1221,7 +1068,7 @@ msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
@@ -1235,7 +1082,7 @@ msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stisknete ENTER pro start vybranho OS, 'e' pro upravu"
@@ -1248,33 +1095,33 @@ msgstr "Stisknete ENTER pro start vybranho OS, 'e' pro upravu"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Vybrana polozka bude automaticky spustena za %d sekund."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nen dost msta v adresi /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Pracovn plocha"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Nabdka Start"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Zavdc program nelze nainstalovat na oddl %s\n"
@@ -1287,15 +1134,19 @@ msgstr "npovda zatm nedostupn.\n"
msgid "Boot Style Configuration"
msgstr "Nastaven stylu zavdn"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "_Soubor"
+msgstr "/_Soubor"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Soubor/_Konec"
+msgstr "/Soubor/U_konit"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>K"
@@ -1313,7 +1164,7 @@ msgstr "Tradin monitor"
#: ../../bootlook.pm_.c:94
msgid "Traditional Gtk+ Monitor"
-msgstr "Tradin Gtk+ monitor"
+msgstr "Tradin GTK+ monitor"
#: ../../bootlook.pm_.c:95
msgid "Launch Aurora at boot time"
@@ -1330,14 +1181,14 @@ msgstr "Reim Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Jako sprvce spoutn nyn pouvte %s.\n"
"Pokud chcete spustit prvodce nastavenm, kliknte na Konfigurovat."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurovat"
@@ -1347,7 +1198,7 @@ msgid "System mode"
msgstr "Systmov reim"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Spustit X-Window pi startu"
#: ../../bootlook.pm_.c:148
@@ -1358,14 +1209,16 @@ msgstr "Ne, nechci automatick pihlen"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ano, chci automatick pihlen s tmto (uivatelem, desktopem)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1411,9 +1264,9 @@ msgstr "Nelze provst sejmut obrazovky ped rozdlenm disk"
#: ../../common.pm_.c:166
#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "Sejmut obrazovvky budou dostupn po instalaci v adresi %s"
+msgstr "Sejmut obrazovky budou dostupn po instalaci v adresi %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francie"
@@ -1421,7 +1274,7 @@ msgstr "Francie"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgie"
@@ -1445,11 +1298,12 @@ msgstr "Norsko"
msgid "Sweden"
msgstr "vdsko"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozem"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Itlie"
@@ -1457,7 +1311,7 @@ msgstr "Itlie"
msgid "Austria"
msgstr "Rakousko"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Spojen stty americk"
@@ -1465,8 +1319,8 @@ msgstr "Spojen stty americk"
msgid "Please make a backup of your data first"
msgstr "Zlohujte si nejdv sv data, prosm"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "tte pozorn!"
@@ -1479,11 +1333,12 @@ msgstr ""
"Jestlie chcete pouvat aboot, muste nechat voln msto na zatku disku\n"
"(2048 sektor sta)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Chyba"
@@ -1491,11 +1346,11 @@ msgstr "Chyba"
msgid "Wizard"
msgstr "Prvodce"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Co udlte ?"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1503,181 +1358,186 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"Mte jeden velik oddl FAT\n"
-"(vtinou pouvan Microsoft Dos/Windows).\n"
+"(vtinou pouvan Microsoft DOS/Windows).\n"
"Doporuuji vm nejprve zmenit tento oddl\n"
"(klepnte na nj a potom na\n"
"\"Zmnit velikost\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prosm klepnte na oddl"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaily"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "urnlovac FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOs"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Odkldac (swap)"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Przdn"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Dal"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Souborov systmy:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Vytvoit"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Zmnit typ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Msto toho pouijte ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Smazat"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Nejprve pouijte ``Odpojit''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Tm e zmnte typ oddlu %s pijdete o vechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Vyberte oddl"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Vyberte jin oddl"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Konec"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Pepnout se do mdu 'expert'"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Pepnout se do mdu 'normln'"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Zpt"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Pesto chcete pokraovat?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Konec bez uloen"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Chcete skonit bez zapsn do tabulky oddl?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
-msgstr "Chcete uloit modifikaci souboru /etc/fstab?"
+msgstr "Chcete uloit pravy souboru /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automaticky rozmstit"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Ve smazat"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Vce"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
-msgstr "Informace o hardisku"
+msgstr "Informace o pevnm disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Vechny primrn oddly (partitions) jsou pouvny"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Nemu pidat dn dal oddl"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Abyste mohli mt vce oddl, muste smazat jeden existujc a na jeho "
"mst\n"
-"vytvoit rozen(extended) oddl"
+"vytvoit rozen (extended) oddl"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Uloit tabulku oddl"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Obnovit tabulku oddl"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Zchrana tabulky oddl"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Znovu nast tabulku oddl"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatick pipojovn pro vyjmateln mdia"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Zvolit soubor"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1685,11 +1545,11 @@ msgstr ""
"Zlon tabulka oddl nem stejnou velikost\n"
"Chcete pesto chcete pokraovat?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Varovn"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1697,122 +1557,129 @@ msgstr ""
"Vlote disketu do mechaniky\n"
"Vechna data na tto disket budou smazna"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokoum se obnovit tabulku oddl"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Podrobn informace"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ppojn bod"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Volby"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Zmnit velikost"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Pesunout"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formtovat"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Pipojit"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Pidat do RAIDu"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Pidat do LVMu"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Odpojit"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Odebrat z RAIDu"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Odebrat z LVMu"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Zmnit RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Pout loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Vytvoit nov oddl"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Poten sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Velikost v MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Souborov systm: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Adres pipojen (mount point): "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Nastaven: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Odstranit soubor loopbacku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Zmnit typ oddlu"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kter souborov systm chcete pout?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Pepnm z ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kam chcete pipojit loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kam chcete pipojit zazen %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1820,125 +1687,130 @@ msgstr ""
"Nemu smazat ppojn bod, protoe tento oddl je pouvn pro loopback.\n"
"Odstrate nejprve loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Potm hranice souborovho systmu fat"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mnm velikost"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Na tomto diskovm oddlu nelze mnit velikost"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Vechna data z tohoto oddlu by mla bt zlohovna"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Kdy zmnte velikost oddlu %s, ztratte tm vechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Zvolte novou velikost"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nov velikost v MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na kter disk chcete oddl pesunout?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na kter sektor chcete oddl pesunout?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Pesouvm"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Pesouvm oddl..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Zvolte existujc RAID pro pidn"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nov"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Zvolte existujc LVM pro pidn"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Jmno pro LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Tento oddl neme bt pouit pro loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nzev souboru loopbacku:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Zadejte jmno souboru"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Soubor u je pouvn jinm loopbackem, zvolte si jin"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Soubor u existuje. Mm ho pout?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Volby pro pipojen"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Dal"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "zazen"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "rove"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
-msgstr "Velikost bloku(chunk)"
+msgstr "Velikost bloku (chunk)"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Bute opatrn: tato akce je nebezpen."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Jak typ diskovho oddlu?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Balek %s mus bt nainstalovn. Chcete ho nainstalovat?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1950,20 +1822,20 @@ msgstr ""
"Buto pouijete LILO a nebude to fungovat, nebo nepouijete LILO a tedy "
"nepotebujete /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Oddl kter jste zvolili jako koenov (root - /) je na disku fyzicky za "
-"cylindrem 1024,\n"
-"a pitom nemte /boot oddl. Jestlie chcete pout sprvce bootu (boot "
+"Oddl kter jste zvolili jako koenov (root - /) je na disku fyzicky "
+"umstn za cylindrem 1024,\n"
+"a pitom nemte /boot oddl. Jestli chcete pout sprvce bootu LILO (boot "
"manager),\n"
"pidejte jet /boot oddl"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1973,129 +1845,129 @@ msgstr ""
"S tm se nen schopn vypodat dn zavdc program bez pouit oddlu\n"
"/boot. Ujistte se prosm, e tento oddl mte."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Nov tabulka oddl na disku %s bude zapsna!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby se zmny uplatnily budete muset restartovat pota"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Kdy naformtujete oddl %s, ztratte tm vechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formtuji"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formtuji soubor loopbacku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formtuji oddl %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Schovat soubory"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Pesunout soubory na nov diskov oddl"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Adres %s ji obsahuje njak data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Pesunuji soubory na nov diskov oddl"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopruji %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Odstrauji %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "oddl %s je nyn rozpoznn jako %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Zazen: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Psmeno v DOSu: %s (jenom odhad)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Typ: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Jmno: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Zatek: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Velikost: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Od cylindru %d do cylindru %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Naformtovan\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nenaformtovan\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Pipojen\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2104,7 +1976,7 @@ msgstr ""
"Loopback soubor(y): \n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2112,27 +1984,27 @@ msgstr ""
"Standardn startovac oddl\n"
" (Pro MS-DOS, ne pro LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "rove %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Velikost bloku(chunk) %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback soubor: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2144,7 +2016,7 @@ msgstr ""
"s ovladai, je lep\n"
"no nechat neporuen.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2156,62 +2028,62 @@ msgstr ""
"oddl je pro sputn\n"
"dalho systmu.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Velikost: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylindr, %s hlav, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informace: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabulky oddl: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na sbrnici %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "na kanle %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Volby: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Kl pro kryptovan souborov systm"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Vyberte si kryptovac kl pro souborov systm"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Tento kl je pli jednoduch (mus bt alespo %d znak dlouh)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Kryptovac kle se neshoduj"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Kryptovac kl"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Kryptovac kl (znovu)"
@@ -2220,35 +2092,62 @@ msgid "Change type"
msgstr "Zmnit typ"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prosm klepnte na zdroj"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Nelze se pihlsit pod uivatelskm jmnem %s (chybn heslo?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Vyadovno Oven Domny"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Dal"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Kter uivatelsk jmno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Prosm zadejte sv uivatelsk jmno, heslo a nzev domny, pod ktermi "
+"chcete pistupovat k tomuto potai."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Uivatelsk jmno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domna"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Vyhledat servery"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formtovn %s skonilo chybou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nevm jak naformtovat %s na typ %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "pipojen oddlu %s v adresi %s selhalo"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "selhal bh fsck s nvratovm kdem %d nebo signlem %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojovn %s: %s"
@@ -2265,68 +2164,310 @@ msgstr "s /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Nemete pout JFS pro oddl men ne 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nemete pout ReiserFS pro oddl men ne 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ppojn body (mount points) mus zanat '/'"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddl s ppojnm bodem %s u existuje\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Nelze pout LVM Logickho disku na pipojen bod %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Tento adres mus krom koenovho souborovho systmu zstat"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Pro tento ppojn bod potebujete opravdov souborov systm (Ext2, "
-"ReiserFS)\n"
+"Pro tento ppojn bod potebujete opravdov souborov systm (ext2/ext3, "
+"ReiserFS, XFS nebo JFS)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Nelze pout kryptovan souborov systm na pipojen bod %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nen dostatek msta pro automatick rozdlen disku"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nic nedlat"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Chyba pi otevrn %s pro zpis: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Stala se chyba - nebylo nalezeno dn zazen na kterm by se daly "
"vytvoit nov souborov systmy. Zkontrolujte prosm hardware"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemte dn oddly!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Autodetekce"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Neznm|Obecn"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Neznm|CPH05X (bt878) [vce dodavatel]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Neznm|CPH06X (bt878) [vce dodavatel]"
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+"Modul bttv jdra operanho systmu GNU/Linux nalezne sprvn parametry "
+"automaticky pro vtinu modernch TV karet.\n"
+"Je-li vae karta patn detekovna, lze nastavit sprvn typ karty a tuneru "
+"run zde. Pokud je to poteba, vyberte tak parametry va TV karty."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Model karty :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "Nastaven PLL :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Poet buffer pro zachycen :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Poet buffer pro zachycen systmem mmap"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Typ tuneru :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Podpora rdia :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "Zapnout podporu rdia"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Konec"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Npovda"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Npovda..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_O aplikaci..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Model karty :"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Zruit"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Sbrnice"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Tda mdi"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Popis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Identifikace sbrnice"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Umstn sbrnice"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Zvolit soubor"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Zazen brny(gateway)"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 tlatka"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Verze Harddrake2 "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Nalezen hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informace"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Spustit nstroj pro nastaven"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Nastavit modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Probh detekce"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Prosm pokejte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primrn"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekundrn"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Spoutm \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "O aplikaci HardDrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Toto je HardDrake, nstroj spolenosti Mandrake pro nastaven hardware.\n"
+"Verze:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Autor:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Npovda pro HardDrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2340,7 +2481,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2373,7 +2514,7 @@ msgstr ""
"\n"
"Jako prvn zadejte reln jmno. Nen to povinn, take mete zadat co "
"chcete\n"
-"a drakX pouije prvn slovo jako uivatelsk jmno, pod kterm se bude "
+"a DrakX pouije prvn slovo jako uivatelsk jmno, pod kterm se bude "
"uivatel\n"
"hlsit do systmu. Je mon ho nsledn zmnit. Dle se zadv heslo pro\n"
"uivatele. Volba hesla pro normln uivatele sice nen tak kritick jako\n"
@@ -2466,9 +2607,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2587,7 +2727,7 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
-"V zvislosti na tom, zda jste zvolili individuln vbt balk, nabdne\n"
+"V zvislosti na tom, zda jste zvolili individuln vbr balk, nabdne\n"
"se stromov struktura, obsahujc vechny balky organizovan do skupin.\n"
"Pi prochzen stromu mete vybrat jednotliv balky nebo cel skupiny.\n"
"\n"
@@ -2718,7 +2858,7 @@ msgstr ""
"hodin\n"
"pipojenm se k asovmu serveru na internetu. Vyberte si v seznamu ten "
"server,\n"
-"kter je vm nejbl. Je zamoejm, e pro sprvnou funkci muste mt "
+"kter je vm nejbl. Je samozejm, e pro sprvnou funkci muste mt "
"fukn\n"
"pipojen k internetu. Na pota se tak nainstaluje asov server, kter\n"
"mohou pouvat jin potae ve va lokln sti."
@@ -2745,7 +2885,7 @@ msgid ""
"after 10 seconds, restoring the screen."
msgstr ""
"X Window System (zkrcen X) je srdcem grafickho rozhran GNU/Linuxu,\n"
-"na kterm jsou provozovny grafick prosted (KDE,Gnome,AfterStep, "
+"na kterm jsou provozovny grafick prosted (KDE, Gnome, AfterStep, "
"WindowMaker)\n"
"V tto sekci se DrakX pokus nakonfigurovat X automaticky.\n"
"\n"
@@ -2806,7 +2946,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2818,9 +2958,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2890,21 +3029,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2920,9 +3058,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"V tomto bod si muste definovat, na kter diskov oddly budete\n"
"instalovat nov operan systm Mandrake Linux. Pokud je disk przdn\n"
@@ -2936,7 +3074,7 @@ msgstr ""
"Jet ped zapoetm rozdlovn disku si protte manul.\n"
"\n"
"Pokud mte zvolen Expertn reim, spustil se nstroj na prci s diskem: "
-"Diskdrake, kter umouje lpe nastavit diskov oddly. Pokud chcete pout\n"
+"DiskDrake, kter umouje lpe nastavit diskov oddly. Pokud chcete pout\n"
"prvodce, kliknte na tlatko \"Prvodce\".\n"
"\n"
"Pokud mte ji vytvoeny diskov oddly z pedchozch instalac nebo\n"
@@ -2999,9 +3137,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3097,7 +3234,7 @@ msgstr ""
"Kliknte na \"Zruit\" pokud chcete vybrat jin oddly pro instalaci\n"
"systmu Mandrake Linux.\n"
"\n"
-"Kliknutm na \"Rozen\" mete vybrat, kter oddlz budou otestovny\n"
+"Kliknutm na \"Rozen\" mete vybrat, kter oddly budou otestovny\n"
"na vadn bloky."
#: ../../help.pm_.c:404
@@ -3175,8 +3312,8 @@ msgstr ""
"pota vyuvn a m cennj data obsahuje, tm je poteba zvolit vy\n"
"rove. Na druhou stranu, vy rove znesnaduje nkter obvykl postupy.\n"
"Vce informac o rovnch bezpenosti se dotete v kapitole MSEC v "
-"referenn\n"
-"pruce. \n"
+"referenn pruce.\n"
+"\n"
"Pokud nevte co vybrat, ponechte vchoz nastaven."
#: ../../help.pm_.c:442
@@ -3201,38 +3338,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3320,7 +3451,7 @@ msgstr ""
"\n"
"Pokud instalujete na pota PPC, je poteba vytvoit mal oddl HPFS,\n"
"tzv. \"bootstrap\" o minimln velikosti 1MB, kter bude pouit pro zavad\n"
-"yaboot. Pokud vytvote tento oddl vt, nap. 50 MB, je to dobr msto "
+"Yaboot. Pokud vytvote tento oddl vt, nap. 50 MB, je to dobr msto "
"pro\n"
"uloen ramdisku a jdra pro situace zchrany disku."
@@ -3402,11 +3533,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3464,7 +3595,7 @@ msgstr ""
"ty, kte nemaj velmi dobr znalosti GNU/Linuxu.\n"
"Nevolte tuto volbu, pokud pesn nevte, co dlte."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3492,7 +3623,7 @@ msgstr ""
"Pokud mte klvesnici pro jin jazyk, kliknte na tlatko \"Vce\"\n"
"a zobraz se kompletn seznam vech podporovanch rozloen klvesnic."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3521,7 +3652,7 @@ msgstr ""
"Pokud mte jazyk vybrn, kliknte na \"OK\" a instalace bude pokraovat\n"
"dalm krokem."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3536,9 +3667,9 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
-"DrakX zjistil, e mte dvou tlatkovou my a nastav emulaci pro tet "
+"DrakX zjistil, e mte dvoutlatkovou my a nastav emulaci pro tet "
"tlatko.\n"
-"Taky um rozpoznat, zda je my PS/2, USB nebo sriov.\n"
+"Tak um rozpoznat, zda je my PS/2, USB nebo sriov.\n"
"\n"
"Pokud chcete zadat jin typ myi, vyberte odpovdajc typ se seznamu.\n"
"\n"
@@ -3549,7 +3680,7 @@ msgstr ""
"Pokud my nepracuje sprvn, stisknte mezernk nebo ENTER na \"Zruit\"\n"
"a vyberte jin typ."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3557,23 +3688,23 @@ msgstr ""
"Vyberte prosm sprvn port. Napklad \"COM1\" pod MS Windows se\n"
"v Linuxu jmenuje \"ttyS0\"."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3618,7 +3749,7 @@ msgstr ""
"Heslo se zadv dvakrt pro oven toho, zda nedolo k peklepu pi prvnm\n"
"pokusu. Tak je mon heslo opravit a zadat dvakrt stejn.\n"
"\n"
-"V expertnm reimu budete dotzni na to, zda se m pout autentikan\n"
+"V expertnm reimu budete dotzni na to, zda se m pout autentizan\n"
"server, jako je NIS nebo LDAP.\n"
"\n"
"Pokud se ve va sti pouv protokol LDAP (nebo NIS) pro ovovn\n"
@@ -3626,9 +3757,9 @@ msgstr ""
"zeptejte se administrtora st.\n"
"\n"
"Pokud nen pota pipojen do dn administrovan st, zvolte\n"
-"\"Lokln soubory\" pro autentikaci."
+"\"Lokln soubory\" pro autentizaci."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3650,7 +3781,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3658,7 +3789,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3678,13 +3809,13 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
-"LILO a grub jsou zavade systmu. Tato st je normln pln automatick.\n"
+"LILO a Grub jsou zavade systmu. Tato st je normln pln automatick.\n"
"DrakX analyzuje boot sektor a zachov se podle toho, co nalezne:\n"
"\n"
-" * pokud nalezne boot sektor Windows, pepe ho sektorem pro LILO/grub aby\n"
+" * pokud nalezne boot sektor Windows, pepe ho sektorem pro LILO/Grub aby\n"
"bylo mon spoutt jak Windows tak i Linux;\n"
"\n"
-" * pokud nalezne boot sektor pro LILO nebo grub, tak jej pepe.\n"
+" * pokud nalezne boot sektor pro LILO nebo Grub, tak jej pepe.\n"
"\n"
"Pokud jsou njak pochybnosti, je zobrazen dialog s vbrem monost.\n"
"\n"
@@ -3723,7 +3854,7 @@ msgstr ""
"i danou nabdku odebrat. K dalmu kroku se dostanete kliknutm na \"Hotovo"
"\"."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3735,7 +3866,7 @@ msgid ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"LILO (the LInux LOader) a grub jsou zavade systmu, kter mohou spustit\n"
+"LILO (the LInux LOader) a Grub jsou zavade systmu, kter mohou spustit\n"
"bu GNU/Linux nebo jin operan systm nainstalovan na potai.\n"
"Ve vtin ppad jsou tyto systmu sprvn detekovny. Pokud se tak\n"
"nestane, mte monost je run pidat v tto obrazovce. Vnujte opatrnost\n"
@@ -3745,7 +3876,7 @@ msgstr ""
"je z nabdky odstranit. Ale v tom ppad muste mt spoutc disketu, ze\n"
"kter je mon tento operan systm spustit!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3759,29 +3890,28 @@ msgstr ""
"\n"
"Pokud pesn nevte co zadat, ponechte \"Prvn sektor na disku (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3805,7 +3935,7 @@ msgstr ""
"\"lpd\"\n"
"systmu, take je s nimi kompatibiln. Je mon nastavit spoustu voleb,\n"
"ale zkladn nastaven je velmi jednoduch. Pokud potebujete emulovat\n"
-"\"lpd\" server, stai spustit dmona \"cups-lpd\". M tak grafick "
+"\"lpd\" server, sta spustit dmona \"cups-lpd\". M tak grafick "
"prosted\n"
"pro tisk a nastaven tiskrny.\n"
"\n"
@@ -3817,7 +3947,7 @@ msgstr ""
"zvltn tiskov fronty, vyberte si lprNG.\n"
"Jinak je preferovn CUPS, protoe je jednodu a lpe pracuje v stch."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3842,7 +3972,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX se nejdve pokus najt vechny pevn disky v potai. Tak se "
@@ -3850,7 +3980,7 @@ msgstr ""
"najt PCI SCSI adaptr(y). Pokud njak() najde, automaticky nainstaluje\n"
"sprvn ovlada.\n"
"\n"
-"Pokud dn nanajde, budete dotzni, zda vbec mte njak SCSI adaptr.\n"
+"Pokud dn nenajde, budete dotzni, zda vbec mte njak SCSI adaptr.\n"
"Odpovzte \"Ano\" a vyberte si se seznamu adaptr nebo odpovzte \"Ne\","
"jestlie dn adaptr nemte.\n"
"Pokud pesn nevte jak mte, mete to zjistit kliknutm na tlatko\n"
@@ -3869,7 +3999,7 @@ msgstr ""
"(pokud je mte na potai), z dokumentace k hardware, nebo z internetov\n"
"strnky vrobce (pokud mte pstup k internetu."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3879,9 +4009,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3893,7 +4022,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3918,7 +4047,7 @@ msgid ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
msgstr ""
-"Pro yaboot, pro dal operan systmy, pro alternativn jdra nebo pro\n"
+"Pro Yaboot, pro dal operan systmy, pro alternativn jdra nebo pro\n"
"zchrann disk lze zde zadat dal parametry.\n"
"\n"
"Pro jin OS je mon zadat pouze nzev a hlavn oddl.\n"
@@ -3926,13 +4055,13 @@ msgstr ""
"Pro Linux je nkolik dalch monost:\n"
"\n"
" * Jmenovka: je to jednoduch jmno, kter mete napsat do pkazovho\n"
-"dku pro yaboot pro zvolen danho systmu.\n"
+"dku pro Yaboot pro zvolen danho systmu.\n"
"\n"
-" * Obraz: je to jmho jdra, ze kterho se spust systm. Typicky je to "
+" * Obraz: je to jmno jdra, ze kterho se spust systm. Typicky je to "
"vmlinux\n"
"i obdoba slova vmlinux s pponami.\n"
"\n"
-" * Root: koenov zezen \"/\" pi instalaci Linuxu.\n"
+" * Root: koenov zazen \"/\" pi instalaci Linuxu.\n"
"\n"
" * Pidat volby: na potach Apple potebuje jdro dal parametry, aby "
"se\n"
@@ -3953,7 +4082,7 @@ msgstr ""
"potebujete\n"
"vt velikost, zadejte sem potebnou hodnotu.\n"
"\n"
-" * Read-write: ben je \"root\" oddl pipojen nejdve v reimu pouze pro\n"
+" * Read-write: bn je \"root\" oddl pipojen nejdve v reimu pouze pro\n"
"ten, aby se provedlo otestovn systmu ped tm, ne se pouije pro bh.\n"
"Zde je mon toto chovn zmnit.\n"
"\n"
@@ -3965,7 +4094,7 @@ msgstr ""
"pouze stisknout ENTER a spust se. Tato poloka je oznaena \"*\" a vechny\n"
"vbry se zobraz po stisknut tlatka [Tab]."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3992,14 +4121,13 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"Yaboot je zavad pro potae MacIntosh. Umouje spoutt jak GNU/Linux, "
+"Yaboot je zavad pro potae Macintosh. Umouje spoutt jak GNU/Linux, "
"MacOS tak i MacOSX, pokud jsou na potai nainstalovny. Ve vtin\n"
"ppad jsou tyto operan systmy sprvn detekovny. Pokud nejsou, mete\n"
"zde na tto obrazovce pidat zznamy run. Dejte si ale pozor na sprvnou\n"
@@ -4014,7 +4142,7 @@ msgstr ""
"sputn\n"
"GNU/Linuxu. Obyejn je to bootstrap oddl, kter byl vytvoen ji pedtm.\n"
"\n"
-" * Prodleva pro Firmware: narozdl od zavade LILO jsou zde dv prodlevy.\n"
+" * Prodleva pro Firmware: na rozdl od zavade LILO jsou zde dv prodlevy.\n"
"Prvn prodleva v sekundch umouje zvolit mezi sputnm CD, OF boot,\n"
"MacOS nebo Linuxu.\n"
"\n"
@@ -4030,10 +4158,10 @@ msgstr ""
"\n"
" * Vchoz OS: vyberte vchoz OS, kter se spust po uplynut prodlevy."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4041,12 +4169,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4085,16 +4212,16 @@ msgstr ""
" * \"ISDN karta\": pokud byla detekovna ISDN karta, je zde zobrazena.\n"
"Kliknutm na tlatko mete mnit parametry pro tuto kartu."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
"Vyberte disk, kter chcete smazat pro instalaci Mandrake Linux.\n"
-"Pamatujte na to, e vechna data budou ztracena a nelze jeji obnovit!"
+"Pamatujte na to, e vechna data budou ztracena a nelze je ji obnovit!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4112,7 +4239,7 @@ msgstr ""
"Kliknutm na \"Zruit\" zrute tuto operaci bez ztrty dat a oddl na "
"disku."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4124,12 +4251,12 @@ msgstr ""
"%s), co obecn znamen, e spoutc disketa nem jdro stejn jako m "
"instalan mdium (vytvote prosm novou spoutc disketu)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Muste tak naformtovat %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4154,20 +4281,20 @@ msgstr ""
"\n"
"Chcete opravdu nainstalovat tyto servery?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Nelze pout vesmrov vysln bez NIS domny"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Vlote naformtovanou disketu do %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Tato disketa nen formtovna"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4175,7 +4302,7 @@ msgstr ""
"Pokud chcete pout uloen vbr balk, spuste instalaci takto: 'linux "
"defcfg=floppy'"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Chyba pi ten souboru %s"
@@ -4207,7 +4334,7 @@ msgstr "Muste mt odkldac oddl"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4215,59 +4342,59 @@ msgstr ""
"\n"
"Chcete pesto pokraovat?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Muste mt FAT oddl pipojen na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Pout voln msto"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nen dostatek msta pro vytvoen novho diskovho oddlu"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Pout existujc oddl"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nen zde dn existujc oddl k pouit"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Pout Windows oddl jako loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kter diskov oddl chcete pout pro Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Zvolte velikosti"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Velikost koenovho oddlu v MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Velikost odkldacho oddlu v MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Pout voln msto na Windows oddlu"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Na kterm oddlu chcete mnit velikost?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Potm hranice souborovho systmu s Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4276,13 +4403,16 @@ msgstr ""
"Zmnu velikost FAT nen mon provst, \n"
"vyskytla se nsledujc chyba: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"V diskov oddl s Windows je pli fragmentovn, pouijte nejdve\n"
"program 'defrag'"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4303,67 +4433,67 @@ msgstr ""
"Tak byste si mli data zlohovat. A si budete jist, e chcete pokraovat\n"
"stisknte Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Jakou velikost oddlu chcete nechat pro Windows na"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "diskovm oddlu %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Zmna FAT oddlu neuspla: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nejsou zde dn FAT oddly, kter by bylo mon zmnit (nebo nen dostatek "
"msta)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Smazat cel disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Odstranit Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Mte vce ne jeden pevn disk, na kter chcete instalovat Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VECHNY diskov oddly a data na disku %s budou zruena"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Vlastn rozdlen disku"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Pout fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Nyn mete rozdlit v hardisk %s.\n"
+"Nyn mete rozdlit v pevn disk %s.\n"
"A skonte, nezapomete uloit zmny pomoc 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemte dostatek volnho msta na oddlu s Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Nemu najt dn voln msto pro instalaci"
@@ -4371,16 +4501,16 @@ msgstr "Nemu najt dn voln msto pro instalaci"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Prvodce DrakX nael nsledujc een:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Vytven diskovch oddl selhalo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Startuji s"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Zastavuji s"
@@ -4392,12 +4522,12 @@ msgstr ""
"Stala se chyba, ale nevm, jak j sprvn interpretovat.\n"
"Pokraujte na vlastn riziko."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Zdvojen ppojn bod %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4408,12 +4538,12 @@ msgstr ""
"Je mon, e je pokozen CD disk nebo CD-ROM mechanika.\n"
"Zkontrolujete to pouitm pkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Vt vs %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nen dostupn dn disketov mechanika"
@@ -4423,9 +4553,9 @@ msgstr "Nen dostupn dn disketov mechanika"
msgid "Entering step `%s'\n"
msgstr "Zanm '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4435,197 +4565,153 @@ msgstr ""
"verzi instalanho programu. Ta se spout tak, e pi startu\n"
"z CD mechaniky stisknete 'F1' a pot napete 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Typ instalace"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Prosm zvolte jednu z nsledujcch instalanch td:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Celkov velikost zvolench balk je piblin %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Pokud si pejete instalaci na men prostor ne je tento,\n"
-"zvolte si kolik procent balk se m nainstalovat.\n"
-"\n"
-"Mal poet procent nainstaluje pouze ty nejdleitj balky, 100%%\n"
-"nainstaluje vechny zvolen."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na vaem hardisku je msto pouze pro %d%% tchto balk.\n"
-"\n"
-"Pokud jich chcete nainstalovat jet mn, zvolte jin poet\n"
-"procent. Mal poet procent nainstaluje pouze ty nejdleitj\n"
-"balky, %d%% nainstaluje maximln mon mnostv balk."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Pesnji si budete moci vybrat v ptm kroku"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procent balk k instalaci"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Vbr skupiny balk"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Vbr jednotlivch balk"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Celkov velikost: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "patn balek"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Jmno: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verze: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Velikost: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Dleitost: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Nemete oznait tento balek, protoe pro jeho instalaci nen dost msta"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Tyto balky budou instalovny"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Tyto balky budou odebrny"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Nemete vybrat/nevybrat tento balek"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Toto je nepostradateln balek, neme bt odstrann"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Nemete od-oznait tento balek, protoe je u nainstalovan"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Tento balek mus bt obnoven\n"
"Jste si jisti, e ho nechcete zvolit?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tento balek mus bt obnoven, nemete ho nezvolit"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Ukzat automaticky vybran balky"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalovat"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Uloit/Nahrt na/z disketu/y"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Aktualizuji vbr balk"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimln instalace"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Vyberte si balky, kter chcete nainstalovat"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaluji"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Odhaduji"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Zbvajc as "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "ekejte prosm, pipravuji instalaci"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d balk(y)"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaluji balek %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Potvrdit"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odmtnout"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4640,17 +4726,17 @@ msgstr ""
"\n"
"Pokud toto CD nemte, stisknte Zruit a toto CD nebude nainstalovno."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Pesto pokraovat?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Stala se chyba pi azen balk:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Stala se chyba pi instalaci balk:"
@@ -4719,11 +4805,11 @@ msgstr "Stala se chyba"
msgid "Do you really want to leave the installation?"
msgstr "Chcete opravdu ukonit instalaci?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Souhlas s licenc"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4738,7 +4824,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4854,7 +4940,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4959,109 +5045,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Jste si jist, e odmtte licenn ujednn?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klvesnice"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Vyberte si rozloen va klvesnice."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Zde je kompletn seznam dostupnch klvesnic"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kter typ instalace chcete?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalace/Aktualizace"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Je to instalace nebo aktualizace?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Doporuen"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expertn"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aktualizovat"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Aktualizovat pouze balky"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Vyberte si typ va myi."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Pipojen myi"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ke ktermu sriovmu portu je pipojena vae my?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulace tlatek"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulace 2 tlatka"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulace 3 tlatka"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Nastavuji PCMCIA karty..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Nastavuji IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nejsou dostupn dn diskov oddly"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Hledm oddly, kter lze pipojit"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Zvolte si ppojn(mount) body"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5073,7 +5163,7 @@ msgstr ""
"\n"
"Souhlaste s tm, e pjdete o vechny oddly?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5081,7 +5171,7 @@ msgstr ""
"DiskDrake neuspl pi ten tabulky oddl.\n"
"Pokraujte pouze na vlastn riziko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5089,74 +5179,75 @@ msgstr ""
"Pro bootstrap nen potebn msto o velikosti 1MB! Instalace me pokraovat "
"ale pro sputn systmu muste vytvoit bootstrap oddl pomoc DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nebyl nalezen koenov oddl pro proveden aktualizace"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Koenov oddl"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Kter diskov oddl je koenov (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Muste restartovat pota aby se projevily zmny v tabulce oddl"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Zvolte diskov oddly kter chcete naformtovat"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Otestovat na vadn stopy?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formtuji oddly"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Vytvm a formtuji soubor %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nen dostatek odkldacho prostoru k instalaci, prosm pidejte njak"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Hledm dostupn balky a znovu sestavuji databzi balk..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Hledm dostupn balky"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Vyhledvm balky pro aktualizaci"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Prohledvm ji instalovan balky..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Na vaem systmu nen dostatek msta pro instalaci nebo aktualizaci (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletn (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimln (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Doporuen (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5164,35 +5255,35 @@ msgstr ""
"Vyberte si, zda chcete uloit nebo nahrt vbr balk na disketu.\n"
"Formt vbru je stejn jako formt automaticky generovan diskety."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Nahrt z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Nahrvm z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Vbr balk"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Vlote disketu obsahujc vbr balk"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Uloit na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Velikost vybranch balk je vt ne msto na disku"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Typ instalace"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5200,19 +5291,19 @@ msgstr ""
"Nevybrali jste dnou skupinu balk\n"
"Vyberte si prosm alespo minimln instalaci"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "X prosted"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Zkladn dokumentace (doporueno!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Opravdu minimln instalace (speciln bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5222,16 +5313,16 @@ msgstr ""
"Pokud nemte dn z nich, klepnte na Zruit.\n"
"Pokud Vm chyb pouze nkter z nich, odznate je, a zvolte Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM oznaen \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pipravuji instalaci"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5240,23 +5331,23 @@ msgstr ""
"Instaluji balek %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Nastaven po instalaci"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Vlote prosm spoutc disketu do %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Vlote prosm disketu s moduly do %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5306,7 +5397,7 @@ msgstr ""
"nebude respektovat ustanoven vztahujcch se zkon, me se vystavit\n"
"postihu.\n"
"\n"
-"V kadm ppad se Mandrakesoft i jeho vrobny a dodavatel vzdvaj\n"
+"V kadm ppad se MandrakeSoft i jeho vrobny a dodavatel vzdvaj\n"
"jakkoliv zodpovdnosti za pm i nepm kody (vetn ztrty zisk,\n"
"peruen podnikn, ztrty obchodnch informac, jakoto i jinch "
"pennch\n"
@@ -5317,170 +5408,201 @@ msgstr ""
"\n"
"\n"
"Pokud mje jakkoliv dotazy vztahujc se k tto dohod, kontaktujte prosm\n"
-"Mandrakesoft, Inc.\n"
+"MandrakeSoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Nyn mte monost sthnout aktualizovan balky, kter byly\n"
-"uvolnny po vydn distribuce.\n"
+"Nyn mte monost sthnout aktualizovan balky. Tyto balky byly\n"
+"uvolnny a po vydn distribuce. Mohou obsahovat\n"
+"bezpenostn aktualizace nebo opravy chyb.\n"
"\n"
-"Mete tak zskat bezpenostn opravy i opravy chyb, ale\n"
-"potebujete pipojen k Internetu.\n"
+"Chcete-li zskat tyto balky, muste mt k dispozici\n"
+"funkn pipojen k Internetu.\n"
"\n"
"Chcete nainstalovat aktualizace?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktuji web Mandrake Linux pro zskn seznamu dostupnch zrcadel"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
-msgstr "Zvolte si zrcadlo(mirror) pro stahovn balk"
+msgstr "Zvolte si zrcadlo (mirror) pro stahovn balk"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Stahuji ze zrcadla(mirror) seznam dostupnch balk"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Jak je vae asov psmo?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardwarov hodiny nastaveny na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatick synchronizace asu (pomoc NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Vzdlen CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Bez tiskrny"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Mte njakou zvukovou kartu na ISA sbrnici?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Pro nastaven zvukov karty spuste po instalaci \"sndconfig\"."
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nebyla nalezena zvukov karta. Zkuste spustit po instalaci \"harddrake\"."
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Souhrn"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "My"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "asov zna"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Tiskrna"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN karta"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvukov karta"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV karta"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokln soubory"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Hlavn(root) heslo"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez hesla"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Toto heslo je pli jednoduch (mus bt alespo %d znak dlouh)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Oven"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Oven pomoc LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Zkladn dn pro LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Oven pomoc NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domna"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Oven pomoc Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Domna Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Jmno serveru PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"Aby toto fungovalo v ppad serveru PDC Windows 2000, bude muset "
+"administrtor pravdpodobn spustit pkaz: C:\\>net localgroup \"Pre-"
+"Windows 2000 Compatible Access\" everyone / add a restartovat server."
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5509,19 +5631,19 @@ msgstr ""
"Pokud chcete vytvoit startovac disketu, vlote disketu do mechaniky\n"
"a stisknte \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "prvn mechaniky"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "druh mechaniky"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Peskoit"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5545,7 +5667,7 @@ msgstr ""
"innou pomoc pi havrii systmu. Chcete vytvoit startovac disketu?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5559,28 +5681,28 @@ msgstr ""
"spoutc diskety bude zejm nespn, protoe XFS\n"
"potebuje velmi velk ovlada)"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bohuel nen dostupn dn disketov mechanika"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Zvolte mechaniku, kde chcete vytvoit startovac disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Vlote disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Vytvm startovac disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pipravuji zavdc program"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5588,15 +5710,15 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
"Zd se, e mte njak neznm pota,\n"
-"na kterm nebude yaboot pracovat.\n"
+"na kterm nebude Yaboot pracovat.\n"
"Instalace bude pokraovat, ale budete\n"
"potebovat BootX pro sputn systmu."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Chcete pout aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5604,15 +5726,15 @@ msgstr ""
"Stala se chyba pi instalaci aboot,\n"
"mm se pokusit o instalaci i kdy to zru prvn oddl na disku?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaluji zavdc program"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalace zavdcho programu neuspla. Stala se tato chyba:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5624,23 +5746,22 @@ msgid ""
msgstr ""
"Mete potebovat zmnit startovac zazen pro Open Firmware\n"
" pro aktivaci spoutcho programu. Pokud nevidte po sputn prompt,\n"
-" stisknte pi startu Command-Option-O-F a zadajte:\n"
+" stisknte pi startu Command-Option-O-F a zadejte:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Potom zadejte: shut-down\n"
"Pi dalm sputn u uvidte prompt."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Vlote przdnou disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Vytvm disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5650,7 +5771,8 @@ msgstr ""
"\n"
"Chcete opravdu nyn skonit?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5661,31 +5783,36 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
"Gratulujeme vm, instalace je dokonena.\n"
-"Vyjmte startovac mdia a stisknte return pro restart.\n"
+"Vyjmte startovac mdia a stisknte Return pro restart.\n"
"\n"
"\n"
"Na opravy tto instalace systmu Mandrake Linux se lze informovat\n"
"na strnce Errata:\n"
"\n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informace o konfiguraci systmu po instalaci jsou dostupn\n"
"v dan kapitole oficiln uivatelsk pruky pro Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Vytvoit disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5699,15 +5826,15 @@ msgstr ""
"\n"
"Takto lze jednodue zopakovat instalaci.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaticky"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Zopakovat"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Uloit vbr jednotlivch balk"
@@ -5734,44 +5861,24 @@ msgstr "chyb consolehelper"
msgid "Choose a file"
msgstr "Vyberte soubor"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Rozen"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Zkladn"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prosm pokejte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informace"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Rozbal vtev"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sbal vtev"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Pepnut mezi abecednm a skupinovm azenm"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "patn volba, zkuste to znovu\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vae volba? (vchoz %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5780,31 +5887,35 @@ msgstr ""
"Poloky, kter je poteba vyplnit:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vae volba? (0/1, vchoz '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Tlatko '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Chcete kliknout na toto tlatko? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr " zadejte `void` pokud chcete przdn vstup"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vae volba? (vchoz '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Je zde vce voleb, ze kterch je mon si vybrat (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5814,7 +5925,7 @@ msgstr ""
"nebo stisknte Enter pro pokraovn.\n"
"Vae volba? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5823,327 +5934,327 @@ msgstr ""
"=> Oznamuji zmnu nvt:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Znovu odeslat"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "esk (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Nmeck"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvok"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "panlsk"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francouzsk"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusk"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "vdsk"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK-Britsk"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US-Americk"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albnsk"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armnsk (star)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armnsk (psac stroj)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armnsk (foneticky)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "zerbajdnsk (latinka)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgick"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulharsk (foneticky)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulharsk (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilsk (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Blorusk"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "vcarsk (Nmeck styl)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "vcarsk (Francouzsk styl)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "esk (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Nmeck (bez mrtvch klves)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dnsk"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvok (US) "
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvok (Norsk)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvok (vdsk) "
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonsk"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruznsk (\"Rusk\" rozloen)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruznsk (rozloen \"Latin\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "eck"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Maarsk"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Chorvatsk"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelsk"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelsk (foneticky)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "rnsk"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandsk"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italsk"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japonsk 106 klves"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejsk klvesnice"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinsko-Americk"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litevsk AZERTY (star)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litevsk AZERTY (nov)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litevsk \"seln ada\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litevsk \"foneticky\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
-msgstr "Latevsk"
+msgstr "Litevsk"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonsk"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandsk"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polsk (rozloen QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polsk (rozloen QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalsk"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadsk (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunsk (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunsk (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusk (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovinsk"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovensk (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovensk (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srbsk (cyrilice)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilsk"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thajsk"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
-msgstr "Tadisk klvesnice"
+msgstr "Tdick klvesnice"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tureck (tradin model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tureck (modern model \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinsk"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US (mezinrodn)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamsk \"seln ada\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslvsk (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Prav klvesa Alt"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Ob klvesy Shift souasn"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control a Shift souasn"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Klvesa CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl a Alt souasn"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt a Shift souasn"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Klvesa \"Menu\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Lev klvesa \"Windows\""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Prav klvesa \"Windows\""
@@ -6156,7 +6267,29 @@ msgstr "Propleten ppojn body %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Odeberte nejdve logick disky\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "slo"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d sel oddlench rkou"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d znakovch etzc oddlench rkou"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "rkou oddlen sla"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "rkou oddlen znakov etzce"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6198,10 +6331,6 @@ msgstr "1 tlatko"
msgid "Generic 2 Button Mouse"
msgstr "Standardn dvoutlatkov my"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Obecn"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "S kolekem"
@@ -6266,38 +6395,54 @@ msgstr "dn"
msgid "No mouse"
msgstr "Bez myi"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Vyzkouejte prosm, zda funguje my"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Vyzkouejte na myi,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "TOIT KOLEKEM!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Ukonit"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Dal ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Pedchoz"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Je to sprvn?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informace"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Rozbal vtev"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sbal vtev"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Pepnut mezi abecednm a skupinovm azenm"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Pipojen k Internetu"
@@ -6308,13 +6453,13 @@ msgid ""
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-"Nejbnji se pro pipojen pomoc adsl pouv pppoe.\n"
+"Nejbnji se pro pipojen pomoc ADSL pouv pppoe.\n"
"Nkter pipojen pouvaj pptp, nkter pouze dhcp. Jestli si nejste "
"jist, zvolte 'pout pppoe'"
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
@@ -6344,7 +6489,7 @@ msgstr ""
"Ve vaem potai nebyl nalezen dn sov adaptr.\n"
"Nemohu nastavit typ spojen."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Zvolte sov rozhran"
@@ -6359,7 +6504,7 @@ msgstr ""
msgid "no network card found"
msgstr "nebyla nalezena sov karta"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Nastavuji s"
@@ -6374,15 +6519,15 @@ msgstr ""
"DHCP servery. Toto jmno mus bt pln, jako napklad\n"
"'mybox.mylab.myco.com'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Jmno potae"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Prvodce nastavenm st"
@@ -6437,7 +6582,7 @@ msgstr "Nastaven ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vyberte si svho poskytovatele internetu.\n"
" Pokud nen na seznamu, vyberte si Jin"
@@ -6456,14 +6601,14 @@ msgstr "Protokol pouit ve zbytku svta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol pouit ve zbytku svta \n"
" dn D-kanl (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Kter protokol chcete pout?"
#: ../../network/isdn.pm_.c:199
@@ -6487,7 +6632,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jestli mte ISA kartu, mly by bt hodnoty na nsledujc obrazovce "
@@ -6504,13 +6650,13 @@ msgid "Continue"
msgstr "Pokraovat"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kterou z tchto ISDN karet mte?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Nael jsem ISDN PCI kartu, jej typ ale neznm. Prosm zvolte si jednu z "
"nsledujcho seznamu PCI karet."
@@ -6529,47 +6675,47 @@ msgstr "Ke ktermu sriovmu portu je v modem pipojen?"
msgid "Dialup options"
msgstr "Monosti vyten"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Jmno pipojen"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonn slo"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Pihlaovac jmno"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Podle scne"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Pomoc terminlu"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Jmno domny"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvn DNS Server (nepovinn)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Druh DNS Server (nepovinn)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6577,7 +6723,7 @@ msgstr ""
"\n"
"Mete se odpojit nebo pekonfigurovat pipojen."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6585,11 +6731,11 @@ msgstr ""
"\n"
"Mete pekonfigurovat pipojen."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "V souasnosti jste pipojeni k Internetu"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6597,32 +6743,32 @@ msgstr ""
"\n"
"Nemete se pipojit k Internetu nebo pekonfigurovat pipojen."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "V souasnosti nejste pipojeni k Internetu."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Pipojit"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Odpojit"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Nastavit pipojen"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Nastaven a pipojen k internetu"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Nyn se pipravuje konfigurace %s pipojen."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6641,12 +6787,12 @@ msgstr ""
"\n"
"Stisknte OK pro pokraovn."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Nastaven st"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6657,9 +6803,9 @@ msgstr ""
"Kliknte na Ok pro zachovn nastaven nebo kliknte na Zruit pro nov "
"nastaven pipojen Internetu a k sti.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6669,66 +6815,72 @@ msgstr ""
"Nyn lze nastavit pipojen k sti nebo internetu.\n"
"Pokud nechcete pout automatickou detekci, odznate polko.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Zvolte profil pro nastaven"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Pout autodetekci"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expertn reim"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detekuji zazen..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Modemov pipojen"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detekovno na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN pipojen"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detekovno %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL pipojen"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detekovno na rozhran %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelov pipojen"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detekovno kabelov pipojen"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Pipojen k LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "detekovan() sov() karta(y)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Zvolte si pipojen, kter chcete nastavit"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6738,23 +6890,23 @@ msgstr ""
"Vyberte si jeden, kter chcete pout.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetov pipojen"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Chcete se automaticky pipojovat po startu potae?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Nastaven st"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Je potebn znovu spustit s"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6765,7 +6917,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6775,7 +6927,7 @@ msgstr ""
"\n"
"Konfigurace bude nyn aktivovna.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6783,19 +6935,19 @@ msgstr ""
"Doporuujeme po tomto kroku restartovat X Window,\n"
"aby se pedelo problmm se zmnou jmna potae."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Vyskytl se problm bhem konfigurace.\n"
"Otestujte pipojen k Internetu pomoc net_monitor nebo mcc. Pokud nen "
"spojen funkn, bude poteba asi znovu nast konfiguraci"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6804,7 +6956,7 @@ msgstr ""
"Kliknte na Ok pro zachovn nastaven.\n"
"Modifikace nsledujcch poloek pepe toto nastaven."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6814,38 +6966,42 @@ msgstr ""
"Kad poloka mus bt zadna jako IP adresa v 'desetinn' form\n"
"(napklad 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Nastavuji sov zazen %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ovlada %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maska st"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatick IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Spustit pi startu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa mus bt ve formtu 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6856,64 +7012,64 @@ msgstr ""
"Toto jmno mus bt pln, jako 'mybox.mylab.myco.com'.\n"
"Pokud pouvte brnu(gateway), mete tak zadat jej adresu"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Brna (nap. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Zazen brny(gateway)"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Nastaven proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Sledovat id sov karty (uiten u notebook)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy by mla bt http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy by mla bt ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Nastaven Internetu"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Chcete se nyn pokusit pipojit k internetu?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testuji pipojen k internetu..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Pota je nyn pipojen k internetu"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Z bezpenostnch dvod bude spojen ukoneno."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6921,111 +7077,116 @@ msgstr ""
"Nepodailo se pipojit k Internetu.\n"
"Pokuste se pekonfigurovat dan pipojen."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Nastaven pipojen"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Prosm vyplte nebo zkontrolujte nsledujc daje"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ karty"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "DMA karty"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO karty"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 karty"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 karty"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vae osobn telefonn slo"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
-msgstr "Jmno poskytovatele (nap provider.net)"
+msgstr "Jmno poskytovatele (nap. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonn slo poskytovatele"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS poskytovatele .1 (voliteln)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS poskytovatele .2 (voliteln)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Vbr si zemi"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Typ vyten"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Rychlost pipojen"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Prodleva pipojen (vteiny)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "V et (uivatelsk jmno)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Heslo vaeho tu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Velk Britnie"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "chyba pipojovn: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Rozen diskov oddly nejsou na tomto systmu podporovny"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Ve tabulce diskovch oddl je mezera, ale nemohu ji pout.\n"
"Jedin een je pesunout primrn oddly tak, abyste mli mezeru vedle\n"
"rozench oddl."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Obnova ze souboru %s neuspla: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "patn zlon soubor"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Chyba pi zapisovn do souboru %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7035,186 +7196,186 @@ msgstr ""
"Test na integritu dat selhal. \n"
"To znamen, e zpis na tento disk me skonit nepedvdan"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "muste mt"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "dleit"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "nejmn dleit"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "nedleit"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "me se hodit"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Tiskov Systm pro Unix"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Nov generace"
+msgstr "LprNG - LPR Nov generace"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Dmon pro tiskrny"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Tisk bez ukldn do fronty"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr "LPRng"
+msgstr "LprNG"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Mstn tiskrna"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Vzdlen tiskrna"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Tiskrna na vzdlenm CUPS serveru"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Tiskrna na vzdlen lpd serveru"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Sov tiskrna (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tiskrna na serveru Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Tiskrna na Netware serveru"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Zadejte URI tiskovho zazen"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Poslat tiskovou lohu do pkazu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Neznm model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Mstn tiskrny"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Vzdlen tiskrny"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnm portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tiskrna \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multifunkn na paralelnm portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multifunkn zazen na USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", multifunkn zazen na HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multifunkn zazen"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", pi tisku na %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", tiskrna \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP hostitel \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na serveru Windows \"%s\", sdlen jako \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na severu Novell \"%s\", tiskrna \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", pouv pkaz %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Pm tisk (bez ovladae)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na tomto potai)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na serveru CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Vchoz)"
@@ -7236,11 +7397,11 @@ msgstr ""
"V ppad vzdlenho CUPS serveru nemuste nastavovat tiskrny zde,\n"
"tiskrny budou automaticky detekovny."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Nastaven CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Zadejte CUPS server"
@@ -7257,7 +7418,7 @@ msgstr ""
"Pi tisku na vzdlen CUPS server v lokln sti nen poteba nic "
"nastavovat, CUPS server bude automaticky informovat o jeho tiskrnch. "
"Vechny znm tiskrny pro tento pota jsou nyn vypsny v poli \"Vzdlen "
-"tiskrny\". v hlavn sekci nstroje Printerdrake. Pokud je CUPS na jin "
+"tiskrny\". v hlavn sekci nstroje PrinterDrake. Pokud je CUPS na jin "
"sti, muste pro zskn informac zadat IP adresu CUPS serveru a tak "
"ppadn slo portu, jinak nechte toto pole przdn."
@@ -7281,7 +7442,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa mus bt ve formtu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "slo portu mus bt cel slo!"
@@ -7289,7 +7450,7 @@ msgstr "slo portu mus bt cel slo!"
msgid "CUPS server IP"
msgstr "IP adresa CUPS serveru"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7297,20 +7458,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatick nastaven pro CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detekuji zazen ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Otestovat porty"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Pidat novou tiskrnu"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7331,13 +7484,13 @@ msgstr ""
"Budete dotzni na vechny potebn informace pro nastaven tiskrny, mete "
"si vybrat se vech tiskovch ovlada a typ pipojen tiskrny."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Mstn tiskrna"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7367,13 +7520,13 @@ msgstr ""
"Me se stt, e nkter potae mohou zatuhnout pi automatick detekci a "
"tehdy lze pout \"Expertn reim\" pro instalaci bez automatick detekce. "
"\"Expertn reim\" pouijte tak tehdy, pokud chcete nastavit vzdlenou "
-"tiskrnu(y) a printerdrake ji/je automaticky nenabdnul."
+"tiskrnu(y) a PrinterDrake ji/je automaticky nenabdl."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatick detekce tiskren"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7395,11 +7548,11 @@ msgstr ""
"hodnoty (typ zsobnku, kvalita tisku,...), zvolte \"Tiskrna\" v sekci "
"\"Hardware\" v dcm centru Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatick detekce tiskren"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7408,40 +7561,44 @@ msgid ""
"\n"
"Do you really want to get your printers auto-detected?"
msgstr ""
-"Printerdrake doke automaticky detekovat tiskrny pipojen pes paraleln "
+"PrinterDrake doke automaticky detekovat tiskrny pipojen pes paraleln "
"nebo USB rozhran, ale na nkterch systmech me automatick detekce "
"ZMRAZIT SYSTM A TAK POKODIT SOUBORY! Provdte to tedy na VLASTN "
"NEBEZPE!\n"
"\n"
"Chcete opravdu pout automatickou detekci tiskrny?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Provst autodetekci"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Nastavit tiskrnu manuln"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Otestovat porty"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detekovno %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tiskrna na paralelnm portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB tiskrna \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7453,11 +7610,11 @@ msgstr ""
"ekvivalentn LPT1:, LPT2:, ...,prvn USB tiskrna: /dev/usb/lp0, druh USB "
"tiskrna: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Muste zadat zazen nebo jmno souboru!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7465,7 +7622,7 @@ msgstr ""
"Mstn tiskrna nenalezena!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7473,7 +7630,7 @@ msgstr ""
"Sov tiskrny mohou bt nainstalovny a po instalaci systmu. V dcm "
"centru Mandrake vyberte \"Hardware\" a potom \"Tiskrna\"."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7481,7 +7638,7 @@ msgstr ""
"Pro instalaci sovch tiskren kliknte nejdve na \"Zruit\", pejdte do "
"\"Expertnho reimu\" a potom opt kliknte na \"Pidat novou tiskrnu\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7489,7 +7646,7 @@ msgstr ""
"Tyto tiskrny byly automaticky detekovny, pokud nen mezi nimi poadovan "
"tiskrna, zadejte do polka jmno zazen/jmno souboru"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7497,7 +7654,7 @@ msgstr ""
"Zde je seznam vech automaticky rozpoznanch tiskren. Vyberte si tiskrnu, "
"kterou chcete nastavit nebo zadejte do polka jmno zazen/jmno souboru"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7508,7 +7665,7 @@ msgstr ""
"automatick. Pokud nebyla tiskrna sprvn detekovna nebo preferujete "
"vlastn nastaven tisku, zvolte \"Run konfigurace\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7519,7 +7676,7 @@ msgstr ""
"pln automatick. Pokud nebyla tiskrna sprvn detekovna nebo preferujete "
"vlastn nastaven tisku, zvolte \"Run konfigurace\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7527,11 +7684,11 @@ msgstr ""
"Vyberte si port, ke ktermu je tiskrna pipojena nebo zadejte do polka "
"jmno zazen/jmno souboru"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Vyberte port, ke ktermu je vae tiskrna pipojena."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7539,52 +7696,66 @@ msgstr ""
" (Paraleln porty: /dev/lp0, /dev/lp1,... je ekvivalentn LPT1:, LPT2:, ...,"
"prvn USB tiskrna: /dev/usb/lp0, druh USB tiskrna: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Muste vybrat/zadat tiskrnu/zazen!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Run nastaven"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-"Je vae tiskrna multifunkn zazen od HP (OfficeJet, PSC, PhotoSmart "
-"LaserJet 1100/1200/1220/3200/3300 se skenerem)?"
+"Je vae tiskrna multifunkn zazen od HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 se skenerem), HP PhotoSmart P100 nebo 1315 nebo HP "
+"LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instaluji balek HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Testuj zazen a nastavuji HPOJ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instaluji balek SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaluji balky..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skenovn na multifunknm zazen od HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skenovn na multifunknm zazen od HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Zpstupuji tiskov port pro CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Natm databzi tiskren ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Monosti vzdlen lpd tiskrny"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7592,27 +7763,27 @@ msgstr ""
"Abyste mohli pouvat vzdlenou tiskovou frontu lpd, muste zadat jmno "
"tiskovho serveru a jmno tiskrny, kam m bt posln tisk."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Jmno vzdlenho potae"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Jmno vzdlen tiskrny"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Chyb jmno vzdlenho potae!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Chyb jmno vzdlen tiskrny!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Monosti SMB (Windows 9x/NT) tiskrny"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7624,35 +7795,35 @@ msgstr ""
"tiskovho serveru, jmno sdlen tiskrny, vhodn uivatelsk jmno, heslo a "
"informace o pracovn skupin."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Jmno SMB serveru"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP adresa SMB serveru"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Sdlen jmno"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Pracovn skupina"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Mus bt zadno bu jmno serveru nebo jeho IP adresa!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Chyb jmno pro sdlen pes Sambu!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "BEZPENOSTN VAROVN!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7675,14 +7846,14 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
-"Provdte nastaven tisku s tem na systmu Windows. Kvli chyb v klientu "
+"Provdte nastaven tisku s tem na systmu Windows. Dky chyb v klientu "
"protokolu Samba je heslo pi tisku poslno jako ist text z pkazov "
-"adky. Je tud mon, aby kdokoliv vidl toto heslo na obrazovce kdy si "
+"dky. Je tud mon, aby kdokoliv vidl toto heslo na obrazovce kdy si "
"zad pkaz nap. \"ps auxwww\".\n"
"\n"
"Doporuujeme pouvat jednu z nsledujcch alternativ (ve vech ppadech "
-"je dobr mt nastaven pstup pouze z pota z lokln st, respektiv za "
-"firewalem):\n"
+"je dobr mt nastaven pstup pouze z pota z lokln st, respektive za "
+"firewallem):\n"
"\n"
"Pout et, kter nem nastaven dn heslo, jako je \"GUEST\" nebo "
"speciln et pouze pro ely tisku. Neodstraujte ochranu heslem z bnho "
@@ -7690,10 +7861,10 @@ msgstr ""
"\n"
"Nastavte tiskrnu na Windows serveru tak, aby fungovala pod LPD protokolem. "
"Potom nastavte tisk na tto tiskrn pomoc typy spojen \"%s\" v aplikaci "
-"Printerdrake.\n"
+"PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7703,10 +7874,10 @@ msgid ""
msgstr ""
"Nastavit na serveru s Windows tiskrnu, kter bude pstupn pomoc IPP "
"protokolu a nastavit tisk z tohoto potae pomoc spojen \"%s\" v aplikaci "
-"Printerdrake.\n"
+"PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7718,11 +7889,11 @@ msgstr ""
"\n"
"Chcete opravdu pokraovat v nastaven tiskrny tmto zpsobem?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Monosti NetWare tiskrny"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7733,65 +7904,65 @@ msgstr ""
"serveru (Pozor! To me bt odlin od jeho jmna pro TCP/IP!), jmno "
"tiskov fronty tiskrny, kterou chcete pouvat, uivatelsk jmno a heslo."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Tiskov server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Jmno tiskov fronty"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Chyb jmno pro sdlen pes NCP!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Chyb jmno tiskov fronty pro NCP!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
-msgstr "Monosti tiskrny pro TCP/socket"
+msgstr "Monosti tiskrny pro TCP/Socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
"number is usually 9100, on other servers it can vary. See the manual of your "
"hardware."
msgstr ""
-"Abyste mohli tisknout na TCP nebo socketov tiskrn, muste zadat jmno "
+"Abyste mohli tisknout na TCP nebo soketov tiskrn, muste zadat jmno "
"potae s tiskrnou a voliteln i slo portu. Pokud mte HP JetDirect, "
"port je obvykle 9100, jinak se me mnit. Podvejte do manulu k vaemu "
"hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Jmno potae s tiskrnou"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Chyb jmno potae s tiskrnou!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Tiskovho Zazen"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
"Zde lze pmo zadat URI pro pstup k tiskrn. URI mus splovat bu "
-"specifikaci CUPS nebo Foomatic. Taky pamatujte na to, e vechny URI nejsou "
+"specifikaci CUPS nebo Foomatic. Tak pamatujte na to, e vechny URI nejsou "
"podporovny ve vech tiskovch sprvcch."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Mus bt zadno sprvn URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7799,27 +7970,23 @@ msgstr ""
"Kad tiskrna potebuje jmno (nap. \"tiskarna\"). Popis a umstn nemus "
"bt vyplnny. Jsou to komente pouze pro uivatele."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Jmno tiskrny"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Popis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Umstn"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Natm databzi tiskren ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model tiskrny"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7833,35 +8000,35 @@ msgid ""
"\n"
"%s"
msgstr ""
-"Printerdrake provedl porovnn modelu tiskrny, kter byl zjitn pi auto-"
-"detekci s modelem obsaenm v jeho databzi a nabdnul nejlep een. Tato "
+"PrinterDrake provedl porovnn modelu tiskrny, kter byl zjitn pi auto-"
+"detekci s modelem obsaenm v jeho databzi a nabdl nejlep een. Tato "
"volba me bt patn, zvlṻ pokud nen tiskrna obsaena v databzi. "
"Zkontrolujte, zda je volba sprvn a klepnte na \"Zvolen model je sprvn"
"\" a pokud nen, volte \"Vybrat model run\". V dal obrazovce potom bude "
"mon vybrat model tiskrny run.\n"
"\n"
-"Pro vai tiskrnu Printerdrake nalezl:\n"
+"Pro vai tiskrnu PrinterDrake nalezl:\n"
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Zvolen model je sprvn"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Vybrat model run"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Vbr modelu tiskrny"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Jak model tiskrny mte?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7871,11 +8038,11 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Zkontrolujte prosm, zda Printerdrake provedl automatickou detekci modelu "
+"Zkontrolujte prosm, zda PrinterDrake provedl automatickou detekci modelu "
"sprvn. Pokud je vyznaen nesprvn model, mete ho zmnit vbrem ze "
"seznamu nebo zvolte \"Raw printer\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7883,11 +8050,11 @@ msgstr ""
"Pokud nen tiskrna v seznamu, vyberte kompatibiln nebo podobn model "
"(podvejte se do manulu)"
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Nastaven pro OKI win-tiskrnu"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7902,11 +8069,11 @@ msgstr ""
"port, nebo se tiskne pes server, pipojte tiskrnu na prvn paraleln port. "
"Jinak tisk nebude pracovat. Typ pipojen bude ovlada ignorovat."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Nastaven inkoustov tiskrny Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7918,7 +8085,7 @@ msgstr ""
"tiskrnu na lokln port nebo ji nastavte na tom potai, ke ktermu bude "
"pipojena."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7938,7 +8105,7 @@ msgstr ""
"odsouhlasen licence. Pak mete nastavit chovn tiskov hlavy pomoc "
"tohoto programu."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7954,22 +8121,22 @@ msgstr ""
"podava) jsou nastaveny sprvn. Pi tisku ve velmi vysok kvalit/rozlien "
"bude tisk zejm pomalej."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Hodnota %s mus bt cel slo!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Hodnota %s mus bt slo!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Hodnota %s je mimo rozsah!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7978,11 +8145,11 @@ msgstr ""
"Chcete opravdu nastavit tiskrnu \"%s\"\n"
"jako vchoz?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testovac strnka"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7994,39 +8161,39 @@ msgstr ""
"se na tiskrn s mlo pamt nemus podait vbec. Ve vtin ppad sta "
"vytisknout bnou testovac strnku."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Bez testovac strnky"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Tisk"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardn testovac strnka"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
-msgstr "Alternativn testovac strnka (letter)"
+msgstr "Alternativn testovac strnka (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativn testovac strnka (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Testovac strnka s fotografi"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Netisknout testovac strnku"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Tisknu testovac strnku(y)"
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8041,7 +8208,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8049,15 +8216,15 @@ msgstr ""
"Zkuebn strnka byl poslna na tiskrnu.\n"
"Me chvilku trvat ne zane tisk.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Probhl tisk sprvn ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Pm tisk na tiskrnu"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8070,7 +8237,7 @@ msgstr ""
"<soubor>\". Grafick nstroje umouj jednodue vybrat tiskrny a mnit "
"jejich parametry.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8080,8 +8247,8 @@ msgstr ""
"vtin aplikac, ale nezadv se zde jmno souboru, kter je pokad jin v "
"zvislosti na dan aplikaci.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8094,18 +8261,18 @@ msgstr ""
"Jednodue zadejte potebn nastaven do pkazov dky, nap. \"%s<soubor>"
"\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Vechny monosti pro souasnou tiskrnu jsou zobrazeny ne, nebo kliknte "
"na tlatko \"Monosti tiskrny\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8113,7 +8280,7 @@ msgstr ""
"Zde je seznam dostupnch voleb pro nastaven tisku pro aktuln tiskrnu:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8122,8 +8289,8 @@ msgstr ""
"Pro vytitn souboru z pkazov dky (v terminlovm okn) pouijte "
"pkaz \"%s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8133,7 +8300,7 @@ msgstr ""
"vtin aplikac, ale nezadv se zde jmno souboru, kter je pokad jin v "
"zvislosti na dan aplikaci.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8141,7 +8308,7 @@ msgstr ""
"Vechny monosti tisku pro souasnou tiskrnu jsou zobrazeny ne, nebo "
"kliknte na tlatko \"Monosti tiskrny\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8150,7 +8317,7 @@ msgstr ""
"Pro vytitn souboru z pkazov dky (v terminlovm okn) pouijte "
"pkaz \"%s<soubor>\" nebo \"%s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8165,7 +8332,7 @@ msgstr ""
"pojmenovanou \"STOP Printer!\", kter po kliknut ihned zastav "
"vechnytiskov lohy. To je vhodn teba pro ppady uvznut papru.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8178,38 +8345,49 @@ msgstr ""
"lohu. Jednodue zadejte potebn nastaven do pkazov dky, nap. \"%"
"s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zavt"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tisknu/skenuji na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tisknu/skenuji na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tisknu/skenuji na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tisknu na tiskrnu \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zavt"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Monosti tiskrny"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8222,38 +8400,30 @@ msgstr ""
"\n"
"Nepouvejte pro toto zazen \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Multifunkn zazen od HP bylo nastaveno pro monost skenovn. Nyn lze "
-"skenovat pkazem \"ptal-hp %s scan ...\" z pkazovho dku. Skenovn z "
-"grafickho prosted nebo z programu GIMP nen zatm na tomto zazen "
-"podporovno. Vce informac naleznete v souboru \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\". Pokud mte HP LaserJet 1100 nebo 1200, lze skenovat "
-"pouze v ppad, e mte nainstalovnu podporu pro skenovn.\n"
-"\n"
-"Nepouvejte pro toto zazen \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Natm data k tisku ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Penst konfiguraci tiskrny"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8268,7 +8438,7 @@ msgstr ""
"ale tiskov lohy nebudou peneseny.\n"
"Ne vechny fronty lze penst z nsledujch dvod:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8276,7 +8446,7 @@ msgstr ""
"CUPS nepodporuje tiskrny na serverech Novell nebo tiskrny, kter poslaj "
"data na skupinu pkaz.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8284,11 +8454,11 @@ msgstr ""
"PDQ podporuje pouze mstn tiskrny, vzdlen tiskrny LPD a tisk na "
"tiskrny pes sockety/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ani LPRng nepodporuj IPP tiskrny.\n"
+msgstr "LPD ani LprNG nepodporuj IPP tiskrny.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8296,7 +8466,7 @@ msgstr ""
"Tiskov fronty, kter nebyly vytvoeny tmto programem nebo pes \"foomatic-"
"configure\" nelze penst."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8306,7 +8476,7 @@ msgstr ""
"Tak tiskrny pouvajc PPD soubory od jejich vrobc nebo tiskrny s "
"nativnmi ovladai pro CUPS nelze penst."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8315,15 +8485,15 @@ msgstr ""
"\n"
"Oznate tiskrnu, kterou chcete penst a stisknte \"Penst\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Nepenet tiskrny"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Penst"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8332,13 +8502,13 @@ msgid ""
msgstr ""
"Tiskrna se jmnem \"%s\" ji na stran %s existuje.\n"
"Kliknte na \"Penst\" pro pepsn.\n"
-"Taky mete napsat nov jmno nebo ji peskoit."
+"Tak mete napsat nov jmno nebo ji peskoit."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Jmno fronty me obsahovat pouze psmena, slice a podtrtko"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8347,16 +8517,16 @@ msgstr ""
"Tiskrna se jmnem %s ji existuje,\n"
"chcete opravdu pepsat jej konfiguraci?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nov jmno tiskrny"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Penm %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8365,29 +8535,29 @@ msgstr ""
"Byla penesena vchoz tiskrna (\"%s\"). M se nastavit jako vchoz tak "
"na vzdlenm tiskovm systmu %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Oberstvuji tiskov data ...."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Nastaven vzdlen tiskrny"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Spoutm s ...."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Nastavit s nyn"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "S nen nastavena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8398,11 +8568,11 @@ msgstr ""
"spojen, ale s nen zatm nastavena. Pokud budete pokraovat bez nastaven "
"st, nebude mon pout tiskrnu, kterou poadujete. Jak chcete pokraovat?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Pokraovat bez nastaven st"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8416,7 +8586,7 @@ msgstr ""
"Mandrake, v sekci \"S a Internet\"/\"Pipojen\" a nsledn nastavte "
"tiskrnu tak v dcm centru v sekci \"Hardware\"/\"Tiskrna\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8425,24 +8595,24 @@ msgstr ""
"S nefunguje a nelze ji spustit. Prosm zkontrolujte nastaven hardware. "
"Pak se opt pokuste provst nastaven vzdlen tiskrny."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Restartuji tiskov systm ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "vysok"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoidn"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaluji tiskov systm v bezpenostn rovni %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8456,7 +8626,7 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
-"Pokoute se instalovat tiskov systm %s na pota, bec v bezpenost "
+"Pokoute se instalovat tiskov systm %s na pota, bc v bezpenost "
"rovni %s.\n"
"\n"
"Tiskov systm pracuje jako dmon (proces na pozad), kter ek na tiskov "
@@ -8467,11 +8637,11 @@ msgstr ""
"\n"
"Chcete opravdu nastavit tiskov systm na tomto potai?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Spustit tiskov systm pi startu systmu"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8491,63 +8661,63 @@ msgstr ""
"\n"
"Chcete nastavit zpt automatick start tiskovho systmu?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Ovuj nainstalovan software..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
-msgstr "Odebrm LPRng..."
+msgstr "Odebrm LprNG..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Odebrm LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Zvolte tiskov systm pro tiskrnu"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kter tiskov systm chcete pout pro tisk?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Nastavuji tiskrnu \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instaluji Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Monosti tiskrny"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Pipravuji PrinterDrake ...."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Nastavovn aplikac..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Chtli byste nastavit tiskrnu?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Tiskov systm: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
-msgstr "Printerdrake"
+msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8559,7 +8729,7 @@ msgstr ""
"nastavit na vzdlenm CUPS serveru pro vyuit v aplikaci Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8568,28 +8738,32 @@ msgstr ""
"Jsou nastaveny nsledujc tiskrny. Dvojitm kliknutm na kadou z nich je "
"mon je modifikovat, nastavit jako vchoz nebo o nich zskat informace."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Obnovit seznam tiskren (pro zskn vech vzdlench CUPS tiskren)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Zmna tiskovho systmu"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normn reim"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Konec"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Chcete nastavit dal tiskrnu?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Zmnit nastaven tiskrny"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8598,104 +8772,104 @@ msgstr ""
"Tiskrna %s\n"
"Co chcete zmnit na tto tiskrn?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Provst!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Typ pipojen pro tiskrnu"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Jmno tiskrny, popis, umstn"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Vrobce tiskrny, model, ovlada"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Vrobce tiskrny, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Nastavit tuto tiskrnu jako vchoz"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Pidat tuto tiskrnu do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Odebrat tiskrnu ze Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
-msgstr "Tisk testovac(ch) strnky(nek)"
+msgstr "Tisk testovacch strnek"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Npovda pro tisk na tto tiskrn"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Odebrat tiskrnu"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Odebrm starou tiskrnu \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Odebrm starou tiskrnu \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Vchoz tiskrna"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tiskrna \"%s\" je nyn nastavena jako vchoz."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Pidvm tiskrnu do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Tiskrna \"%s\" byla spn pidna do Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Pidn tiskrny \"%s\" do Star Office/OpenOffice.org se nezdailo."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Odebrm tiskrnu ze Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"Tiskrna \"%s\" byla spn odebrna z aplikace Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Odebrn tiskrny \"%s\" ze Star Office/OpenOffice.org se nezdailo."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Chcete opravdu odebrat tiskrnu \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Odebrm tiskrnu \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Odebrm tiskrnu \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8779,24 +8953,62 @@ msgstr "Hesla nejsou shodn. Zkuste to znovu!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nemu pidat oddl do _naformtovanho_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Nemu zapsat soubor %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid neuspl"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid neuspl (mon, e chyb raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nen dostatek oddl pro RAID rovn %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Tato rove mus bt pouita s rozmyslem. Sice mete snadnji pouvat "
+"svj\n"
+"systm, ale na druhou stranu je velmi citliv: Nesm bt pouit pro\n"
+"pota pipojen k Internetu. Pro pihlen nen zapoteb dn heslo."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"S touto bezpenostn rovn je mon pouvat systm jako server.\n"
+"Bezpenost je nyn dostaten vysok, aby bylo mon pouvat systm jako "
+"server, ke ktermu\n"
+"je mon pipojit mnoho klient. Poznmka: pokud je pota pouvn pouze "
+"jako klient pro pipojen k Internetu, je lep zvolit ni rove."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Rozen volby"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Volby"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Spustit zvukov systm ALSA (Advanced Linux Sound Architecture)"
@@ -8851,7 +9063,7 @@ msgstr ""
"HardDrake testuje hardware a umouje nov/zmnn\n"
"hardware nastavit"
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache je WWW server. Je pouvn k poskytovn HTML a CGI soubor."
@@ -8924,7 +9136,7 @@ msgstr ""
"Linux Virtual Server pouvan pro sestaven vysoce vkonnho\n"
"a dostupnho serveru."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9001,7 +9213,7 @@ msgstr ""
"a NIS. Portmap server mus bt sputn na potach, kter funguj jako\n"
"servery pro protokoly, kter pouvaj mechanismus RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9055,7 +9267,7 @@ msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"Protokol rwho umouje vzdlenm(remote) uivatelm zskat seznam\n"
+"Protokol rwho umouje vzdlenm uivatelm zskat seznam\n"
"vech uivatel pihlench na potai s dmonem rwho (je to podobn\n"
"slub finger)."
@@ -9096,7 +9308,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Sdlen soubor"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systm"
@@ -9111,7 +9323,7 @@ msgstr "Databzov servery"
#: ../../services.pm_.c:170
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr "Skuby: aktivovno %d z %d registrovanch"
+msgstr "Sluby: aktivovno %d z %d registrovanch"
#: ../../services.pm_.c:186
msgid "Services"
@@ -9135,7 +9347,7 @@ msgid ""
"about this service, sorry."
msgstr ""
"Nejsou dn dal\n"
-"informace o slub, sorry."
+"informace o slub, promite."
#: ../../services.pm_.c:224
msgid "On boot"
@@ -9225,6 +9437,7 @@ msgstr ""
"GNU gcc kompiltor a dal prostedky na vvoj Open Source aplikac"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "dc centrum Mandrake"
@@ -9285,7 +9498,7 @@ msgid ""
msgstr ""
"Chcete se dozvdt o Linuxu jednoduchou, rychlou a snadnou cestou? "
"Poskytujeme zdarma kolen Linuxu, stejn jako testy vaich znalost "
-"prostednictvm online kolcho centra MandrakeCampus"
+"prostednictvm on-line kolcho centra MandrakeCampus"
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
@@ -9346,6 +9559,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instaluji balky..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Prosm odhlaste se a pak stisknte Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Pro aktivaci zmn se prosm znovu pihlaste na %s"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9354,6 +9576,145 @@ msgstr ""
"Nemu pest vai tabulku oddl, mon je pli naruen :(\n"
"Pokusm se pokraovat v itn patnch oddl"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Nastaven Mandrake Terminal Server"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Zapnout server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Vypnout server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Spustit server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Zastavit server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Disketa Etherboot/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Startovac image ze st"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Pidat/Odebrat uivatele"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Pidat/Odebrat klienty"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Npovda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Spoutc disketa"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Spoutc ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Sestavit cel jdro -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Bude to trvat nkolik minut."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Nebylo zvoleno dn jdro!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Sestavit jedinou NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Nen zvolena dn NIC!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Sestavit vechna jdra -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Smazat"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Smazat vechny NBI"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Pidat uivatele -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Odebrat uivatele"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Pidat klienta -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Odebrat klienta"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Nastaven dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Zapsat nastaven"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Prosm vlote disketu:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Nelze pracovat s disketou!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Disketu nyn mete vyjmout"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Nen dostupn dn disketov mechanika!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "ISO image pro Etherboot je %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Nco neprobhlo sprvn!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Je nutn nejprve vytvoit soubor /etc/dhcpd.conf!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Chyba!"
@@ -9404,6 +9765,10 @@ msgstr ""
"Vyberte prosm, kter z krok instalace m bt proveden automaticky stejn "
"jako instalan program nebo bude run zadn"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Vytvm disketu pro automatickou instalaci"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9416,12 +9781,12 @@ msgstr ""
"\n"
"Parametry pro automatickou instalaci jsou pstupn v sekci nalevo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratuluji!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9429,28 +9794,19 @@ msgstr ""
"Disketa byla s spchem vytvoena.\n"
"Nyn lze provst znovu instalaci."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Automatick instalace"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Pidat poloku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Odstranit posledn poloku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9460,7 +9816,7 @@ msgstr ""
" Report programu DrackBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9472,19 +9828,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9496,62 +9840,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "celkov prbh"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Zlohovat systmov soubory..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Zlon soubory pevnho disku..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Zlohovat soubory uivatel..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Prbh zlohovn na pevn disk... "
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Zlohovat dal soubory..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"seznam soubor poslan na FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Problmy FTP spojen: nebylo mon poslat data pro zlohu pes FTP.\n"
+" Problmy FTP spojen: Nebylo mon poslat vae soubory se zlohou pes "
+"FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Chyba pi posln poty. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Chyba pi posln poty. \n"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Vbr souboru"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Vyberte soubory nebo adrese a kliknte na 'Pidat'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9559,106 +9927,100 @@ msgstr ""
"\n"
"Zvolte prosm vechny volby, kter potebujete.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr "Tato volba zazlohuje a obnov vechny soubory v adresi /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Zlohovat systmov soubory ( adres /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Pout prstkovou zlohu (nepepisovat star zlohy)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Nezahrnout kritick soubory (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Tato volba dovol obnovit rzn verze adrese /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Zvolte prosm vechny uivatele, kter chcete zlohovat."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Nezahrnout cache prohlee"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Pout prstkovou zlohu (nepepisovat star zlohy)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Odstranit vybran"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Uivatel"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Pout FTP pipojen pro zlohu"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Zadejte prosm jmno potae nebo IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Zadejte adres, do kterho\n"
" bude umstna zloha."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Zadejte sv pihlaovac jmno"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Zadejte sv heslo"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Pamatovat si heslo"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP pipojen"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Bezpen pipojen"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Pout pro zlohovn CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Vyberte si velikost CD mdia"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Zvolte pokud pouvte CDRW mdia"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Pokud CDRW mdium nejdve smazat, zatrhnte"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9666,7 +10028,7 @@ msgstr ""
"Pokud chcete mt spoutc CD,\n"
" zatrhnte tuto volbu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9674,68 +10036,79 @@ msgstr ""
"Zadejte jmno va vypalovaky CD\n"
" nap.: 1,0,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Pout pskovou jednotku"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Zadejte jmno zazen, na kter se bude zlohovat"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Pokud CDRW mdium nejdve smazat, zatrhnte"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
"Zadejte prosm maximln velikost\n"
-" povolenou pro Drakbackup"
+" povolenou pro DrakBackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Zadejte adres, kam bude umstna zloha:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Pout kvty pro zlon soubory."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "S"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Pevn disk / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Zmnit typ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "kadou hodinu"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "kad den"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "kad tden"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "kad msc"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Pout dmona"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9743,7 +10116,7 @@ msgstr ""
"Vyberte si interval mezi\n"
"jednotlivmi zlohami"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9751,71 +10124,67 @@ msgstr ""
"Prosm zvolte si\n"
"mdium pro zlohy."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Pout pro pevn disk dmona"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Pout pro s dmona"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Ujistte se, e mezi slubami je ptomen cron dmon."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Poslat report po zloze mailem na :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Co"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Kde"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kdy"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Dal volby"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Nastaven pro DrakBackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Vyberte si, prosm, kam chcete zlohovat."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na pevn disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "pes s"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Prosm vyberte si, co chcete zlohovat"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Zlohovat systm"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Zlohovat uivatele"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Vybrat uivatele manuln"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9823,7 +10192,7 @@ msgstr ""
"\n"
"Zdroje pro zlohu:\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9831,7 +10200,7 @@ msgstr ""
"\n"
"- Systmov soubory:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9839,7 +10208,7 @@ msgstr ""
"\n"
"- Soubory uivatel:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9847,7 +10216,7 @@ msgstr ""
"\n"
"- Dal soubory:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9856,16 +10225,45 @@ msgstr ""
"\n"
"- Uloit na pevn disk do adrese: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Ppojen myi: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Uloit na FTP na pota: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Uloit na FTP na pota: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9874,7 +10272,7 @@ msgstr ""
"\t\t uivatelsk jmno: %s\n"
"\t\t cesta: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9882,19 +10280,19 @@ msgstr ""
"\n"
"- Volby:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNezahrnout systmov soubory\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tZlohovn pouv tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tZlohovn pouv tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9903,27 +10301,41 @@ msgstr ""
"\n"
"- Dmon (%s) zahrnuje :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Pevn disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-St pes FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-St pes SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-St pes FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-St pes FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Pro prvn sputn pouijte Prvodce nebo Rozen.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9931,7 +10343,7 @@ msgstr ""
"Seznam dat pro obnoven:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9939,132 +10351,135 @@ msgstr ""
"Seznam pokozench dat:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Zrute tuto volbu pi dalm sputn."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Zlon soubory jsou pokozen"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Vechna vybran data byla "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " spn obnoveno na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Obnovit konfiguraci "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Obnovit tak ostatn soubory."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Seznam uivatel pro obnoven (od kadho bude obnovena pouze posledn "
"zloha)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Zlohovat systmov soubory ped:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Vyberte datum obnoven zlohy"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Pout pro zlohovn pevn disk"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Zadejte adres, kam bude umstna zloha:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP pipojen"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Bezpen pipojen"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Obnovit z pevnho disku."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Zadejte adres, kde jsou umstny zlohy"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Vyberte dal mdium, kde jsou umstny zlohy"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Dal mdia"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Obnovit systm"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Obnovit uivatele"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Obnovit ostatn"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "vyberte cestu pro obnovu (krom / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Provst novou zlohu ped obnovou (pouze pro prstkovou zlohu)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Odebrat adrese uivatele ped obnovou."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Obnovit vechny zlohy"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Vlastn obnova"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Npovda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Pedchoz"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Uloit"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Vytvoit zlohu"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Obnovit"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Dal"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10072,7 +10487,7 @@ msgstr ""
"Dve ne budete obnovovat, vytvote zlohu...\n"
"nebo ovte, e dan cesta je sprvn."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10082,31 +10497,35 @@ msgstr ""
" vmi zvolen report nebyl odesln\n"
" Provete prosm nastaven sendmailu"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Seznam balk pro instalaci"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Tyto balky budou instalovny"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Chyba pi posln soubor pes FTP.\n"
" Prosm opravte nastaven pro FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Prosm zvolte data pro obnovu..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Prosm zvolte si mdium pro zlohy..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Zkontrolujte prosm data pro zlohovn..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10114,75 +10533,75 @@ msgstr ""
"Nebyl nalezen konfiguran soubor, \n"
"kliknte na Prvodce nebo na Rozen."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Vyvj se... ekejte prosm."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Zlohovat systmov soubory"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Zlohovat uivatelsk soubory"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Zlohovat dal soubory"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Celkov prbh"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "soubory poslan pes FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Poslm soubory..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr "Seznam dat, kter budou na CROM."
+msgstr "Seznam dat, kter budou na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Zadejte rychlost vypalovac mechaniky"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Zadejte prosm jmno CD vypalovaky (nap.: 1.0.0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Zvolte, pokud chcete mt instalan CD spustiteln."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Zlohovat z konfiguranho souboru"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Prohldnout konfiguraci zlohy."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Prvodce konfigurac"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Rozen konfigurace"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Zlohovat nyn"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10241,7 +10660,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10255,7 +10674,7 @@ msgstr ""
" nastavte myhostname a mydomain v /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10331,7 +10750,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10382,13 +10801,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10405,7 +10829,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
" Tento program je svobodn software; mete ho it a/nebo modifikovat\n"
-" podle specifikace GNU General Public Licence, kter byla publikva\n"
+" podle specifikace GNU General Public Licence, kter byla publikovna\n"
" Free Software Foundation; bu verze 2, nebo (podle volby) pozdj verze.\n"
"\n"
" Tento program je distribuovn s nadj, e bude uiten,\n"
@@ -10416,7 +10840,7 @@ msgstr ""
" nebo si o n mete napsat na adresu Free Software Foundation, Inc.,\n"
" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10491,7 +10915,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10509,7 +10933,7 @@ msgstr ""
"ji polete na server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10532,7 +10956,7 @@ msgstr ""
"data run.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10611,99 +11035,526 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalace %s neuspla. Stala se tato chyba:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Nstroj spolenosti Mandrake pro hlen chyb"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Prvodce pro nov uivatele"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Nstroj na synchronizaci"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Samostatn nstroje"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Vzdlen ovldn"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Sprvce software"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Nstroj pro migraci z Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "UserDrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Prvodci nastavenm"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Aplikace:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Balek: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Jdro: "
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Verze: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"Chcete-li poslat hlen o chyb, klepnte na tlatko pro nahlen chyby.\n"
+"Oteve se okno s prohleem st Internet na adrese https://www.bugzilla."
+"com,\n"
+"kde najdete formul k vyplnn. Ve uveden informace budou na tento "
+"server\n"
+"takt peneseny.\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Nen instalovno"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Hlen"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "pipojuji se k prvodci Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Nen k dispozici dn prohle st Internet! Prosm nainstalujte njak."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Nastaven st (%d adaptry())"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Smazat profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Smazat profil:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nov profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Zadejte jmno vytvenho profilu (nov profil je vytvoen jako kopie "
+"vybranho) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Jmno potae: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Pstup na Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Typ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Brna(gateway):"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Rozhran:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "ekejte prosm"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Nastavuji pstup na Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Nastaven LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ovlada"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Rozhran"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Nastavuji lokln s..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Kliknte pro sputn prvodce ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Prvodce..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Pout"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "ekejte prosm... Aktivuji konfiguraci"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Pipojen"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nepipojen"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Pipojit..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Odpojit..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "Varovn, bylo detekovno jin pipojen k Internetu, zejm je to s"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemte nakonfigurovno dn rozhran.\n"
+"Nastavte jej kliknutm na 'Konfigurovat'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Nastaven LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptr %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protokol o sputn"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Spustit pi startu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivovat nyn"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivovat nyn"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Toto rozhran jet nebylo nastaveno.\n"
+"Spuste prvodce konfigurac z hlavnho okna"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemte dn pipojen k Internetu.\n"
+"Vytvote si jej kliknutm na 'Konfigurovat'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfigurace pipojen k internetu"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfigurace pipojen k internetu"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Typ pipojen:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametry"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Brna(gateway)"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernetov karta"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "pouit: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-iso8859-2,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Jmno modulu"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Velikost"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "vytven zavdcch disket"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "pedvolen"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Chyba DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "verze jdra"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Obecn"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Expertn nastaven"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "voliteln argumenty pro mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Pidat modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "vnutit"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "pokud je poteba"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "vynechat SCSI moduly"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "vynechat RAID moduly"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Odebrat modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Vstup"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Vytvoit disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Zkontrolujte, zda v je zazen %s vloeno mdium"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"V zazen %s nen dn mdium, nebo je mdium chrnno proti zpisu.\n"
+"Vlote prosm njak."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Nelze provst fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Nelze korektn ukonit mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Hledm instalovan fonty"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Odznait instalovan fonty"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "zpracovvm vechny fonty"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nebyly nalezeny dn fonty"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "hotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "nelze nalzt dn fonty v pipojenm oddle"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Znovu vybrat sprvn fonty"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "nelze nalzt dn font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Hledat fonty mezi instalovanmi"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopie fontu"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr "Instalace font True Type"
+msgstr "Instalace psem True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "ekejte prosm, prv b ttmkfdir... "
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Instalace True Type font je dokonena"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverze font"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "vytvm type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Odkazy na Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "konverze ttf font"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "konverze pfm font"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Ignorovat doasn soubory"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Restartovat XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Ignorovat soubory s fonty"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "restart xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10717,107 +11568,107 @@ msgstr ""
"- Fonty lze instalovat bnm zpsobem. Ve vjimench ppadech me patn "
"font zpsobit zamrznut X serveru."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Zavdn font"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Nast fonty z Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Odinstalovat fonty"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Rozen volby"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Seznam font"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Zvolte aplikace, kter podporuj fonty:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Obecn tiskrny"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vyberte soubor s fontem nebo adres a kliknte na 'Pidat'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Instalovat seznam"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "kliknte zde, pokud jste si jisti."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "zde pokud si nejste jisti."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Zruit cel vbr"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Vybrat ve"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Odebrat seznam"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "vodn testy"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Koprovat fonty do systmu"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instalovat & konvertovat fonty"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Poinstalan nastaven"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Odebrat fonty ze systmu"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Nastaven po odebrn"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Sdlen Internetovho Pipojen"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Omlouvme se, ale podporujeme pouze jdra ady 2.4."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Sdlen Internetovho pipojen je zapnuto"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10829,31 +11680,31 @@ msgstr ""
"\n"
"Co chcete dle dlat?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "vypnout"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "odmtnout"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "pekonfigurovat"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Zakazuji servery..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Sdlen Internetovho pipojen je nyn vypnuto."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Sdlen Internetovho pipojen je vypnuto"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10865,19 +11716,19 @@ msgstr ""
"\n"
"Co chcete dle dlat?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "povolit"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Povoluji servery..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Sdlen Internetovho pipojen je nyn zapnuto."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10892,21 +11743,21 @@ msgstr ""
"\n"
"Pozn.: potebujete vyhrazen sov adaptr pro nastaven lokln st (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rozhran %s (pouv modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Rozhran %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ve vaem systmu nen dn sov adaptr!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10914,11 +11765,11 @@ msgstr ""
"Ve vaem potai nebyl nalezen dn sov adaptr. Spuste prosm program "
"pro nastaven hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Sov rozhran"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10933,17 +11784,17 @@ msgstr ""
"\n"
"Na tomto adaptru bude nastavena lokln s."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Prosm zvolte si, ke ktermu sovmu adaptru bude pipojena LAN."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Sov rozhran je ji nastaveno"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10958,15 +11809,15 @@ msgstr ""
"\n"
"Lze to tak provst run, ale muste vdt, co dlte."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatick penastaven"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Zobrazit aktuln nastaven rozhran"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10983,7 +11834,7 @@ msgstr ""
"IP atributy: %s\n"
"Ovlada: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11002,32 +11853,32 @@ msgstr ""
"poteby.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokln s"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Adresa DHCP serveru"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Penastaven rozhran a DHCP serveru"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "slo lokln s nekon na .0, zkoum znovu."
+msgstr "slo lokln st nekon na .0, zkoum znovu."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Nael jsem mon konflikt v souasnm nastaven LAN adresy pro %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Nael jsem existujc nastaven firewallu!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11035,20 +11886,20 @@ msgstr ""
"Varovn! Bylo nalezeno existujc nastaven firewallu. Po instalaci me "
"bt zapoteb njak run prava."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Nastavuji..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Nastavuji skripty, instaluji software, startuji servery..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problm s instalac balku %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11058,23 +11909,23 @@ msgstr ""
"Nyn lze pout tento pota pro sdlen pipojen k Internetu pro vai "
"lokln s, kter pouv automatickou konfiguraci st (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Nastaven ji bylo provedeno, ale nyn je vypnuto."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Nastaven ji bylo provedeno, nyn je povoleno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nen nastaveno dn sdlen Internetovho pipojen."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Nastaven sdlen pipojen k Internetu"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11089,214 +11940,6 @@ msgstr ""
"\n"
"Kliknte na Konfigurovat, pokud chcete spustit prvodce nastavenm."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Nastaven st (%d adaptry())"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Smazat profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Smazat profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nov profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Zadejte jmno vytvenho profilu (nov profil je vytvoen jako kopie "
-"vybranho) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Jmno potae: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Pstup na Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Brna(gateway):"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rozhran:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "ekejte prosm"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Nastavuji pstup na Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Nastaven LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ovlada"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rozhran"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Nastavuji lokln s..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Kliknte pro sputn prvodce ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Prvodce..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pout"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "ekejte prosm... Aktivuji konfiguraci"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Pipojen"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepipojen"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Pipojit..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odpojit..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "Varovn, bylo detekovno jin pipojen k Internetu, zejm je to s"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemte nakonfigurovno dn rozhran.\n"
-"Nastavte jej kliknutm na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Nastaven LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptr %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokol o sputn"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Spustit pi startu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivovat nyn"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivovat nyn"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Toto rozhran jet nebylo nastaveno.\n"
-"Spuste prvodce konfigurac z hlavnho okna"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemte dn pipojen k Internetu.\n"
-"Vytvote si jej kliknutm na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurace pipojen k internetu"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurace pipojen k internetu"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Typ pipojen:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametry"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Brna(gateway)"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetov karta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "rove zabezpeen"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "dc centrum"
@@ -11305,63 +11948,93 @@ msgstr "dc centrum"
msgid "Choose the tool you want to use"
msgstr "Zvolte si nstroj, kter chcete pout"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+"Aplikace XawTV nen nainstalovan!\n"
+"\n"
+"\n"
+"Mte-li TV kartu a nstroj DrakX ji ani nerozpoznal (nen ptomen\n"
+"modul bttv v \"/etc/modules\"), ani nenainstaloval aplikaci XawTV, polete\n"
+"prosm vsledek pkazu \"lspcidrake -v -f\" na adresu \"install"
+"\\@mandrakesoft.com\"\n"
+"s pedmtem zprvy \"undetected TV card\".\n"
+"\n"
+"\n"
+"Tuto aplikaci mete doinstalovat pkazem \"urpmi xawtv\" sputnm \n"
+"v konzoli pod uivatelem root."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "na (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "na (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japonsko (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "Japonsko (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japonsko (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Vchodn Evropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Francie [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irsko"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Zpadn Evropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Austrlie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nov Zland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Jin Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11369,27 +12042,43 @@ msgstr ""
"Zadejte prosm\n"
"typ TV normy a zemi"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norma TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Probh vyhledvn TV kanl ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Vyhledvm TV kanly"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Nastala chyba pi zkoumn TV kanl"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "Aplikace XawTV nen nainstalovan!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Peji hezk den!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nyn mete spustit aplikaci XawTV (pod X Windows!)\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Nebyla nalezena TV karta!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11419,7 +12108,7 @@ msgstr "Jak je rozloen va klvesnice?"
#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Chcete, aby se klvesa BackSpace chovala v konzoli jako Delete?"
+msgstr "Chcete, aby se klvesa Backspace chovala v konzoli jako Delete?"
#: ../../standalone/livedrake_.c:24
msgid "Change Cd-Rom"
@@ -11439,9 +12128,9 @@ msgstr "Nelze spustit aktualizaci na bc systm !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr "Zmny jsou provedeny, ale pro aktivaci je nutn provst logout"
+msgstr "Zmny jsou provedeny, ale pro aktivaci je nutn provst odhlen"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11451,7 +12140,7 @@ msgstr "Zobrazit pouze pro vybran den"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/_Soubor/_Nov"
+msgstr "/Soubor/_Nov"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11489,10 +12178,6 @@ msgstr "/_Volby"
msgid "/Options/Test"
msgstr "/Volby/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Npovda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Npovda/_O aplikaci..."
@@ -11527,7 +12212,7 @@ msgstr "vyhledat"
#: ../../standalone/logdrake_.c:185
msgid "A tool to monitor your logs"
-msgstr "Nstroj na monitorovn log"
+msgstr "Nstroj na sledovn log"
#: ../../standalone/logdrake_.c:186
msgid "Settings"
@@ -11553,7 +12238,7 @@ msgstr "Kalend"
msgid "Content of the file"
msgstr "Obsah souboru"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Varovn zprvy pes Mail/SMS"
@@ -11562,11 +12247,11 @@ msgstr "Varovn zprvy pes Mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "ekejte prosm, zpracovvm soubor: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Nastaven upozornn pes Mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11576,63 +12261,94 @@ msgstr ""
"\n"
"Zde lze nastavit posln varovnch zprv.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Jmno domny"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Zastavit server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Potovn server postfix, server pro diskusn skupiny Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Spustit server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Sluby"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Tiskov server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "nastaven slueb"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Pokud jedna z vybranch slueb nepob, obdrte varovnou zprvu"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "nahrt volby"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Pokud bude hodnota vet ne zadan slo, obdrte varovnou zprvu"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "nastaven varovn"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Nastavuje zpsob, jakm bude systm poslat varovn hlky"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Uloit jako..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Jak je typ va myi?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nebylo nalezeno serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulovat tet tlatko?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Natm daje o tiskrn ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Detekuji zazen ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11667,8 +12383,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
-"Skener %s mus bt nastaven pomoc nstroje printerdrake.\n"
-"Spustit printerdrake lze z dcho centra Mandrake v sekci Hardware"
+"Skener %s mus bt nastaven pomoc nstroje PrinterDrake.\n"
+"Spustit PrinterDrake lze z dcho centra Mandrake v sekci Hardware"
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -11681,6 +12397,20 @@ msgstr ""
"Nyn lze skenovat dokumenty pomoc aplikace \"XSane\" z nabdky aplikac "
"Multimdia/Grafika."
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Nkter zazen v td hardware \"%s\" byla odstranna:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Nkter zazen v td hardware \"%s\" byla pidna:\n"
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Konfigurace firewallu"
@@ -11721,7 +12451,7 @@ msgstr "Volba typu instalace"
#: ../../steps.pm_.c:16
msgid "Hard drive detection"
-msgstr "Detekce hardisk"
+msgstr "Detekce pevnch disk"
#: ../../steps.pm_.c:17
msgid "Configure mouse"
@@ -11977,11 +12707,11 @@ msgstr "Prvodce konfigurac firewallu"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
-msgstr "Ne (zakzat na firewalu)"
+msgstr "Ne (zakzat na firewallu)"
#: ../../tinyfirewall.pm_.c:200
msgid "Yes (allow this through the firewall)"
-msgstr "Ano (povolit na firewalu)"
+msgstr "Ano (povolit na firewallu)"
#: ../../tinyfirewall.pm_.c:232
msgid "Please Wait... Verifying installed packages"
@@ -12037,8 +12767,8 @@ msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-"Programy pro kancel: textov procesory (kword, abiword), tabulkov "
-"procesory (kspread, gnumeric), prohlee pdf a dal"
+"Programy pro kancel: textov procesory (KWord, Abiword), tabulkov "
+"procesory (KSpread, Gnumeric), prohlee PDF a dal"
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
@@ -12054,7 +12784,7 @@ msgstr "Pracovn stanice s KDE"
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm a dal"
+msgstr "IceWM, Window Maker, Enlightenment, Fvwm a dal"
#: ../../share/compssUsers:999
msgid "Multimedia - Video"
@@ -12062,7 +12792,8 @@ msgstr "Multimdia - video"
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Skupina program pro mail, newsy, web, penos soubor a chat"
+msgstr ""
+"Skupina program pro potu, diskusn skupiny, web, penos soubor a chat"
#: ../../share/compssUsers:999
msgid "Database"
@@ -12070,7 +12801,7 @@ msgstr "Databze"
#: ../../share/compssUsers:999
msgid "PostgreSQL or MySQL database server"
-msgstr "Databzov servery PostreSQL nebo MySQL"
+msgstr "Databzov servery PostgreSQL nebo MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
@@ -12081,10 +12812,6 @@ msgid "Multimedia - Sound"
msgstr "Multimdia - zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utility"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentace"
@@ -12094,7 +12821,7 @@ msgstr "Konzolov nstroje"
#: ../../share/compssUsers:999
msgid "Postfix mail server, Inn news server"
-msgstr "Potovn server postfix, server pro news Inn"
+msgstr "Potovn server postfix, server pro diskusn skupiny Inn"
#: ../../share/compssUsers:999
msgid "Internet station"
@@ -12102,7 +12829,7 @@ msgstr "Internetov stanice"
#: ../../share/compssUsers:999
msgid "Multimedia station"
-msgstr "Multimdiln stanice"
+msgstr "Multimediln stanice"
#: ../../share/compssUsers:999
msgid "Configuration"
@@ -12142,11 +12869,11 @@ msgstr "Server"
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm a dal"
+msgstr "Gnome, IceWM, Window Maker, Enlightenment, Fvwm a dal"
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
-msgstr "Grafick programy jako nap. Gimp"
+msgstr "Grafick programy jako nap. GIMP"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
@@ -12162,7 +12889,7 @@ msgstr "Sov server"
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
-msgstr "Pota/Groupware/News"
+msgstr "Pota/Groupware/Diskuse"
#: ../../share/compssUsers:999
msgid "Game station"
@@ -12185,12 +12912,8 @@ msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
-"Kolekce nstroj pro ten a poslan mail (pine, mutt, tin..) a pro "
-"prohlen Webu"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivace, emultory, minitoring"
+"Kolekce nstroj pro ten a poslan el. poty a pspvk do diskusnch "
+"skupin (pine, mutt, tin..) a pro prohlen Webu"
#: ../../share/compssUsers:999
msgid "Personal Finance"
@@ -12226,7 +12949,7 @@ msgstr "Editory, shelly, souborov nstroje, terminly"
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programy na sprvu financ jako nap. gnucash"
+msgstr "Programy na sprvu financ jako nap. GnuCash"
#: ../../share/compssUsers:999
msgid "Personal Information Management"
@@ -12239,3 +12962,157 @@ msgstr "Multimdia - vypalovn CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Vdeck stanice"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "selhal bh fsck s nvratovm kdem %d nebo signlem %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikace grafick karty: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Zvolte monosti pro dan X server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor nen nastaven"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafick karta jet nen nastavena"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Jet nejsou zvolena rozlien"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "zkuste zmnit nkter parametry"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Vyskytla se tato chyba:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Test skon automaticky za %d sekund"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Je to sprvn nastaven?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Vyskytla se chyba, zkuste zmnit nkter parametry"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Ukzat ve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pipravuji nastaven X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Co chcete dlat?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Zmnit monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Zmnit grafickou kartu"
+
+#~ msgid "Change Server options"
+#~ msgstr "Zmnit parametry X Serveru"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Zmnit rozlien"
+
+#~ msgid "Show information"
+#~ msgstr "Zobrazit informace"
+
+#~ msgid "Test again"
+#~ msgstr "Znovu vyzkouet nastaven X"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Vysvtlivky k polm:\n"
+#~ "\n"
+#~ "Sbrnice: fyzick sbrnice, do n je zazen zapojeno (nap. PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Identifikace sbrnice: \n"
+#~ "- PCI zazen: zobrazuje ID dodavatele, zazen, subdodavatele a "
+#~ "podzazen\n"
+#~ "\n"
+#~ "Popis: Toto pole ble popisuje zazen.\n"
+#~ "\n"
+#~ "Umstn na sbrnici:\n"
+#~ "- zazen PCI: uruje PCI slot, zazen a funkce tto karty\n"
+#~ "- zazen EIDE: zazen je bu \"slave\" nebo \"master\"\n"
+#~ "- zazen SCSI: SCSI sbrnice a ID zazen na SCSI sbrnici\n"
+#~ "\n"
+#~ "Tda mdi: tda hardwarovho zazen\n"
+#~ "\n"
+#~ "Modul: modul jdra operanho systmu GNU/Linux, kter zazen "
+#~ "obsluhuje\n"
+#~ "\n"
+#~ "Dodavatel: Jmno dodavatele zazen\n"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Multifunkn zazen od HP bylo nastaveno pro monost skenovn. Nyn "
+#~ "lze skenovat pkazem \"ptal-hp %s scan ...\" z pkazovho dku. "
+#~ "Skenovn z grafickho prosted nebo z programu GIMP nen zatm na tomto "
+#~ "zazen podporovno. Vce informac naleznete v souboru \"/usr/share/doc/"
+#~ "hpoj-0.8/ptal-hp-scan.html\". Pokud mte HP LaserJet 1100 nebo 1200, lze "
+#~ "skenovat pouze v ppad, e mte nainstalovnu podporu pro skenovn.\n"
+#~ "\n"
+#~ "Nepouvejte pro toto zazen \"scannerdrake\"!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Pout pro pevn disk dmona"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Pout pro s dmona"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Seznam balk pro instalaci"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 97fdf158a..ace5bdb10 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -1,38 +1,67 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Dafydd Tomos <dafydd@imaginet.co.uk>, 1999
-# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2002
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-11 12:35-0000\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-02-23 10:00-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
-"Language-Team: Cymraeg/Welsh <cy@li.org>\n"
+"Language-Team: Cymraeg <cy@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-14\n"
+"Content-Type: text/plain; charset=iso-8859-14\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ffurfweddu pob pen yn annibynnol"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Defnyddiwch estyniad Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "16 MB neu fwy"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Dewiswch wasanaethwr X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Gwasanaethwr X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Ffurfweddiad amlben"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,41 +69,44 @@ msgstr ""
"Mae eich system yn cynnal ffurfweddiad amlben.\n"
"Beth hoffech ei wneud?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Cerdyn graffig"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Dewiswch gerdyn graffig"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Ffurfweddiad XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Dewiswch wasanaethwr X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Gwasanaethwr X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Ffurfweddu pob pen yn annibynnol"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Dewiswch yrrwr X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Gyrrwr X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86: %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,33 +117,18 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gyda cyflymu caledwedd 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
-"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +141,58 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
+"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Ffurfweddiad XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Cadw'r newid?\n"
+"Y ffurfweddiad presenol yw:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Dewiswch fonitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Arddull"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generig"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Dadwneud"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -170,511 +214,326 @@ msgstr ""
"hynny.\n"
"Os oes gennych amheuaeth, dewiswch raddfa is."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Graddfa adfywio llorweddol"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Graddfa adfywio fertigol"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor heb ei ffurfweddu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Cerdyn graffig heb ei ffurfweddu eto"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Cydraniad heb ei ddewis eto"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Profi'r ffurfweddiad"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 lliw (8 did)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ceisiwch newid rhai paramedrau"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil o liwiau (15 did)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Digwyddodd gwall:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil o liwiau (16 did)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Gadael mewn %d eiliad"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliwn o liwiau (24 did)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ydi'r gosodiad hwn yn gywir?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biliwn o liwiau (32 did)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Cydraniadau"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Cydraniad"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Gwasanaethwr XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Rhagor"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Diddymu"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Iawn"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modd Arbennigwr"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Dangos y cyfan"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Cydraniadau"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Profi'r ffurfweddiad"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Gosodiad yr yr allweddell: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Math o lygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dyfais llygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Cerdyn graffeg: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Dynodiad y cerdyn graffeg: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Cof graffeg: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dyfnder lliw: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Cydraniad: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "GwasanaethwrXFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Gyrrwr XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Yn parataoi cyfluniad X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Beth ydych eisiau ei wneud?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Newid Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Newid cerdyn Graffeg"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Dewisiadau newid Gwasanaethwr"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Newid Cydraniad"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Dangos gwybodaeth"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Profi eto"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Gadael"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Cadw'r newid?\n"
-"Y ffurfweddiad presenol yw:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X wrth ddechrau"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar l cychwyn\n"
"Hoffech chi X i ddechrau wedi i chi ail-gychwyn?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 lliw (8 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil o liwiau (15 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil o liwiau (16 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliwn o liwiau (24 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biliwn o liwiau (32 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "16 MB neu fwy"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA safonol, 640x480 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Uwch VGA, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Adran gyntaf o'r rhaniad cychwyn"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r gyrrwr (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Gosodiad SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Lle ydych chi eisiau gosod y llwythwr cychwyn?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Gosodiad LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Lilo gyda dewislen graffig"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Cychwyn o DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Prif ddewisiadau Bootloader"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader ar waith"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Gosodiad Bootloader"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nid yw'n gweithio gyda hen BIOSau)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Cryno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "cryno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modd fideo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn delwedd rhagosodedig"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Cyfyngu dewisiadau llinell orchymyn"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "cyfyngu"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Union faint o RAM os oes angen (canfod %dMB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Galluogi aml-broffil"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Rhowch maint RAM mewn MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Neges Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Goramser cychwyn y cnewyllyn"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Galluogi cychwyn o CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Systm Weithredu Rhagosodedig?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -688,83 +547,83 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Dyma'r cofnodion gwahanol.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gorffen"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Newid"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Delwedd"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Gwraidd"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Atodi"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Darllen-ysgrifennu"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabl"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Anniogel"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Rhagosodedig"
@@ -796,53 +655,78 @@ msgstr "Rhaid pennu rhaniad cyfnewid"
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych rhyngwynebau %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Iawn"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Gweler gwyboadeth am galedwedd"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr ar gyfer cerdyn %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modiwl %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
+"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
+"'0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Medrwch nawr ei ddewis i fodiwl. %s.\n"
+"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
+"e.e, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Dewisiadau modiwl:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,40 +746,15 @@ msgstr ""
"unrhyw\n"
"ddifrod"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Atoholi"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
-"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
-"'0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Medrwch nawr ei ddewis i fodiwl. %s.\n"
-"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
-"e.e, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Dewisiadau modiwl:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,50 +763,55 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "caniatu \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -956,32 +820,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -990,87 +854,67 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Gallwch ddewis ieithoedd eraill fydd ar gael ar l gosod"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Caniatu pob defnyddiwr"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Arddull"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
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?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Dileu"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1078,31 +922,31 @@ msgstr ""
"Mae rhannu yn l defnyddiwr yn defnyddio \"rhannu ffeiliau\" grwp.\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1113,7 +957,7 @@ msgstr ""
"i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1121,7 +965,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1129,7 +973,7 @@ msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu 'r Rhyngrwyd fel cleient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1137,13 +981,14 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
"bosibl.\n"
@@ -1152,34 +997,34 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaedig.\n"
"Mae nodweddion diogelwch ar eu uchaf."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Dewiswch lefel diogelwch"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1196,52 +1041,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'o' am y llinell orchymyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Penbwrdd"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar adran %s\n"
@@ -1254,15 +1099,19 @@ msgstr "nid yw cymorth wedi ei weithredu eto.\n"
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ffeil"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ffeil/_Gadael"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1297,14 +1146,14 @@ msgstr "Modd Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Ryych yn defnyddio %s fel Rheolwr Cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Ffurfweddu"
@@ -1314,7 +1163,7 @@ msgid "System mode"
msgstr "Modd System"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn y system X-Window o'r cychwyn"
#: ../../bootlook.pm_.c:148
@@ -1325,14 +1174,16 @@ msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, penbwrdd)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Iawn"
@@ -1380,7 +1231,7 @@ msgstr "Nid wyf yn medru creu lluniau o'r sgrin cyn rhannu"
msgid "Screenshots will be available after install in %s"
msgstr "Bydd lluniau o'r sgrin ar gale ar l gosod yn %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ffrainc"
@@ -1388,7 +1239,7 @@ msgstr "Ffrainc"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Gwlad Belg"
@@ -1412,11 +1263,12 @@ msgstr "Norwy"
msgid "Sweden"
msgstr "Sweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Yr Iseldiroedd"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Yr Eidal"
@@ -1424,7 +1276,7 @@ msgstr "Yr Eidal"
msgid "Austria"
msgstr "Awstria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yr Unol Daleithiau"
@@ -1432,8 +1284,8 @@ msgstr "Yr Unol Daleithiau"
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
@@ -1447,11 +1299,12 @@ msgstr ""
"ddigon)\n"
"ar ddechrau'r ddisg."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Gwall"
@@ -1459,11 +1312,11 @@ msgstr "Gwall"
msgid "Wizard"
msgstr "Dewin"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Dewiswch weithred"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1475,77 +1328,77 @@ msgstr ""
"Awgrymaf eich bod yn newid maint y rhaniad\n"
"(cliciwch arno, ac yna clicio \"Newid maint\"]"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Manylion"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "jwrnaleiddiwyd FS?"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Gwag"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Arall"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Mathau ffeil-system:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Creu"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Math"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Defnyddiwch \"%s\" yn lle hynny"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Dileu"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1553,97 +1406,102 @@ msgstr ""
"Wedi newid y math o raniad %s bydd yr holl ddata ar y rhaniad yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Dewiswch raniad"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Dewiswch rhaniad arall"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Gadael"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbennigwr"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Arbennigwr > Cyffredinol"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Dadwneud"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Gorffen heb arbed"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Awto ddynodi"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Clirio i gyd"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Rhagor"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg caled"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilwch un er mwyn gallu creu rhaniad estynedig"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Cadw'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Adfer y tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Cyfrwng symudadwy'n awto-osod"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1651,11 +1509,11 @@ msgstr ""
"Nid oes gan y tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Rhybudd"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1663,122 +1521,129 @@ msgstr ""
"Rhowch flopi yn y disg-yrrwr\n"
"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Yn trio achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Pwynt gosod"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Dewisiadau"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Gosod"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Dad-osod"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Tynnu o RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Tynnu o LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Newid RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Math o ffeilsystem: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Dewis"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil cylch-ol?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Newid o ext2 i ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Lle'r hoffech chi odod y ffeil cylch-ol %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle ydych am osod dyfais %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1787,128 +1652,133 @@ msgstr ""
"gyfer cylch-ol\n"
"Tynnu'r cylch-ol yn gyntaf"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei ategu"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar l newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Yn symud rhaniad.."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "newydd"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Enw LVM"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Enw ffeil cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddweis eisoes gam gylch-ol arall, dewiswch un arall"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Amrywiol"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dyfais"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "lefel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "maint darn"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Pa fath o rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1920,7 +1790,7 @@ msgstr ""
"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
"defnyddio LILO a ni fydd yn gweithio."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1932,7 +1802,7 @@ msgstr ""
"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
"rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1942,130 +1812,130 @@ msgstr ""
"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Yn fformatio ffeil cylch-ol %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copo %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dyfais: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Math: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Enw :"
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Wedi fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2074,7 +1944,7 @@ msgstr ""
"Ffeil(iau) Cylch-ol:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2082,27 +1952,27 @@ msgstr ""
"Y rhaniad i'w bwtio fel rheol\n"
" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Maint darn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil cylch-ol: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2114,7 +1984,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonnydd iddo.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2126,63 +1996,63 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Gwybodaeth:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diag LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Math tabl rhaniad: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ar fws %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml ( mae'n rhaid bod o leiaf %d nod o hyd)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
@@ -2191,35 +2061,65 @@ msgid "Change type"
msgstr "Newid y math"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Cliciwch ar gyfrwng"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilysu"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Rhyngrwyd"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Enw defnyddiwr"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Enw defnyddiwr"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Parth NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "mi fethodd y %s fformatio o %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng gnhyfeiriadur %s"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2236,67 +2136,321 @@ msgstr "gyda /usr"
msgid "server"
msgstr "Gwasanaethwr"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar rhaniadau llai na 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Rjhaid i bwyntiau gosod gynnwys / arweiniol"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda pwynt gosod %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dyai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs) ar gyfer y pwynt gosod\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Dim i'w wneud"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Does gennych chi ddim rhaniadau!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Defnyddio awto ganfod"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generig"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Cof Cerdyn (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "gosodiad llwyth"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Newid y math"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Gadael"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cymorth/_Ynghylch..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Llygoden"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Cof Cerdyn (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Diddymu"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Llygoden"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Disgrifiad"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilysu"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Dewiswch ffeil"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dyfais mynedfa"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 fotwm"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Canfod disg caled"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gweler gwyboadeth am galedwedd"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Dangos gwybodaeth"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Ffurfweddu llygoden"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "canfyddwyd ar borth %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Arhoswch"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d eiliad"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Tynnu argraffydd \"%s\"..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Atoholi"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2310,7 +2464,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2452,9 +2606,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2795,7 +2948,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2807,9 +2960,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2849,6 +3001,7 @@ msgstr ""
"angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl ddisg."
#: ../../help.pm_.c:280
+#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2883,21 +3036,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2913,9 +3065,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
@@ -3007,9 +3159,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3182,6 +3333,7 @@ msgstr ""
"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
#: ../../help.pm_.c:442
+#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3203,38 +3355,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3403,6 +3549,7 @@ msgid "Please be patient. This operation can take several minutes."
msgstr "Amynedd... Gall y weithred hon gymryd rhai munudau."
#: ../../help.pm_.c:547
+#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
@@ -3413,11 +3560,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3474,7 +3621,7 @@ msgstr ""
"oes gennych wybodaeth drylwyr o GNU/Linux, felly peidiwch dewis hwn os\n"
" nad ydych yn gwybod beth rydych yn ei wneud."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3505,7 +3652,7 @@ msgstr ""
" cynnal.\n"
" "
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3534,7 +3681,7 @@ msgstr ""
"Sylwer bod modd gosod myw nag un iaith. Unwaith i chi ddewis unrhyw \n"
"leoleiddiad ychwanegol cliciwch y botwm \"Iawn\" i barhau."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3561,7 +3708,7 @@ msgstr ""
"fod y gosodiadau'n gweithio. Os nad yw'r llygoden yn gweithio'n iawn pwyswch "
"ar y bylchwr neu [Return] i \"Dileu\" a dewis eto."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3570,23 +3717,24 @@ msgstr ""
"yn\n"
"\"ttyS0\" yn GNU/Linux, e.e."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
+#, fuzzy
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3651,7 +3799,8 @@ msgstr ""
"weinyddu,\n"
" byddwch angen dewis \"Ffeiliau lleol\" ar gyfer dilysu."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
+#, fuzzy
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3673,7 +3822,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3681,7 +3830,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3760,7 +3909,7 @@ msgstr ""
"\"Ychwanegu\" i greu enw newydd; a \"Gorffen\" i fynd ymlaen i'r cam nesaf "
"o'r gosod."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3785,7 +3934,7 @@ msgstr ""
"disg\n"
" cychwyn ar gyfer y systemau gweithredu rheini!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3798,29 +3947,29 @@ msgstr ""
"Os nad ydych yn gwybod yn union beth rydych yn ei wneud, dewiswch \"First\n"
"sector of drive (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
+#, fuzzy
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3856,7 +4005,8 @@ msgstr ""
"gyffredinol, mae CUPS yn well am ei fod yn syml ac yn well wrth weithio ar "
"draws rhwydwaith."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
+#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3881,7 +4031,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Mae DrakX yn canfod unrhyw ddyfais IDE sydd ar eich cyfrifiadur. Bydd yn\n"
@@ -3916,7 +4066,8 @@ msgstr ""
"(os\n"
" ydych wedi defnyddio'r caledwedd gyda Windows ar eich system)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
+#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3926,9 +4077,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3940,7 +4090,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4018,7 +4168,8 @@ msgstr ""
"chi\n"
" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
+#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4045,9 +4196,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4090,10 +4240,11 @@ msgstr ""
" * System Weithredu Rhagosodedig: mae modd dewis pa system weithredu fydd\n"
"yn cychwyn drwy ragosodiad pan ddaw'r Open Firmware i ben."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
+#, fuzzy
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4101,12 +4252,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4156,7 +4306,7 @@ msgstr ""
" yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
" cysylltiedig."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4166,7 +4316,7 @@ msgstr ""
"Mandrake Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
"cael ei ddileu ac ni fydd modd ei adfer!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4184,7 +4334,7 @@ msgstr ""
"Cliciwch \" Diddymu\" i ddiddymu'r weithred hon heb golli unrhyw ddata a "
"rhaniadau sy'n bresennol ar y ddisg galed."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4195,12 +4345,12 @@ msgstr ""
"(mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich disg "
"cychwyn yn cydweddu gyda'r cyfrwng Gosod (crwch ddisg cychwyn meddal newydd)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Rhaid fformatio %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4223,20 +4373,20 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb parth NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4244,7 +4394,7 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
@@ -4274,7 +4424,7 @@ msgstr "Rhaid cael rhaniad cyfnewid"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4282,59 +4432,59 @@ msgstr ""
"\n"
"Parhau beth bynnag?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Defnyddiwch le gwag"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Defnyddiwch y rhaniadau cyfredol"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Defnyddiwch rhaniad Windows ar gyfer cylch-ol"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Dewiswch y maint"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Maint rhaniad gwraidd mewn MB :"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Maint rhaniad cyfnewid mewn MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Pa raniad ydych chi am newid ei faint?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Mesur ffiniau system ffeilio Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4343,11 +4493,14 @@ msgstr ""
"Nid yw'r newidiwr maint FAT yn medru trin eich rhaniad.\n"
"digwyddodd y gwall canlynol: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "Mae eich rhaniad Windows yn rhy ysgyriog, rhedwch \"defrag\" yn gyntaf"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4367,54 +4520,54 @@ msgstr ""
"Dylech hefyd wneud copi wrth gefn o'ch data.Pan rydych yn siwr, cliciwch "
"Iawn."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Pa faint ydych am ei gadw ar gyfer Windows ar"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "rhaniad %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Methodd newid maint FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nid oes rhaniadau FAT i newid eu maint neu i'w defnyddio fel cylch-l (neu "
"nad oes digon o le ar l)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Dileu'r ddisg gyfan"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Tynnu Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar yrrwr %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Rhannu disg unigol"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Defnyddiwch fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4423,11 +4576,11 @@ msgstr ""
"Medrwch rhannu %s\n"
"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Does gennych ddim digon o le rhydd ar eich rhaniad Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Methu canfod lle ar gyfer gosod"
@@ -4435,16 +4588,16 @@ msgstr "Methu canfod lle ar gyfer gosod"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Methodd rhannu: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Cychwyn y rhwydwaith"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Cau'r rhwydwaith"
@@ -4456,12 +4609,12 @@ msgstr ""
"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
"Mae'n beryglus i barhau."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pwynt gosod dyblyg %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4473,12 +4626,12 @@ msgstr ""
"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4488,9 +4641,9 @@ msgstr "Does dim gyrrwr disg meddal ar gael"
msgid "Entering step `%s'\n"
msgstr "Cychwyn cam '%s\"\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4500,198 +4653,152 @@ msgstr ""
"testunol. I wneud hynny, gwasgwch F1 wrth gychwyn ar y CD-ROM ac yna rhoi "
"'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Gosod Dosbarth"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Os hoffech chi osod llai na'r maint hwn\n"
-"dewiswch canran y pecynnau i'w gosod.\n"
-"\n"
-"Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-"isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
-"\n"
-"Os hoffech osod llai na hyn,\n"
-"dewiswch canran y pecynnau rydych am eu gosod.\n"
-"Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-"isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
-"y mae modd."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Cyfanswm y pecynnau i'w gosod"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Cyfanswm maint: %d/%d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pecyn gwallus"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Enw: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Fersiwn: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Maint: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Pwysigrwydd: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ol i'w osod"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Rhaid i'r pecyn gael ei uwchraddio\n"
"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Dangoswch y pecynnau dewis awtomatig"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Gosodiad"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "LLwytho/Cadw ar ddisg meddal"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Diweddaru'r dewis pecynnau"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Gosodiad lleiaf"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Gosod"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Amcangyfrif"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Amser yn weddill"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Arhoswch, paratoi'r gosodiad"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pecyn"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Derbyn"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4705,17 +4812,17 @@ msgstr ""
"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -4789,11 +4896,11 @@ msgstr "Digwyddodd gwall"
msgid "Do you really want to leave the installation?"
msgstr "Ydych chi wir eisiau gadael y gosodiad?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4808,7 +4915,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -5026,109 +5133,113 @@ msgstr ""
"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch yddogfen hon cysylltwch "
"MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Allweddell"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Dewiswch gynllun eich alweddell"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Dyma restr lawn o'r allweddellau ar gael"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Pa ddosbarth o osodiad ydych chi ei eisiau?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Gosod/Diweddaru"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ydi hwn yn osodiad neu diweddariad?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Argymhellwyd"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Arbennigwr"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Diweddaru"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Diweddaru'r pecynnau'n unig"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porth Llygoden"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Efelychiad botymau"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Efelychiad Botwm 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Efelychiad Botwm 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Ffurfweddu cardiau PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Ffurfweddu IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "dim rhaniadau ar gael"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Dewiswch y pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5140,7 +5251,7 @@ msgstr ""
"\n"
"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5148,7 +5259,7 @@ msgstr ""
"Methodd DrakX a darllen y tabl rhaniad yn gywir.\n"
"Mae'n beryglus parhau!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5156,76 +5267,79 @@ msgstr ""
"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Ni chanfyddwyd rhaniad gwraidd i wneud diweddariad"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rhaniad Gwraidd"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Beth yw'r rhaniad gwraidd (/) ar eich system?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Gwirio blociau gwallus?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Yn fformatio rhaniadau"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creu a fformatio ffeil %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch rhagor"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Chwilio am y pecynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Chwilio am y pecynnau sydd ar gael"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Canfod pecynnau i'w uwchraddio"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Nid oes gan eich system ddigon o le ar l ar gyfer gosodiad neu uwchraddiad "
"(%d> %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Cwblhawyd (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Lleiafswm (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Argymhellwyd (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5233,35 +5347,35 @@ msgstr ""
"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Llwytho o o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Llwytho o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Dewis pecynnau"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Cadw ar ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5269,19 +5383,19 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5291,16 +5405,16 @@ msgstr ""
"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5309,23 +5423,23 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Ffurfweddiad l osod"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5398,13 +5512,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5416,147 +5532,177 @@ msgstr ""
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Cysylltu 'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Cysylltu 'r drych i estyn y rhestr o becynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Gweinydd NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Dilysu LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Estyn Ffontiau Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Gweinydd NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5587,19 +5733,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5624,7 +5770,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5638,28 +5784,28 @@ msgstr ""
"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5673,11 +5819,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5685,15 +5831,15 @@ msgstr ""
"Gwall gosod aboot, \n"
"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5711,18 +5857,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5732,7 +5877,8 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5743,7 +5889,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5757,17 +5903,22 @@ msgstr ""
"Linux, cysylltwch a'r atodiad, sydd i'w gael yn:\n"
"\n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau l osod\n"
"yr Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5782,15 +5933,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -5817,44 +5968,24 @@ msgstr "consolehelper ar goll"
msgid "Choose a file"
msgstr "Dewis ffeil"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Uwch"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Arhoswch"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Gwybodaeth"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Estyn y goeden"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Cau'r goeden"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dewis gwael, ceisiwch eto\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Eich dewis? (rhagosodedig %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5863,31 +5994,35 @@ msgstr ""
"Gwybodaeth i'w gyflawyno:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Eich dewis? (0/1, rhagosodedig %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Botwm '%s'.%s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Ydych chi eisiau clicio ar y botwm hwn?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Eich dewis? (rhagosodedig `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Mae yna lawer i ddewis o (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5897,7 +6032,7 @@ msgstr ""
"neu wasgwch Enter i barhau.\n"
"Eich dewis?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5906,327 +6041,327 @@ msgstr ""
"=>Hysbysiad, mae label wedi newid:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ail-gyflwyno"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Almaeneg"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaenaidd"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Ffinaidd"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ffrengig"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norwyaidd"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pwylaidd"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rwsiaidd"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Swedaidd"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Bysellfwrdd DG"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Bysellfwrdd UDA"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albaniaidd"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenaidd (hen)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenaidd (teipiadur)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenaidd (ffonetig)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjan (lladin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgaidd"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bwlgaraidd (ffonetig)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bwlgaraidd (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilaidd (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusaidd"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Swisaidd (gosodiad Almaenig)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Swisaidd (gosodiad Ffrengig)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Almaenaidd (dim bysellau marw)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danaidd"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (UDA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwyaidd)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedaidd)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonaidd"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Groegaidd"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hwngaraidd"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croataidd"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelaidd"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelaidd (Ffonetig)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranaidd"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Eislandaidd"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Eidalaidd"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Siapaaidd 106 bysell"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Bysellfwrdd Coreaidd"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Lladin America"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuenaidd AZERTY (hen)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuenaidd AZERTY (newydd)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latfiaidd"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonaidd"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Isalmaenaidd"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portiwgalaidd"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romanaidd (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romanaidd (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rwsiaidd (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slfenaidd"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slofacaidd (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovacaidd (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbaidd (cyrilig)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Bysellfwrdd Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Bysellfwrdd Tajig"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Twrcaidd (model traddodiadol \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Twrcaidd (model modern \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Wcranaidd"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Bysellfwrdd UDA (rhyngwladol)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Fietnamaidd \"rhes rhifol\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Iwgoslafaidd (lladin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Bysell Alt dde"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Y ddwy fysell Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Bysellau Control a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Bysell CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Bysellau Alt a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Bysell \"Dewislen\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Bysell \"Windows\" chwith"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Bysell \"Windows\" de"
@@ -6239,7 +6374,31 @@ msgstr "Gosodiadau cylch %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Rhif ffn"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Fformatio rhaniadau"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6282,10 +6441,6 @@ msgstr "1 botwm"
msgid "Generic 2 Button Mouse"
msgstr "Llygoden 2 Fotwm Generig"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generig"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Olwyn"
@@ -6350,38 +6505,54 @@ msgstr "dim"
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Gorffen"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Nesaf ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Cynt"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Gwybodaeth"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Estyn y goeden"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Cau'r goeden"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Cysylltu 'r We"
@@ -6428,7 +6599,7 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
"Nid wyf yn medru gosod y math yma o gysylltiad."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Dewiswch rhag wyneb y rhwydwaith"
@@ -6442,7 +6613,7 @@ msgstr ""
msgid "no network card found"
msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -6458,15 +6629,15 @@ msgstr ""
"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Enw gwesteiwr"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Dewin Ffurfweddu'r Rhwydwaith"
@@ -6522,7 +6693,7 @@ msgstr "Ffurfweddiad ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Dewiswch eich darparwr.\n"
"Os nad yw ar eich rhestr, dewiswch Heb ei Restri"
@@ -6541,14 +6712,14 @@ msgstr "Protocol ar gyfer gweddill y byd"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocol ar gyfer gweddill y byd\n"
" dim D-Channel (llinell les)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
#: ../../network/isdn.pm_.c:199
@@ -6572,7 +6743,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Os oes gennych gerdyn, dylai'r gwerthoedd ar y sgrin nesaf fod yn gywir.\n"
@@ -6588,13 +6760,13 @@ msgid "Continue"
msgstr "Parhau"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Pa un yw eich cerdyn IDSN?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
"cerdyn PCI ar y sgrin nesaf."
@@ -6611,47 +6783,47 @@ msgstr "Dewiswch ba borth cyfresol mae eich modem wedi cysylltu iddo."
msgid "Dialup options"
msgstr "Dewisiadau cyswllt ffn"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Enw'r cysylltiad"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Rhif ffn"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Dynodiad Mewngofnodi"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Seiliedig ar sgript"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Seiliedig ar derfynnell"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Enw parth"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Ail Wasanaethwr DNS (dewisol)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6659,7 +6831,7 @@ msgstr ""
"\n"
"Medrwch ddatgysylltu neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6667,11 +6839,11 @@ msgstr ""
"\n"
"Medrwch ailffurfweddu eich cysylltiad"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Rydych wedi eich cysylltu 'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6679,32 +6851,32 @@ msgstr ""
"\n"
"Medrwch gysylltu 'r Rhyngrwyd neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Nid ydych wedi eich cysylltu 'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Cysylltu"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Dadgysylltu"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Ffurfweddu'r gysylltiad"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Cysylltiad 'r rhyngrwyd a'i ffurfweddiad "
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Rydym am ffurfweddu cysylltiad %s"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6723,12 +6895,12 @@ msgstr ""
"\n"
"Pwyswch Iawn i barhau."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ffurfweddiad y Rhwydwaith"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6740,9 +6912,9 @@ msgstr ""
"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6752,66 +6924,72 @@ msgstr ""
"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Dewiswch broffil i'w ffurfweddu"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modd Uwch"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Cysylltiad modem arferol"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "canfyddwyd ar borth %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Cysylltiad ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "canfyddwyd %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Cysylltiad ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "canfyddwyd ar rhyngwyneb %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "canfyddwyd cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "cysylltiad LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "cerdyn ethernet wedi ei ganfod"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Dewiiwch y math o gysylltiad rydych am ei ffurfweddu"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6821,23 +6999,23 @@ msgstr ""
"Dewiswch ba un rydych am ei ddefnyddio.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Cysylltiad 'r Rhyngrwyd"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Ffurfweddiad y rhwydwaith"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Rhaid ail gychwyn y rhwydwaith"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6848,7 +7026,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6858,7 +7036,7 @@ msgstr ""
"Bydd y ffurfweddiad yn cael ei osod ar eich system\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6867,19 +7045,19 @@ msgstr ""
"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
"."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Digwyddod anhawsterau yn ystod y ffurfweddiad.\n"
"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6889,7 +7067,7 @@ msgstr ""
"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6899,38 +7077,43 @@ msgstr ""
"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
"(e.e.1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Ffurfweddu dyfais rhwydwaith %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (gyrrwr %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Cyfeiriad IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP awtomatig"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Cychwyn y peiriant"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6942,64 +7125,64 @@ msgstr ""
"megis \"fymlwch.fynesg.fyngho.com\".\n"
"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Dylai rhif porth fod yn ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ffurfweddiad rhyngrwyd"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Hoffech chi gysylltu 'r Rhyngrwyd nawr?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Profi eich cysylltiad..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Mae'r system wedi cysylltu 'r Rhyngrwyd."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Am resymau diogelwch, bydd yn cael ei ddatgysylltu."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7007,111 +7190,116 @@ msgstr ""
"Nid yw'n ymddangos i'ch system gysylltu 'r rhyngrwyd.\n"
"Ailffurfweddwch eich cysylltiad."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Ffurfweddiad y Cysylltiad"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Llanwch neu diciwch y maes islaw"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ y cerdyn"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Cof Cerdyn (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO'r Cerdyn"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_O y cerdyn"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 y cerdyn"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Eich rhif ffn personol"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Enw darparwr (eng. darparwr.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Rhif ffn y darparwr"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 y darparwr (dewisol)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 y darparwr (dewisol)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Dewiswch eich gwlad"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modd deialu"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Cyflymder y cysylltiad"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Oediad yn y cysylltiad (mewn eiliadau)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Mewngofnod Cyfrif (enw defnyddiwr)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Cyfrinair y Cyfrif"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "maethodd y gosodiad"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Nid yw'r rhainad estynedig yncael ei gynnal ay y platfform hwn"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Mae gennych dwll yn nhabl eich rhaniad ond nid wyf yn medru ei ddefnyddio\n"
"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
"rhaniadau estynedig "
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Methodd adfer o ffeil %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ffeil wrth gefn gwallus"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Gwall wrth ysgrifennu i ffeil %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7121,186 +7309,186 @@ msgstr ""
"Mae prawf i fesur ei gyfanrwydd wedi methu. \n"
"Nid oes gwerth ysgrifennu i'r ddisg"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "rhaid cael"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "pwysig"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "hyfryd iawn"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "hyfryd"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "efallai"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Argraffydd lleol"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Argraffydd pell"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Argraffydd ar wasanaethwr CUPS pell"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Argraffydd ar wasanaethwr lpd pell"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Argraffydd rhwydwaith (TCP/Soced)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Argraffydd ar wasanaethwr NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Rhowch URI dyfais argraffydd"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Peipio'r gwaith i orchymyn"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Model anhysbys"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Argraffyddion Lleol"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Argraffyddion Pell"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", argraffydd USB \\/\"%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dyfais amlbwrpas ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", dyfais amlbwrpas ar USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", dyfais amlbwrpas ar HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ",dyfais amlbwrpas"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", argraffu i %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", defnyddio gorchymyn %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Argraffydd crai (dim gyrrwr)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(ar %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(ar y peiriant hwn)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ar wasanaethwr CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr "(Rhagosodedig)"
@@ -7322,11 +7510,11 @@ msgstr ""
"Nid oes angen ffurfweddu argraffyddion ar wasanaethwyr CUPS pell: byddant yn "
"cael eu canfod yn awtomatig."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Furfweddiad CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Enwch wasanaethwr CUPS"
@@ -7370,7 +7558,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Dylai cyfeiriad IP edrych fel 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Dylai rhif porth fod yn gyfanrif!"
@@ -7378,7 +7566,7 @@ msgstr "Dylai rhif porth fod yn gyfanrif!"
msgid "CUPS server IP"
msgstr "IP gwasanaethwr CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Porth"
@@ -7386,20 +7574,12 @@ msgstr "Porth"
msgid "Automatic CUPS configuration"
msgstr "Furfweddiad CUPS Awtomatig"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Canfod dyfeisiadau..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Profwch y pyrth"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7422,13 +7602,13 @@ msgstr ""
"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
"gyrwyr a mathau o gysylltiadau argraffyddion."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Argraffydd Lleol"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7459,11 +7639,11 @@ msgstr ""
"awto ganfod. Defnyddiwch \"Modd Arbenigwr\" printdrake pan fyddwch am osod "
"argraffydd pell os nad yw printerdrake yn ei restri'n awtomatig."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Awto ganfod argraffyddion"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7483,11 +7663,11 @@ msgstr ""
"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Awto ganfod Argraffyddion"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7502,33 +7682,37 @@ msgstr ""
"\n"
"Ydych eisiau i'ch argraffydd gael ei awto ganfod?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Defnyddio awto ganfod"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Gosod argraffydd gyda llaw"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Profwch y pyrth"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Canfyddwyd %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Argraffydd ar borth paralel \\/\"%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Argraffydd USB \\/\"%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7540,11 +7724,11 @@ msgstr ""
"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
"ail argraffydd USB: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7552,7 +7736,7 @@ msgstr ""
"Heb ganfood argraffydd lleol!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7560,7 +7744,7 @@ msgstr ""
"Dim ond ar l cwblhau'r gosodiad mae modd gosod argraffyddion rhwydwaith. "
"Dewiswch \"Caledwedd\" ac yna \"Argraffydd\" yng Nghanolfan Rheoli Mandrake"
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7568,7 +7752,7 @@ msgstr ""
"I osod argraffyddion rhwydwaith, cliciwch \"Diddymu\", trowch i \"Modd "
"Arbenigwr\", clicio \"Ychwanegu argraffydd newydd\" eto."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7576,7 +7760,7 @@ msgstr ""
"Cafodd yr argraffydd canlynol ei awto ganfod, os nad hwn yw'r un rydych am "
"ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y llinell mewnbwn."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7585,7 +7769,7 @@ msgstr ""
"argraffydd rydych am ei osod neu rhowch enw dyfais/ffeil yn y llinell "
"mewnbwn."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7597,7 +7781,7 @@ msgstr ""
"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7610,7 +7794,7 @@ msgstr ""
"well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7618,11 +7802,11 @@ msgstr ""
"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neurhowch enw "
"dyfais/ffeil ar y ninell mewnbwn"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7630,52 +7814,65 @@ msgstr ""
" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ffurfweddiad gyda llaw"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"A yw eich argraffydd yn ddyfais amlbwrpas gan HP (OfficeJet, PSC, "
"PhotoSmart LaserJet 1100/1200/1220/3200/3300 gyda sganiwr)"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Gosod pecynnau HPOJ"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Gwirio a ffurfweddu dyfais HPOJ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Gosod pecynnau SANE"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Gosod pecynnau..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Sganio eich dyfais HP aml bwrpas"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Sganio eich dyfais HP aml bwrpas"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Gwneud porth argraffydd ar gael ar gyfer CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Darllen cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Dewisiadau Argraffydd lpd Pell"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7683,27 +7880,27 @@ msgstr ""
"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Enw gwesteiwr pell"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Enw'r argraffydd pell"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Mae enw'r gwesteiwr pell ar goll!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Mae enw'r argraffydd pell ar goll!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7716,35 +7913,35 @@ msgstr ""
"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
"gwybodaeth am grwp gwaith perthynol."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Gwasanaethwr gwesteiwr SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP Gwasanaethwr SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Rhannu enw"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grwp gwaith"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Mae enw rhannu Samba ar goll!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7768,7 +7965,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7777,7 +7974,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7785,11 +7982,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Dewisiadau Argraffydd NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7801,27 +7998,27 @@ msgstr ""
"'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Gwasanaethwr Argraffydd"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Enw Rhes Argraffu"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Mae enw gwasanaethwr NCP ar goll!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Mae enw rhes NCP ar goll"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Dewisiadau Argraffydd TCP/Soced"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7833,19 +8030,19 @@ msgstr ""
"porth, fel rheol, yw 9100, gall amrywio ar wasanaethwyr eraill. Gweler "
"llawlyfr eich caledwedd"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Enw'gwesteiwr yr argraffydd"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Mae enw'r gwesteiwr argraffu ar goll!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Dyfais Argraffu"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7855,11 +8052,11 @@ msgstr ""
"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
"cael eu cynnal gan bob sbwlydd ."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Rhaid cynnig URI dilys!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7867,27 +8064,23 @@ msgstr ""
"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Enw'r argraffydd"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Disgrifiad"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lleoliad"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Paratoi cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model eich argraffydd"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7913,24 +8106,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Mae'r model yn gywir"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Dewiswch y model gyda llaw"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Dewis model yr argraffydd"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Pa fath o argraffydd sydd gennych?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7944,7 +8137,7 @@ msgstr ""
"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
"neu ar \"Argraffydd bras\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7952,11 +8145,11 @@ msgstr ""
"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
"eich argraffydd) neu un tebyg."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Ffurfweddiad OKI winprinter "
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7973,11 +8166,11 @@ msgstr ""
"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Ffurfweddiad inkjet Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7988,7 +8181,7 @@ msgstr ""
"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8010,7 +8203,7 @@ msgstr ""
"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
"gosodiadau aliniad y pen gyda'r rhaglen."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8027,22 +8220,22 @@ msgstr ""
"argraffiad ansawdd/cydraniad uchel iawn yn medru arafu'r argraffu'n "
"sylweddol.."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Rhaid i ddewis %s fod yn rhif!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Dewis %s allan o amrediad!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8051,11 +8244,11 @@ msgstr ""
"Ydych chi am osod argraffydd (\"%s\")\n"
"fel yr argraffydd rhagosodedig?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Tudalennau prawf"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8067,39 +8260,39 @@ msgstr ""
"ei argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o "
"gwbl. Yn y rhan fwyaf o achosion, mae'r prawf tudalen safonol yn ddigonol."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Dim tudalennau prawf"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Argraffu"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Tudalen prawf safonnol"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Prawf tudalen arall (Llythyr)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Prawf tudalen arall (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Tudalen prawf llun"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Peidiwch argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Argraffu tudalen(nau) prawf..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8114,7 +8307,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8122,15 +8315,15 @@ msgstr ""
"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "A weithiodd hwnnw'n iawn?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Argraffydd bras"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8143,7 +8336,7 @@ msgstr ""
"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatu "
"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8153,8 +8346,8 @@ msgstr ""
"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8167,11 +8360,11 @@ msgstr ""
"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
"gorchymyn, e.e \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Er mwyn cael gwybodaeth am y dewisiadau sydd ar gael ar gyfer yr argraffydd "
@@ -8179,7 +8372,7 @@ msgstr ""
"dewis argraffu\"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8188,7 +8381,7 @@ msgstr ""
"presennol:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8197,8 +8390,8 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch "
"orchymyn \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8208,7 +8401,7 @@ msgstr ""
"nifer o raglenni. Ond peidiwch rhoi'r enw ffeil yma oherwydd bod y ffeil "
"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8216,7 +8409,7 @@ msgstr ""
"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8225,7 +8418,7 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch y "
"gorchymyn \"%s <file>\" or \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8242,7 +8435,7 @@ msgstr ""
"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8255,38 +8448,49 @@ msgstr ""
"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
"llinell gorchymyn, e.e \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Cau"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Argraffu/Sganio ar \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Argraffu ar argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Cau"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Rhestr ddewis argraffu"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8300,38 +8504,30 @@ msgstr ""
"\n"
"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
-"sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ...\".. "
-"Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei gynnal "
-"eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil \"/usr/"
-"share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes gennych HP "
-"LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis sganio wedi ei "
-"osod mae modd sganio.\n"
-"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Darllen data argraffydd..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8346,7 +8542,7 @@ msgstr ""
"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8354,18 +8550,18 @@ msgstr ""
"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8373,7 +8569,7 @@ msgstr ""
"Yn ogystal, nid oes modd trosglwyddo rhesi grewyd gan y rhaglen hon na "
"\"foomatic-configure\"."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8383,7 +8579,7 @@ msgstr ""
"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8393,15 +8589,15 @@ msgstr ""
"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
"\"Trosglwyddo\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Peidio trosglwyddo argraffydd"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Trosglwyddo"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8412,12 +8608,12 @@ msgstr ""
"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
"Mae modd i chi osod enw newydd arno neu ei hepgor."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8426,16 +8622,16 @@ msgstr ""
"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Enw'r argraffydd newydd"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Trosglwyddo %s..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8445,29 +8641,29 @@ msgstr ""
"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
"s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Adnewyddu data'r argraffydd..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Ffurfweddiad argraffydd pell"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Cychwyn y rhwydwaith..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Ffurfweddwch y rhwydwaith"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8479,11 +8675,11 @@ msgstr ""
"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8499,7 +8695,7 @@ msgstr ""
"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
"\"Argraffydd\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8509,24 +8705,24 @@ msgstr ""
"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
"argraffydd."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Ailgychwyn system argraffu..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "uchel"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoia"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Gosod system argraffu yn lefel diogelwch %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8550,11 +8746,11 @@ msgstr ""
"\n"
"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8576,63 +8772,63 @@ msgstr ""
"\n"
"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Tynnu LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Tynnu LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Dewiswch Sbwlydd Argraffydd"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Ffurfweddu argraffydd \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Gosod Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Dewisiadau argraffydd"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Paratoi PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Ffurfweddi'u rhaglenni"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Hoffech chi ffurfweddu argraffu?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "System argraffu."
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8644,7 +8840,7 @@ msgstr ""
"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8653,29 +8849,33 @@ msgstr ""
"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Newidiwch y system argraffu"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modd Arferol"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Gadael"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Ydych chi eisiau ffurfwedu argraffydd arall?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Newid ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8684,69 +8884,69 @@ msgstr ""
"Argraffydd %s\n"
"Beth ydych am ei newid ar yr argraffydd hwn?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gwna!!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Math o gyswllt argraffydd"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Gwneuthurwr yr argraffydd, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Gosod yr argraffydd fel y rhagosodedig"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Tynnu argraffydd"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Tynnu hen argraffydd \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Argraffydd rhagosodedig"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
@@ -8754,17 +8954,17 @@ msgstr ""
"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
@@ -8772,19 +8972,19 @@ msgstr ""
"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Methwyd thynnu argraffydd \"%s\" o Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Tynnu argraffydd \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8869,24 +9069,63 @@ msgstr "Nid yw'r cyfrineiriau'n cydweddi. Rhowch gynnig arall arni!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Methu ychwanegu rhaniad to_formatted_RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Methu ysgrifenu ffeil %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "methodd mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "methodd mkraid (efallai bod raidtools ar goll)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Rhaid defnyddio'r lefel hwn a gofal. Mae'n gwneud eich system yn haws ei\n"
+"ddefnyddio ond mae'n sensitif iawn: rhaid peidio ei ddefnyddio fel peiriant "
+"i'w\n"
+"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
+"bosibl.\n"
+"Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
+"derbyn\n"
+"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
+"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Dewisiadau Uwch"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Dewisiadau"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Cychwynnwch system sain ALSA (Pensaernaeth Sain Linux Uwch)"
@@ -8945,7 +9184,7 @@ msgstr ""
"Mae HardDrake yn rhedeg archwiliwr caledwedd, a gall yn l \n"
"eich dewis, ffurfweddu caledwedd newydd neu sydd wedi newid."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9021,7 +9260,7 @@ msgstr ""
"Mae Gwasanaethwr Rhith Linux yn cael ei ddefnyddio i adeiladu \n"
"gwasanaethwyr cyflym a chyraeddadwy."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9104,7 +9343,7 @@ msgstr ""
"sy'n\n"
"gwneud defnydd o fecanwaith RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9202,7 +9441,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9330,6 +9569,7 @@ msgstr ""
"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Canolfan Rheoli Mandrake"
@@ -9451,6 +9691,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9459,6 +9708,160 @@ msgstr ""
"Methu darllen eich tabl rhaniadau. Mae'n rhy lwgr i mi :[\n"
"Af ymlaen i flancio rhaniadau gwael"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Gwasanaethwr Cronfa Ddata"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Gwasanaethwr Cronfa Ddata"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Ychwanegu defnyddiwr"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Cymorth"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Heb gysylltu"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Dileu"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Dewis Popeth"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Ychwanegu defnyddiwr"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ffurfweddu..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ailffurfweddu"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Does dim gyrrwr disg meddal ar gael"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Gwall!"
@@ -9508,6 +9911,11 @@ msgstr ""
"Dewiswch ar gyfer pob cam a fydd yn ail chwarae fel eich gosodiad, neu a "
"fydd gyda llaw"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creu disg meddal awto gosod"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9520,12 +9928,12 @@ msgstr ""
"\n"
"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Llongyfarchiadau!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9533,28 +9941,19 @@ msgstr ""
"Mae'r disg meddal wedi ei gynhyrchu'n llwyddiannus. \n"
"Medrwch ail chwarae eich gosodiad."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Awto Gosod"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Ychwanegu eitem"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Tynnu'r eitem olaf"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9564,7 +9963,7 @@ msgstr ""
" Adroddiad DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9576,19 +9975,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9600,63 +9987,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "cyfanswm y cynnydd"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth "
"gefn drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9664,26 +10075,26 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
"cyfeiriadur /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9691,83 +10102,77 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Defnyddiwch cysylltiad FTP i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Rhowch y cyfeiriadur i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Cysylltiad FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Cysylltiad Diogel"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Dewiswch eich gofod CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9775,7 +10180,7 @@ msgstr ""
"Gwiriwch os ydych am gynnwys\n"
" cychwyn gosod ar eich CD"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9783,16 +10188,21 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Defnyddiwch dp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9800,51 +10210,57 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Math"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9852,7 +10268,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9860,72 +10276,68 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Defnyddiwch FTP gyda daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau"
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9933,7 +10345,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9941,7 +10353,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9949,7 +10361,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9957,7 +10369,7 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9966,16 +10378,45 @@ msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dyfais llygoden: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Cadw ar FTP ar y gwesteiwr: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Cadw ar FTP ar y gwesteiwr: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9984,7 +10425,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9992,19 +10433,19 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10013,27 +10454,41 @@ msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Rhwydwaith drwy FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Rhwydwaith drwy FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10041,7 +10496,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10049,134 +10504,137 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn l y defnyddwyr, sy'n "
"bwysig )"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Rhowch y cyfeiriadur i gadw iddo:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "Cysylltiad FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Cysylltiad Diogel"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
"yn unig )"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Cymorth"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Nesaf"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10184,7 +10642,7 @@ msgstr ""
"Crwch gadw wrth gefn cyn ei adfer...\n"
" neu gwiriwch fod eich llwybr i'w gadw'n gywir."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10194,31 +10652,35 @@ msgstr ""
" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Rhestr Pecynnau i'w Gosod"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10226,75 +10688,75 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Rhestr data i'w gynnwys ar CDROM"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Rhowch gyflymder yr ysgrifennydd CD"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Rhowch enw dyfais eich Ysgrifennydd CD (ex: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Ticiwch os ydych eisiau cynnwys cychwyn gosod ar eich CD."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10352,7 +10814,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10361,7 +10823,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10438,7 +10900,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10487,13 +10949,18 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10525,7 +10992,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10601,7 +11068,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10620,7 +11087,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10642,7 +11109,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10722,99 +11189,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Mae gosod %s wedi methu. Digwyddodd y gwall canlynol:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Offer y Consol"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "ar Ddisg Caled"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Llygoden"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Argraffydd pell"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Rhannu enw"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Dewin Ffurfweddu'r Rhwydwaith"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Dilysu"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Dewis pecynnau"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Arhoswch"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Wedi'r dad osod"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "porth"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Bydd lluniau o'r sgrin ar gale ar l gosod yn %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Proffil:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Proffl dileu"
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Proffil i'w ddileu:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Proffil newydd..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
+"un cyfredol):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Enw gwesteiwr:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Mynediad i'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Math: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Mynedfa:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Rhyngwyneb:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Statws"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Arhoswch"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Ffurfweddu Mynediad i'r We..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Ffurfweddiad y Rhwydwaith Lleol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Gyrrwr"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Rhyngwyneb"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Stad"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Cliciwch yma i gychwyn y dewin ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Dewin..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Gosod"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Arhoswch...Gosod y ffurfweddiad"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Wedi cysylltu"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Heb gysylltu"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Cysylltu..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Dadgysylltu..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
+"defnyddio eich rhwydwaith."
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nid oes gennych unrhyw rhagwynebau wedi\n"
+"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
+"drwy glicio ar 'Ffurfweddu'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Addasydd %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocol Cychwyn"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Cychwyn y peiriant"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "cychwyn nawr"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "dad weithredu nawr"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
+"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nid oes gennych cysylltiad 'r rhyngrwyd.\n"
+"Crwch un drwy glicio ar 'Ffurfweddu'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Ffurfweddiad cysylltiad 'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Ffurfweddu Cysylltiad 'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Math o gyswllt:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Paramedrau"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Mynedfa"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Cerdyn Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "defnydd: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Enw'r modiwl"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Maint"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creu disg cychwyn"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "rhagosodedig"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Gwall Drakfloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "fersiwn cnewyllyn"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Cyffredinol"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Maes Uwch"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "ymresymiad dewisol mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Ychwanegu modiwl"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "grym"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "os oes angen"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "peidio cynnwys modiwlau scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "peidio cynnwys modiwlau raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Tynnu modiwl"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Allbwn"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Adeiladu'r ddisg"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Does dim cyfrwng i'r dyfais %s.\n"
+"Rhowch un i mewn.."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Methu fforchio: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Methu cau mkbootdisk yn iawn:\n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Chwilio am ffontiau wedi eu gosod"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Tynnu ffontiau wedi eu gosod"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "pob ffont"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "heb ganfod ffontiau"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "gorffen"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "methu canfod unrhyw ffont yn eich rhaniad gosodedig"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ailddewis y ffontiau cywir"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "methu cnafod unrhyw ffontiau.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Chwilio am ffontiau yn y rhestr gosod"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copo ffontiau"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Gosod ffontiau True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "arhoswch yn ystod ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Wedi gosod True Type"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Trosiad ffontiau"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "adeiladu math 1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "cyfeirio Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "trosi ffontiau ttf "
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "trosi ffontiau pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Llethu ffeiliau dros dro"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Ail gychwyn XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Llethu ffeiliau Ffontiau"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "ail gychwyn xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10828,107 +11728,107 @@ msgstr ""
"- Medrwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
"ffontiau ffug rewi eich Gwasanaethwr X"
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Mewnforio Ffontiau"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Estyn Ffontiau Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Dad osod Ffontiau"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Dewisiadau Uwch"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Rhestr Ffontiau"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Argraffyddion Generig"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Dewiswch ffeil neu gyfeiriadur y ffont a chlicio 'Ychwanegu'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Gosod Rhestr"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "cliciwch yma os ydych yn siwr."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "yma os nad."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Dad ddewis Popeth"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Dewis Popeth"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Rhestr Tynnu"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Prawf Init"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copo'r ffontiau ar eich system!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Gosod a throsi ffontiau"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Wedi'r Gosod"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Tynnu ffontiau oddi ar eich system!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Wedi'r dad osod"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Rhannu Cysylltiad 'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Mae Rhannu Cysylltiad 'r Rhyngrwyd wedi ei alluogi"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10940,31 +11840,31 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "dymunol"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "gwrthod"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ailffurfweddu"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Analluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Mae rhannu cysylltiad 'r Rhyngrwyd wedi ei analluogi."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10976,19 +11876,19 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "galluogi"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Galluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Mae rhannu cysylltiad 'r Rhyngrwyd wedi ei alluogi."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11005,21 +11905,21 @@ msgstr ""
"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
"(LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Rhagwyneb %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11027,11 +11927,11 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
"yr offeryn ffurfweddu caledwedd."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Rhyngwyneb rhwydwaith"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11046,7 +11946,7 @@ msgstr ""
"\n"
"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11054,11 +11954,11 @@ msgstr ""
"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu 'ch Rhwydwaith "
"Lleol."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfwedu eisoes"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11074,15 +11974,15 @@ msgstr ""
"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
"wneud."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Ail ffurfweddiad awtomatig"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11099,7 +11999,7 @@ msgstr ""
"Priodweddau IP: %s\n"
"Gyrrwr: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11118,33 +12018,33 @@ msgstr ""
"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
"DHCP ar eich cyfer.\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Rhwydwaith Lleol Dosbarth C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Gwasanaethwr DHCP IP (Hwn)"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Nid yw'r Rhwydwaith Leol yn terfynnu gyda '.0', tynnu allan."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11152,20 +12052,20 @@ msgstr ""
"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
"atgyweirio gyda llaw ar l y gosodiad."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Ffurfweddu..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ffurfweddio sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Anhawster wrth osod pecyn %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11175,23 +12075,23 @@ msgstr ""
"Gallwch rannu cysylltiad 'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei anallluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei allluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nid oes Rhannu Cysylltiad 'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Ffurfweddiad rhannu cysylltiad 'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11206,217 +12106,6 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Proffil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Proffl dileu"
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Proffil i'w ddileu:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Proffil newydd..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
-"un cyfredol):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Enw gwesteiwr:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Mynediad i'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Math: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Mynedfa:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rhyngwyneb:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Statws"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Arhoswch"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ffurfweddu Mynediad i'r We..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Ffurfweddiad y Rhwydwaith Lleol"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Gyrrwr"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rhyngwyneb"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Stad"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliciwch yma i gychwyn y dewin ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Dewin..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Gosod"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Arhoswch...Gosod y ffurfweddiad"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Wedi cysylltu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Heb gysylltu"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Cysylltu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Dadgysylltu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
-"defnyddio eich rhwydwaith."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych unrhyw rhagwynebau wedi\n"
-"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
-"drwy glicio ar 'Ffurfweddu'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Addasydd %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol Cychwyn"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Cychwyn y peiriant"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "cychwyn nawr"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "dad weithredu nawr"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
-"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych cysylltiad 'r rhyngrwyd.\n"
-"Crwch un drwy glicio ar 'Ffurfweddu'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ffurfweddiad cysylltiad 'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ffurfweddu Cysylltiad 'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Math o gyswllt:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paramedrau"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Mynedfa"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Cerdyn Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Gosod y lefel diogelwch"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Canolfan Rheoli"
@@ -11425,89 +12114,128 @@ msgstr "Canolfan Rheoli"
msgid "Choose the tool you want to use"
msgstr "Dewiswch yr offeryn rydych am ei ddefnyddio"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (cabl)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "UDA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "UDA (cabl)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "UDA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Tseina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Siapan (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Siapan (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Dwyrain Ewrop"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ffrainc"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Iwerddon"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Gorllewin Ewrop"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Awstralia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Zeland Newydd"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "De Affrica"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Yr Ariannin"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Rhowch eich safon teledu a gwlad"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Safon Teledu:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Ardal:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Wrthi'n sganio am sianeli Teledu ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Sganio am Sianel Teledu"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Digwyddodd gwall wrth osod pecyn"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11553,7 +12281,7 @@ msgstr ""
"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
"allgofnodi"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11579,7 +12307,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/File/_Cawd"
+msgstr "/Ffeil/_Cawd"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -11587,7 +12315,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/File/Cawd _fel"
+msgstr "/Ffeil/Cawd _fel"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11601,10 +12329,6 @@ msgstr "/_Dewisiadau"
msgid "/Options/Test"
msgstr "/Dewisiadau/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Cymorth"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Cymorth/_Ynghylch..."
@@ -11665,7 +12389,7 @@ msgstr "Calendr"
msgid "Content of the file"
msgstr "Cynnwys y ffeil"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Rhybudd E-bost/SMS"
@@ -11674,11 +12398,11 @@ msgstr "Rhybudd E-bost/SMS"
msgid "please wait, parsing file: %s"
msgstr "arhoswch, dosbarthu ffeil: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Rhybudd ffurfweddiad E-bost/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11688,63 +12412,95 @@ msgstr ""
"\n"
"Yma bydd modd i chi osod y system rhybuddio.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Enw parth"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Gwasanaethwr e-bost Postfix, gwasanaethwr newyddion Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Gwasanaethwr NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Gwasanaethau"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Gwasanaethwr Argraffydd"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "gosodiad gwasanaeth"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "gosodiad llwyth"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Byddwch yn derbyn rhybudd os yw'r llwyth yn uwch na'r gwerth hwn"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "ffurfweddiad rhybudd"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Ffurfweddiwch y ffordd mae'r system yn eich rhybuddio"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Cadw fel..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "neb ganfod serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Efelychu'r trydydd botwm?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Darllen data argraffydd..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Canfod dyfeisiadau..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11789,6 +12545,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Ffurfweddiad Mur Gwarchod"
@@ -12196,10 +12964,6 @@ msgid "Multimedia - Sound"
msgstr "Aml-gyfrwng - Sain"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Gwaasanaethau"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dogfennaeth"
@@ -12304,10 +13068,6 @@ msgstr ""
"ac i bori'r We"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archifio, efelychwyr, monitro"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Cyllid Personol"
@@ -12355,17 +13115,206 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
-#~ msgid "About"
-#~ msgstr "Allwedd amgryptio (eto)"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Dynodiad y cerdyn graffeg: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor heb ei ffurfweddu"
-#~ msgid " Help "
-#~ msgstr " Cymorth"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Cerdyn graffig heb ei ffurfweddu eto"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Cydraniad heb ei ddewis eto"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "ceisiwch newid rhai paramedrau"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Digwyddodd gwall:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Gadael mewn %d eiliad"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ydi'r gosodiad hwn yn gywir?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Gwasanaethwr XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Dangos y cyfan"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Yn parataoi cyfluniad X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Beth ydych eisiau ei wneud?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Newid Monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Newid cerdyn Graffeg"
+
+#~ msgid "Change Server options"
+#~ msgstr "Dewisiadau newid Gwasanaethwr"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Newid Cydraniad"
+
+#~ msgid "Show information"
+#~ msgstr "Dangos gwybodaeth"
+
+#~ msgid "Test again"
+#~ msgstr "Profi eto"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
+#~ "sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ..."
+#~ "\".. Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei "
+#~ "gynnal eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil "
+#~ "\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes "
+#~ "gennych HP LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis "
+#~ "sganio wedi ei osod mae modd sganio.\n"
+#~ "Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Defnyddiwch FTP gyda daemon"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Rhestr Pecynnau i'w Gosod"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Gosod y lefel diogelwch"
+
+#~ msgid "Graphics card"
+#~ msgstr "Cerdyn graffig"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Dewiswch gerdyn graffig"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Dewiswch yrrwr X"
+
+#~ msgid "X driver"
+#~ msgstr "Gyrrwr X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA safonol, 640x480 ar 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Uwch VGA, 800x600 ar 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Os hoffech chi osod llai na'r maint hwn\n"
+#~ "dewiswch canran y pecynnau i'w gosod.\n"
+#~ "\n"
+#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
+#~ "isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Nid yw XawTV wedi ei osod ...\n"
-#~ "Dylech ei osod.\n"
-#~ " Teipiwch \"urpmi xawtv\""
+#~ "Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
+#~ "\n"
+#~ "Os hoffech osod llai na hyn,\n"
+#~ "dewiswch canran y pecynnau rydych am eu gosod.\n"
+#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
+#~ "isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
+#~ "y mae modd."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Cyfanswm y pecynnau i'w gosod"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Dewiswch lefel diogelwch"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 6edcd2ac1..183a924d1 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -1,46 +1,70 @@
-# Danish translation of/Dansk oversttelse af
-# Mandrake Linux DrakX.
-# Copyright (C) 1999-2001 MandrakeSoft
-#
-# In order of activity:
-# 1, Keld Simonsen <keld@dkuug.dk>, 2000-2002
-# 2, Jacob Nordfalk <nordfalk@mobilixnet.dk>, 2001-2002
-# 3, Troels Liebe Bentsen <tlb@iname.com>, 1999-2000
-# 4, Nikolaj Berg Amondsen <mr_nba@get2net.dk>, 2000
-# 5, Jacob Sparre Andersen, <sparre@sslug.dk>, 2000
-# 6, Kenneth Christiansen, <kenneth@ripen.dk>, 2000
-# 7, Jens Burkal <jburkal@get2net.dk>, 1999
-# 8, Mads Stenhuus Hansen <msh@com.dtu.dk>, 1999
+# danish drakbootdisk
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Keld Simonsen <keld@dkuug.dk>, 2000-2002.
+# Troels Liebe Bentsen <tlb@iname.com> 2000.
+#
+# Reviewed: keld@dkuug.dk 2001-08-22
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 13:04+0100\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-28 15:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
-"Language-Team: Danish <dansk@klid.dk>\n"
+"Language-Team: dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurr alle skrme uafhngigt"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Brug Xinerama-udvidelse"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurr kun kort \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mb"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mb"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mb"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mb"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mb"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mb"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mb eller mere"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Vlg en X-server"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Flerskrms-konfiguration"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -48,41 +72,44 @@ msgstr ""
"Dit system understtter konfiguration af flere skrme\n"
"Hvad vil du gre?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikkort"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Vlg hukommelsesmngde for dit grafikkort"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Vlg et grafikkort"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfiguration"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Vlg en X-server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Hvilken konfiguration af XFree nsker du?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurr alle skrme uafhngigt"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Vlg en X-driver"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X-driver"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurr kun kort \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Hvilken konfiguration af XFree nsker du?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s med 3D hardware acceleration"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -91,34 +118,18 @@ msgstr ""
"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
"Dit kort er understttet af XFree %s som kan have bedre understttelse i 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Dit kort kan have 3D hardware accelerations-understttelse med XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s med 3D hardware acceleration"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Dit kort kan have 3D acceleration understttelse, men kun med XFree %s,\n"
-"VIGTIGT: Dette er eksperimentelt og kan f din maskine til at lse eller g "
-"ned."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -130,31 +141,58 @@ msgstr ""
"ned.\n"
"Dit kort er understttet af XFree %s som kan have bedre understttelse i 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Dit kort kan have 3D acceleration understttelse, men kun med XFree %s,\n"
+"VIGTIGT: Dette er eksperimentelt og kan f din maskine til at lse eller g "
+"ned."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skrmdriver)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguration"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Vlg hukommelsesmngde for dit grafikkort"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Vlg server-indstillinger"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behold ndringer?\n"
+"Nuvrende konfiguration er:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Vlg en skrmtype"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skrm"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Tilpasset"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Standard"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Producent"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -178,513 +216,327 @@ msgstr ""
"Hvis du er i tvivl, br du vlge en opstning, som du med SIKKERHED ved\n"
"at din skrm kan klare."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Vandret opdateringsfrekvens"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Lodret opdateringsfrekvens"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Skrm ikke konfigureret"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikkort er endnu ikke konfigureret"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Oplsninger ikke valgt endnu"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "nsker du at afprve konfigurationen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Advarsel: afprvning af dette grafikkort kan f din maskine til at lse"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test konfigurationen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 farver (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prv at ndre nogle parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tusinde farver (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "En fejl opstod:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tusinde farver (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Vender tilbage om %d sekunder"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millioner (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Er dette den korrekte indstilling?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milliarder farver (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "En fejl opstod, prv at ndre nogle parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Oplsninger"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Oplsning"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Vlg oplsning og farvedybde"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86-server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mere"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Annullr"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "O.k."
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspert-udgave"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vis alle"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "nsker du at afprve konfigurationen?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Oplsninger"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test konfigurationen"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatur-type: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muse-type: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muse-enhed: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skrm: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Skrms vandrette frekvens: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Skrms lodrette frekvens: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafikkort: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafikkort identifikation: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafik-hukommelse: %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Farvedybde: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Oplsninger %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86-server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 driver: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Forbereder konfiguration af X"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Hvad nsker du at gre?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Skift skrmtype"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Skift grafikkort"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Foretag ndringer i server-indstillinger"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Skift oplsning"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vis information"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Test igen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Afslut"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behold ndringer?\n"
-"Nuvrende konfiguration er:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Start X ved systemstart"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Jeg kan stte din maskine op til automatisk at starte X ved\n"
"opstart. nsker du at starte X hver gang du genstarter?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Log ind i %s igen for at aktivere ndringerne"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Log ud og tryk herefter p Ctrl-Alt-Bak"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 farver (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tusinde farver (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tusinde farver (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millioner (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milliarder farver (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mb eller mere"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard-VGA, 640x480 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super-VGA, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hjfrekvens SVGA, 1024x768 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skrm, som kan klare 1600x1200 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skrm, som kan klare 1600x1200 ved 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Frste sektor af opstartspartition"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Frste sektor p disken (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO-installering"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub-installering"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO med tekstmenu"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO med grafisk menu"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Start fra DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Systemopstarterens installation"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Opstartsenhed"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (virker ikke med gamle BIOS'er)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Videoindstilling"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Ventetid fr opstart af forvalgt styresystem"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Begrns kommandolinie-indstillinger"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "begrns"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Rens /tmp ved hver systemopstart"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Prcis RAM-mngde, hvis pkrvet (fandt %d Mb)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Aktivr multiprofiler"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Angiv RAM-strrelse i Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Indstillingen ``Begrns kommandolinie-indstillinger'' er intet vrd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Prv igen"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init-besked"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "ben firmwareforsinkelse"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Ventetid fr kerneopstart"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Skal det vre muligt at starte fra CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Skal det vre muligt at starte fra OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Forvalgt styresystem?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -698,83 +550,83 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Her er flgende typer indgange.\n"
"Du kan tilfje flere eller ndre de eksisterende."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Tilfj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Frdig"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "ndr"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type nsker du at tilfje"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Andet styresystem (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Billede"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Rod"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Vedhft"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Ls-skriv"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Mrkat"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Forvalgt"
@@ -806,53 +658,77 @@ msgstr "Du skal angive en root-partition"
msgid "This label is already used"
msgstr "Denne mrkat er allerede brugt"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fandt %s %s grnsesnit"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Har du n til?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grnsesnit?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Se info for maskinel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Du kan nu angive parametre til modul %s.\n"
+"Bemrk at alle adresser br indtastes med foranstillet 0x, fx '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Du kan nu stte parametre til modulet %s.\n"
+"Parametrene er i formatet ``navn=vrdi navn2=vrdi2 ...''.\n"
+"F.eks., ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modulindstillinger:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prve?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -872,39 +748,15 @@ msgstr ""
"burde\n"
"ikke forrsage nogen skader."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Specificr parametre"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Du kan nu angive parametre til modul %s.\n"
-"Bemrk at alle adresser br indtastes med foranstillet 0x, fx '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Du kan nu stte parametre til modulet %s.\n"
-"Parametrene er i formatet ``navn=vrdi navn2=vrdi2 ...''.\n"
-"F.eks., ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulindstillinger:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -913,49 +765,53 @@ msgstr ""
"Indlsning af modul %s mislykkedes.\n"
"nsker du at prve igen med andre parametre?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "adgang til rpm-vrktjer"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilfjet %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet m kun indeholde sm bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Dette brugernavn er for langt"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Tilfj bruger"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -964,32 +820,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Acceptr bruger"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -997,57 +853,57 @@ msgstr ""
"Jeg kan stte din maskine op til automatisk at logge en bestemt bruger p.\n"
"nsker du at bruge denne finesse?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Vlg den forvalgte bruger:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Vlg den vindueshndtering du nsker at benytte:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Vlg det sprog, der skal bruges."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Du kan vlge andre sprog der vil vre tilgngelige efter installationen"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Tilpasset"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal vre installeret. nsker du at installere den?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krvet pakke %s mangler"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1058,31 +914,11 @@ msgstr ""
"Tilladelse af dette vil stte brugere i stand til simpelthen at klikke p "
"'Fildeling' i konqueror og nautilus.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annullr"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1090,31 +926,31 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilfje en bruger til denne gruppe."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hj"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Hjere"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1125,7 +961,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1133,7 +969,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netvrksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1141,7 +977,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1149,51 +985,52 @@ msgstr ""
"Der er allerede nogle begrnsninger, og flere automatiske kontroller bliver "
"krt hver nat."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Med dette sikkerhedsniveau kan brug som server komme p tale.\n"
"Sikkerheden er nu hj nok til at systemet kan bruges som server som tillader "
"forbindelser fra mange klienter. Bemrk: hvis din maskine kun er en klient "
"p internettet br du hellere vlge et lavere niveau."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Baseret p det foregende niveau, men systemet er nu helt lukket.\n"
"Sikkerhedsfaciliteterne er nu p deres hjeste niveau."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Vlg sikkerhedniveau"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Et bibliotek som beskytter mod angreb via bufferoverlb og formatstrenge."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1218,52 +1055,52 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Velkommen til GRUB styresystemsvlgeren!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Brug tasterne %c og %c til at vlge mellem mulighederne."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "kommandoerne fr opstart, eller 'c' for en kommandolinie."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Den fremhvede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlseren p en %s-partition\n"
@@ -1276,17 +1113,21 @@ msgstr "endnu er ingen hjlp implementeret.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fil"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fil/_Afslut"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<kontrol>Q"
+msgstr "<Ctrl>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1319,14 +1160,14 @@ msgstr "Yaboot modus"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Du bruger for jeblikket % som opstartshndterer.\n"
"Klik p Konfigurr for at starte opstnings-vejlederen."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurr"
@@ -1336,7 +1177,7 @@ msgid "System mode"
msgstr "Systemmodus"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
#: ../../bootlook.pm_.c:148
@@ -1347,16 +1188,18 @@ msgstr "Nej, jeg nsker ikke automatisk login"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg nsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "O.k."
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1402,7 +1245,7 @@ msgstr "Kan ikke lave jebliksbilleder fr partitionering"
msgid "Screenshots will be available after install in %s"
msgstr "jebliksbilleder vil vre tilgngelige efter installation i %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankrig"
@@ -1410,7 +1253,7 @@ msgstr "Frankrig"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgien"
@@ -1434,11 +1277,12 @@ msgstr "Norge"
msgid "Sweden"
msgstr "Sverige"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italien"
@@ -1446,7 +1290,7 @@ msgstr "Italien"
msgid "Austria"
msgstr "strig"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "U.S.A."
@@ -1454,8 +1298,8 @@ msgstr "U.S.A."
msgid "Please make a backup of your data first"
msgstr "Lav gerne en sikkerhedkopi af dine data frst"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Ls omhyggeligt!"
@@ -1468,11 +1312,12 @@ msgstr ""
"Hvis du planlgger at bruge Yaboot, skal du huske at efterlade fri plads p\n"
"begyndelsen af disken (2048 sektorer skulle vre nok)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fejl"
@@ -1480,11 +1325,11 @@ msgstr "Fejl"
msgid "Wizard"
msgstr "Vejleder"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Vlg handling"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1496,144 +1341,149 @@ msgstr ""
"Jeg anbefaler, at du ndrer strrelsen p partitionen\n"
"(klik p den, og klik herefter p \"Strrelsesndring\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klik p en partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaljer"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journaliserende FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tom"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Andet"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Opret"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Benyt ``%s'' i stedet"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Slet"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Benyt ``Afmontr'' frst"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Efter type-ndring af partition %s vil alle data p denne partition g tabt"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Vlg en partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Vlg en ny partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Afslut"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normal -> Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ekspert -> Normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Fortryd"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Fortst alligevel?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "nsker du at gemme /etc/fstab-ndringerne?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Allokr automatisk"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Slet alt"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mere"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Drev-information"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle primre partitioner er brugt"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Kan ikke tilfje flere partitioner"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1641,31 +1491,31 @@ msgstr ""
"For at du kan f flere partitioner, skal du slette n, s der kan oprettes "
"en udvidet partition"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Gem partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Genskaber partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Redder partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Genindls partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automontering af flytbare medier"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Vlg fil"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1673,11 +1523,11 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme strrelse\n"
"Fortst alligevel?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advarsel"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1685,122 +1535,129 @@ msgstr ""
"Indst en diskette i diskettedrevet\n"
"Alle data p disketten vil blive slettet"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Forsger at redde partitionstabellen"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljeret information"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Monteringssti"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Valg"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Strrelsesndring"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Flyt"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatr"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montr"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Tilfj til RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Tilfj til LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Afmontr"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Fjern fra RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Fjern fra LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "ndr RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Loopback anvendelse"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Opret en ny partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Startsektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Strrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Filsystemstype: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Monteringssti: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Prference: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Fjern loopback-filen?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Skift partitionstype"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hvilket filsystem nsker du at bruge?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Skifter fra ext2 til ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvor nsker du at montere loopback-fil %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor nsker du at montere partitionen %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1809,127 +1666,132 @@ msgstr ""
"loopback.\n"
"Fjern loopback frst"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Udregner FAT-filsystemets grnser"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "ndrer strrelsen"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Strrelsen p denne partition kan ikke ndres"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Det br laves en backup af alle data p denne partition"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Efter ndring af strrelsen af partition %s vil alle data p denne partition "
"g tabt"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Vlg den nye strrelse"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ny strrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hvilken disk nsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hvilken sektor nsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Flytter"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Flytter partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Vlg en eksisterende RAID som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "ny"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Vlg en eksisterende LVM som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM-navn?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Denne partition kan ikke bruges til loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Giv et filnavn"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Filen er allerede brugt af en anden loopback, vlg en anden fil"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Modulindstillinger"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Diverse"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "enhed"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "niveau"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "enhedsstrrelse"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vr forsigtig: denne operation er farlig."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Hvilken slags partitionering?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Pakken %s krves. nsker du at installere den?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1941,7 +1803,7 @@ msgstr ""
"fungere, eller du kan undlade at benytte LILO, hvilket vil betyde, at du "
"ikke har brug for /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1953,7 +1815,7 @@ msgstr ""
"partition. Hvis du nsker at benytte LILO, skal du oprette en /boot "
"partition indenfor 1024-cylinder grnsen."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1963,130 +1825,130 @@ msgstr ""
"Ingen systemopstarter kan hndtere dette uden en /boot partition.\n"
"S vr omhyggelig med at tilfje en /boot partition"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet p disken!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere ndringerne"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Efter formatering af partitionen %s vil alle data p denne partition g tabt"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formaterer"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formaterer loopback-fil %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Skjul filer"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Flyt filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Katalog %s indeholder allerede nogen data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Flytter filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "partition %s er nu kendt som %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Enhed: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gt)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Navn: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Strrelse: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ikke formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Monteret\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2095,7 +1957,7 @@ msgstr ""
"Loopback-fil(er):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2103,27 +1965,27 @@ msgstr ""
"Partition som opstartes som standard\n"
" (glder kun MS-DOS-opstart, ikke LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Enhedsstrrelse %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2135,7 +1997,7 @@ msgstr ""
"en driver-partition, du skal\n"
"sandsynligvis lade den vre.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2147,63 +2009,63 @@ msgstr ""
"partition er for at\n"
"dual-boote dit system.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Strrelse: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "p bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "p kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Krypteringsngle for filsystem"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Vlg din krypteringsngle for filsystemet"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Denne krypteringsngle er for nem at gtte (skal mindst vre p %d tegn)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Krypteringsnglerne stemmer ikke overens"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Krypteringsngle"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Krypteringsngle (igen)"
@@ -2212,35 +2074,62 @@ msgid "Change type"
msgstr "Skift type"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Klik p et medie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Kan ikke logge ind med brugernavn %s (forkert adgangskode?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domnegodkendelse pkrvet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "En anden"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Hvilket brugernavn"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Intast venligst dit brugernavn, din adgangskode og dit domnenavn for at f "
+"adgang til denne vrt."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Brugernavn"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domne"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Sg efter servere"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck afsluttet med fejlkode %d eller signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2257,69 +2146,311 @@ msgstr "med /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS p partitioner mindre end 16Mb"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS p partitioner mindre end 32Mb"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog br ligge p rod-filsystemet"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Du skal have et rigtigt filsystem (ext2, reiserfs) til dette "
-"monteringspunkt\n"
+"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
+"dette monteringspunkt\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Ingenting at lave"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved bning af %s for skrivning: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Der er opstet en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
"der kan oprettes nye filsystemer. Undersg din maskine for at finde rsagen "
"til problemet"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Du har ikke nogen partitioner!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Automatisk detektion"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Ukendt|generisk"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Ukendt|CPH05X (bt878) [mange leverandrer]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Ukendt|CPH06X (bt878) [mange leverandrer]"
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+"For de fleste moderne tv-kort vil bttv-modulet fra GNU/Linux-kernen blot "
+"automatisk finde de rette parametre.\n"
+"Hvis dit kort ikke findes korrekt, kan du gennemtvinge den rette tuner og "
+"korttyper her. Bare vlg dit tv-korts parametre om ndvendigt"
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Kortmodel:"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "PLL-opstning:"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Antal fangningsbuffere:"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Antal fangningsbuffere for mmap-fangning"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Tuner-type:"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Radio-understttelse:"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "aktivr radio-understttelse"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Afslut"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hjlp"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Hjlp..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_Om..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kort mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Annullr"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Medieklasse"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Bus-identifikation"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Sted p bussen"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Vlg fil"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway enhed"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knapper"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 version "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Fundet maskinel"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informationer"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Kr konfigurationsvrktj"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Konfigurr modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Sgning udfres"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Vent venligst"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primr"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekundr"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Krer \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "Om Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Dette er HardDrake, et Mandrake-vrktj for konfigurering af maskinel.\n"
+"Version:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Forfatter:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Harddrake hjlp"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2333,7 +2464,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2461,9 +2592,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2807,7 +2937,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2819,9 +2949,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2890,21 +3019,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2920,9 +3048,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Nu skal du vlge hvor p din harddisk du vil installere dit Mandrake Linux-"
"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
@@ -3006,9 +3134,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3198,38 +3325,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3395,11 +3516,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3454,7 +3575,7 @@ msgstr ""
"svrt hvis du ikke har s godt et kendskab til GNU/Linux, s lad vre med at "
"vlge dette, medmindre du vd hvad du laver."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3479,7 +3600,7 @@ msgstr ""
"Klik p 'mere'-tasten for at blive prsenteret for den fulde \n"
"liste af understttede tastaturer."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3503,7 +3624,7 @@ msgstr ""
"Bemrk at flere sprog kan installeres samtidigt. Nr du er frdig med at "
"vlge yderligere sprog, s klik O.k. for at fortstte."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3530,7 +3651,7 @@ msgstr ""
"om indstillerne er gode. Hvis musen ikke virker korrekt, tryk da p "
"mellemrumstangenten eller vognretur for at 'Annullere' og vlg forfra."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3538,23 +3659,23 @@ msgstr ""
"Vlg den rigtige port. For eksempel er navnet for COM1-porten under MS "
"Windows 'ttyS0' under GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3611,7 +3732,7 @@ msgstr ""
"Hvis din maskine ikke er forbundet til noget administreret netvrk, nsker "
"du nok at vlge Lokale filer for autentificering"
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3633,7 +3754,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3641,7 +3762,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3710,7 +3831,7 @@ msgstr ""
"for at ndre eller fjerne den; 'Tilfj' opretter en ny indgang; og 'Frdig' "
"fortstter til det nste installationstrin."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3733,7 +3854,7 @@ msgstr ""
"Men s har du brug for en opstartsdiskette for at starte disse "
"operativsystemer!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3747,29 +3868,28 @@ msgstr ""
"Med mindre du vd prcist hvad du gr, br du vlge Frste sektor p drevet\n"
"(MBR)."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3805,7 +3925,7 @@ msgstr ""
"separat kanaliserings-konstruktion, s brug lprNG. Ellers er CUPS at "
"foretrkke, da det er simplere og bedre til at fungere over netvrk."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3830,7 +3950,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX er nu ved at bestemme alle IDE-enheder der er tilstede p din maskine. "
@@ -3856,7 +3976,7 @@ msgstr ""
"fra Microsoft Windows (hvis du brugte dette udstyr med Windows p dit "
"system)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3866,9 +3986,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3880,7 +3999,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3951,7 +4070,7 @@ msgstr ""
"ogs blive fremhvet med en '*', hvis du trykker Tab for at se "
"opstartsvalgene."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3978,9 +4097,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4016,10 +4134,10 @@ msgstr ""
" * Forvalgt styresystem: Du kan vlge hvilket forvalgt styresystem der skal "
"startes nr Open Firmwareforsinkelsen er udlbet."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4027,12 +4145,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4075,7 +4192,7 @@ msgstr ""
"blive vist her. Du kan klikke p knappen for at ndre de tilhrende "
"parametre."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4085,7 +4202,7 @@ msgstr ""
"partition. Vr forsigtig, alle data som er p der, vil g tabt og vil ikke "
"kunne genskabes!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4102,7 +4219,7 @@ msgstr ""
"Klik p 'Annulr' for at anullere denne handling uden at tabe nogen data og "
"partitioner der er tilstede p dette diskdrev."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4113,12 +4230,12 @@ msgstr ""
"mangler), dette betyder normalt at din opstartsdiskette ikke stemmer overens "
"med installationsmediet (lav en nyere opstartsdiskette)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Du skal ogs formatere %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4142,20 +4259,20 @@ msgstr ""
"\n"
"nsker du virkelig at installere disse servere?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domne"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Indst en tom diskette i diskette-drev %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Denne diskette er ikke formatteret til FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4163,7 +4280,7 @@ msgstr ""
"For at bruge dette gemte pakkevalg, start installationen op med``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fejl ved lsning af filen %s"
@@ -4194,7 +4311,7 @@ msgstr "Du skal tildele en partition til Swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4202,59 +4319,59 @@ msgstr ""
"\n"
"Fortst alligevel?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Du skal have en FAT-partition monteret under /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Brug fri plads"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ikke nok fri plads til at tildele nye partitioner"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Brug eksisterende partition"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Der er ingen eksisterende partition der kan bruges"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Brug Windows partitionen til Loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Hvilken partition vil du benytte som Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Vlg strrelserne"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Rod-partitions strrelse i Mb: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap-partitions strrelse i Mb: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Brug den frie plads p Windows-partitionen"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Hvilken partition nsker du at ndre strrelse p?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Udregner Windows-filsystemets grnser"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4263,11 +4380,14 @@ msgstr ""
"Programmet til at ndre strrelse p FAT kan ikke behandle din partition, \n"
"den flgende fejl opstod: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "Din Windows partition er for fragmenteret, kr 'defrag' frst"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4286,54 +4406,54 @@ msgstr ""
"defrag) og s genstarte installationen. Du br ogs tage en sikkerhedskopi "
"af dine data. Tryk p Ok, hvis du er helt sikker."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Hvilken strrelse nsker du at at beholde Windows p?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT strrelsesndring mislykkedes: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Der er ingen FAT-partitioner at ndre strrelse p, eller bruge som loopback "
"(eller ikke nok plads tilbage)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Slet hele disken"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Fjern Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Du har mere end et diskdrev, hvilken nsker du at installere Linux p?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle eksisterende partitioner og deres data vil g tabt p drev %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Brugerdefineret disk-opdeling"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Brug fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4342,11 +4462,11 @@ msgstr ""
"Du kan nu partitionere %s.\n"
"Nr du er frdig, s husk at gemme med 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Du har ikke nok fri plads p din Windows-partition"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Kan ikke finde plads til installering"
@@ -4354,16 +4474,16 @@ msgstr "Kan ikke finde plads til installering"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partitionerings-vejlederen fandt de flgende lsninger:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionering mislykkedes: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Bringer netvrket op"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Lukker netvrket ned"
@@ -4376,12 +4496,12 @@ msgstr ""
"pn mde.\n"
"Fortst p eget ansvar!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikr monterings-sti %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4393,12 +4513,12 @@ msgstr ""
"Tjek cdrom'en p en frdiginstalleret maskine ved brug af \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Intet tilgngeligt diskettedrev"
@@ -4408,9 +4528,9 @@ msgstr "Intet tilgngeligt diskettedrev"
msgid "Entering step `%s'\n"
msgstr "Gr til trin `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4420,200 +4540,154 @@ msgstr ""
"i stedet\n"
"Dette gres ved at trykke 'F1' ved opstart fra cdrommen, og s skrive 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installationsmetode"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Vlg en af de flgende installations-mder:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Den totale strrelse af de grupper du har valg er cirka %d Mb.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Hvis du nsker at installere mindre end denne strrelse,\n"
-"s vlg procentdelen af pakker som du vil installere.\n"
-"\n"
-"En lav procentdel vil kun installere de vigtigste pakker;\n"
-"en procentdel p 100%% vil installere alle valgte pakker."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Du har kun plads p din disk til %d%% af disse pakker.\n"
-"\n"
-"Hvis du nsker at installere mindre end denne strrelse,\n"
-"s vlg procentdelen af pakker som du vil installere.\n"
-"En lav procentdel vil kun installere de vigtigste pakker;\n"
-"en procentdel p %d%% vil installere s mange pakker som muligt."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Du har mulighed for at vlge dem mere prcist i nste installationstrin"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procentandel pakker til installation"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Valg af pakkegrupper"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Total strrelse: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Drlig pakke"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Navn: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Strrelse: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Vigtighed: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Du kan ikke vlge denne pakke, da der ikke er nok plads tilbage til at "
"installere den"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "De flgende pakker vil blive installeret"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "De flgende pakker vil blive afinstalleret"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Du kan ikke vlge/fravlge denne pakke"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dette er en ndvendig pakke, den kan ikke vlges fra"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Du kan ikke fravlge denne pakke. Den er allerede installeret"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Denne pakke skal opgraderes\n"
"Er du sikker p at du vil fravlge den?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Du kan ikke fravlge denne pakke. Den skal opgraderes"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Vis automatisk valgte pakker"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installr"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Indls/gem p diskette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Opdaterer pakkevalg"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimal installation"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Vlg pakker som skal installeres"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installerer"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Beregnes"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Resterende tid "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Vent venligst, forbereder installationen"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakker"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installerer pakke %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Acceptr"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Ngt"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4628,17 +4702,17 @@ msgstr ""
"gjort\n"
"Hvis du ikke har den s tryk p Annullr, s undgs installation fra denne cd"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Fortst alligevel?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
@@ -4707,12 +4781,12 @@ msgstr "Der er opstet en fejl"
msgid "Do you really want to leave the installation?"
msgstr "nsker du virkelig at forlade installationen?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licensaftale"
# Mangler
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4727,7 +4801,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4918,109 +4992,113 @@ msgstr ""
"rette domstol i Paris, Frankrig. Ved sprgsml omkring dette dokument, "
"kontakt venligst MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Er du sikker p at du afviser licensen?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Vlg dit tastaturlayout."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Her er den komplette liste over tilgngelige tastaturer"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Hvilken installations-klasse nsker du?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installr/Opdatr"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Er dette en nyinstallation eller en opdatering?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Anbefalet"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Opgradering"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Opgradr kun pakker"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Vlg muse-type."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muse-port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Vlg hvilken seriel port din mus er forbundet til."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulering af knapper"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulering af knap 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulering af knap 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurerer PCMCIA kort..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfigurerer IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ingen ledige partitioner"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Skanner partitioner for at finde monteringspunkter"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Vlg monterings-stierne"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5032,14 +5110,14 @@ msgstr ""
"\n"
"Er du indforstet med at delgge alle partitionerne?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
"DiskDrake kunne ikke lse partitionstabellen korrekt. Fortst p eget ansvar!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5047,75 +5125,76 @@ msgstr ""
"Det er ikke plads for 1 MB bootstrap! Installationen vil fortstte, men for "
"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Ingen rodpartition fundet til opgradering"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rod-partition"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du skal genstarte for at aktivere ndringerne i partitionstabellen"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Vlg partitioner der skal formateres"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Led efter beskadigede blokke?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formaterer partitioner"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Opretter og formaterer fil %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ikke nok swap-plads til at gennemfre installationen, tilfj mere"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Leder efter tilgngelige pakker og genopbygger rpm-database..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Leder efter tilgngelige pakker"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Leder efter pakker som skal opgraderes"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Leder efter pakker der allerede er installeret..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Dit system har ikke nok plads tilbage til en installation eller opgradering "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Alting (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Anbefalet (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5123,35 +5202,35 @@ msgstr ""
"Vlg indls eller gem pakkevalg p diskette.\n"
"Formatet er det samme som for auto_install-genererede disketter."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Indls fra diskette"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Indlser fra diskette"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Valg af pakker"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Indst en diskette med pakkevalget"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Gem p diskette"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Valgt strrelse er strre end tilgngelig plads"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Installationstype"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5159,19 +5238,19 @@ msgstr ""
"Du har ikke valgt nogen gruppe af pakker.\n"
"Vlg den minimale installation du nsker"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5181,16 +5260,16 @@ msgstr ""
"Hvis du ikke har nogen af disse cd'er, klik Annullr.\n"
"Hvis kun nogen cd'er mangler, fravlg dem, og klik s Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Forbereder installationen"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5199,23 +5278,23 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Indst opstartsdisketten i diskette-drevet %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Indst Opdater moduler-disketten i drev %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5262,8 +5341,8 @@ msgstr ""
"\n"
"Derudover skal kunder og/eller slutbrugere vre opmrksomme p ikke at bryde "
"lokale love fra dit/jeres lokalomrde. Skulle en kunde og/eller slutbruger "
-"ikke respektere det lokale omrdes love, vil han/de blive udsat for serise "
-"sanktioner.\n"
+"ikke respektere det lokale omrdes love, vil han/de blive udsat for "
+"alvorlige sanktioner.\n"
"\n"
"Under ingen omstndigheder kan Mandrakesoft eller deres producenter og/eller "
"leverandrer holdes ansvarlig for speciel, indirekte eller tilfldig skade "
@@ -5281,13 +5360,14 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5299,147 +5379,176 @@ msgstr ""
"\n"
"nsker du at installere opdateringerne?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontakter Mandrake Linux netsted for at hente listen over tilgngelige spejle"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Vlg det spejl hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter spejlet for at hente listen af tilgngelige pakker"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Maskin-ur sat til GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjlp af NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Ekstern CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ingen printer"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Kr \"sndconfig\" efter installation for at konfigurere dit lydkort"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Intet lydkort genkendt. Prv at kre \"harddrake\" efter installation"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oversigt"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tidszone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "St root-adgangskode"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette kodeord er for nemt at gtte (det skal mindst vre p %d tegn)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Identifikation"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentificering LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP grundlggende dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentificering NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domne"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Autentificering Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Windows Domain"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Navn p PDC-server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"For at f dette til at virke p en W2K PDC skal du nok have administratoren "
+"til at kre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
+"everyone /add - og genstarte serveren"
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5467,19 +5576,19 @@ msgstr ""
"Hvis du nsker at lave en opstartsdiskette til dit system, indst en "
"diskette i dit frste diskettedrev og tryk 'Ok'."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Frste diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5504,7 +5613,7 @@ msgstr ""
"Vil du lave en opstartsdiskette til dit system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5518,28 +5627,28 @@ msgstr ""
"oprettelse af en opstartsdiskette p en 1.44 Mb diskette vil formentlig\n"
"mislykkes, fordi XFS krver en meget stor driver)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Der er desvrre ikke noget tilgngeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vlg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Indst en diskette i %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Oprette opstartsdiskette"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Forbereder opstarter"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5550,11 +5659,11 @@ msgstr ""
"opstartsindlseren vil ikke virke for dig. Installationen vil fortstte, men "
"du skal bruge BootX for at starte din maskine."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "nsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5563,15 +5672,15 @@ msgstr ""
"forsg at gennemtvinge installation selv om dette kan delgge den frste "
"partition?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Installerer systemopstarter"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installation af opstarter mislykkedes. Den flgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5588,18 +5697,17 @@ msgstr ""
" Skriv s: shut-down\n"
"Ved nste opstart burde du se systemstarteren."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Indst en tom diskette i drev %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5609,7 +5717,8 @@ msgstr ""
"\n"
"Er du sikker p du nsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5620,7 +5729,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5634,17 +5743,22 @@ msgstr ""
"Errata p:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
"installation i den Officielle Mandrake Linux Brugervejledning."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5658,15 +5772,15 @@ msgstr ""
"\n"
"Du foretrkker mske at afspille installationen igen\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisk"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Afspil igen"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Gem pakke-valg"
@@ -5693,44 +5807,24 @@ msgstr "konsolhjlper mangler"
msgid "Choose a file"
msgstr "Vlg en fil"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanceret"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Basal"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Vent venligst"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Udvid tr"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sammenfold tr"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skift mellem flad og gruppesorteret"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Drligt valg, prv igen\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Dit valg? (standard %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5739,31 +5833,35 @@ msgstr ""
"Indgange som du skal udfylde:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Dit valg? (0/1, standard '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Knap '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "nsker du at klikke p denne knap?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr " indtast 'void' for tom indgang"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Dit valg? (standard '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Der er mange ting at vlge imellem (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5773,7 +5871,7 @@ msgstr ""
"Eller tryk retur for at fortstte.\n"
"Dit valg? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5782,327 +5880,327 @@ msgstr ""
"=> Bemrk, en etikette ndredes:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Indsend igen"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tjekkisk (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Tysk"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spansk"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Fransk"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russisk"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svensk"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Britisk"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikansk"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albansk"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armensk (gammel)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armensk (skrivemaskine)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armensk (fonetisk)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidiansk (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgisk"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgarsk (fonetisk)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarsk (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliansk (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Hviderussisk"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Schweizisk (Tysk layout)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Schweizisk (Fransk layout)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tjekkisk (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Tysk (ingen dde taster)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dansk"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (norsk)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (svensk)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estisk"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisk (russisk layout)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisk (Latin layout)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grsk"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungarsk"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatisk"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelsk"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelsk (Fonetisk)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iransk"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandsk"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiensk"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japansk 106 taster"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreansk tastatur"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinamerikansk"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litauisk AZERTY (gammel)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litauisk AZERTY (ny)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauisk \"talrkke\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauisk \"fonetisk\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lettisk"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonisk"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandsk"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugisisk"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadisk (Qubec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Russisk (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Russisk (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russisk (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovensk"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakisk (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakisk (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbisk (kyrillisk)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thailandsk"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik tastatur"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkisk (traditionel \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkisk (moderne \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainsk"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikansk (internaltionalt)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamesisk \"talrkke\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavisk (latinsk)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Hjre alt-tast"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Begge taster samtidigt"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Kontrol- og skiftetaster samtidigt"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock-tast"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl- og alt-taster samtidigt"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt og Shift-taster samtidigt"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "'Menu'-tast"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Venstre Windows-tast"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Hjre Windows-tast"
@@ -6115,7 +6213,29 @@ msgstr "Cirkulre monteringer %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver frst\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "et tal"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d kommaseparerede tal"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d kommaseparerede strenge"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "kommaseparerede tal"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "kommaseparerede strenge"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6158,10 +6278,6 @@ msgstr "1 knap"
msgid "Generic 2 Button Mouse"
msgstr "Standard 2-knaps mus"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Standard"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Hjul"
@@ -6226,38 +6342,54 @@ msgstr "ingenting"
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Test musen"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "For at aktivere musen,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "FLYT P HJULET!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Afslut"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Nste ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Forrige"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Er dette korrekt?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Udvid tr"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sammenfold tr"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Skift mellem flad og gruppesorteret"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Lav forbindelse til Internettet"
@@ -6304,7 +6436,7 @@ msgstr ""
"Der blev ikke fundet nogen ethernet netvrksadapter p dit system.\n"
"Kan ikke stte denne forbindelsetype op."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Vlg netvrksgrnsesnit"
@@ -6319,7 +6451,7 @@ msgstr ""
msgid "no network card found"
msgstr "kunne ikke finde noget netkort"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigurerer netvrk"
@@ -6335,15 +6467,15 @@ msgstr ""
"Dit vrtsnavn br vre et fuldt kvalificeret vrtsnavn,\n"
"fx 'minpc.mitfirma.dk'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Vrtsnavn"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Konfigurr netvrk"
@@ -6400,7 +6532,7 @@ msgstr "ISDN konfiguration"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vlg din udbyder.\n"
" Hvis de ikke er i listen, vlg Ikke listet"
@@ -6419,14 +6551,14 @@ msgstr "Protokol for resten af verden"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol for resten af verden \n"
" ingen D-kanal (lejet linje)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Hvilken protokol nsker du at bruge?"
#: ../../network/isdn.pm_.c:199
@@ -6450,7 +6582,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Hvis du har et ISA kort burde vrdiene i nste billede vre rigtige.\n"
@@ -6466,13 +6599,13 @@ msgid "Continue"
msgstr "Fortst"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Hvilket er dit ISDN-kort?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vlg et PCI-"
"kort i nste skrmbillede."
@@ -6489,47 +6622,47 @@ msgstr "Angiv hvilken seriel port dit modem er forbundet til."
msgid "Dialup options"
msgstr "Opkaldsindstillinger"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Navn p forbindelsen"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Brugernavn"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript-baseret"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-baseret"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domnenavn"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Frste DNS-server (valgfri)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Anden DNS-server (valgfri)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6538,7 +6671,7 @@ msgstr ""
"Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
"forbindelse."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6546,11 +6679,11 @@ msgstr ""
"\n"
"Du kan genkonfigurere din forbindelse"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Du har forbindelse til Internettet nu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6558,32 +6691,32 @@ msgstr ""
"\n"
"Du kan lave forbindelse til Internettet eller omkonfigurere din forbindelse."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Du er ikke forbundet til Internettet nu."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Tilslut"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Afbryd"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Konfigurr forbindelsen"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetforbindelse & -konfiguration"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6602,12 +6735,12 @@ msgstr ""
"\n"
"Tryk OK for at begynde."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurr netvrk"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6619,9 +6752,9 @@ msgstr ""
"Klik OK for at beholde din konfiguration, eller annullr for at "
"omkonfigurere din Internet- og netvrksforbindelse.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6631,66 +6764,72 @@ msgstr ""
"Vi skal til at konfigurere din internet- eller netvrksforbindelse.\n"
"Hvis du ikke nsker at bruge autodetektering, s fravlg afkrydsningsboksen\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Vlg profilen der skal konfigureres"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Brug automatisk detektion"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Eksperttilstand"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detekterer enheder..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normal modemforbindelse"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "Detekteret p port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN-forbindelse"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "Detekteret %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL opkobling"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "Detekteret p grnseflade %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelforbindelse"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabelopkobling detekteret"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Lokalnet-konfiguration"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet-kort detekteret"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Vlg den opkobling, du nsker at konfigurere"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6700,23 +6839,23 @@ msgstr ""
"Venligst vlg den du nsker at bruger.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet opkobling"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "nsker du at starte din forbindelse ved opstart?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netvrks konfiguration"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Netvrket skal startes op igen"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6727,7 +6866,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6737,7 +6876,7 @@ msgstr ""
"Konfigurationen vil nu blive anvendt p dit system.\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6745,19 +6884,19 @@ msgstr ""
"Derefter anbefaler vi at du genstarter dit X-milj for\n"
"at undg problemer med det ndrede vrtsnavn"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Problemer indtraf under konfigurationen.\n"
"Afprv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
"virker, kan du prve at genstarte konfigurationen."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6767,7 +6906,7 @@ msgstr ""
"Ved kun at trykke p OK beholder du den nuvrende konfiguration.\n"
"ndringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6776,38 +6915,42 @@ msgstr ""
"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurerer netvrksenheden %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (drivprogram %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-adresse"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmaske"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatisk IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Start ved opstart"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresse skal have formatet 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6819,64 +6962,64 @@ msgstr ""
"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
"s lad navne-server-felterne vre blanke."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS-server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (fx %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway enhed"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfiguration af mellemvrt (proxy)"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Flg id for netvrkskort (nyttigt for brbare)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy skal vre http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy skal vre ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet-konfiguration"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "nsker du at forsge at skabe forbindelse til Internettet nu?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Tester din forbindelse..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Systemet er ikke forbundet til Internettet nu."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Af sikkerhedsgrunde vil det blive afbrudt nu."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6884,111 +7027,116 @@ msgstr ""
"Det lader ikke til at dit system har forbindelse til Internettet.\n"
"Prv at omkonfigurere din forbindelse."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Forbindelses-konfiguration"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Udfyld eller markr feltet nedenunder"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kort IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kort mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kort IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kort IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kort IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Dit personlige telefonnummer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Navn p udbyder (f.eks. udbyder.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Udbyders telefonnummer"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Udbyder DNS 1 (valgfri)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Udbyder DNS 2 (valgfri)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Vlg dit land"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Opringningsmde"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Opkoblingshastighed"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Opkoblingens tidsudlb (i sekunder)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Konto-login (brugernavn)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Kodeord for konto"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Storbritannien"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montering mislykkedes: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Udvidet partition ikke understttet p denne platform"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Du har plads tilovers i din partitionstabel, men jeg kan ikke udnytte den.\n"
"Den eneste lsning er at flytte dine primre partitioner, sledes at\n"
"\"hullet\" bliver placeret ved siden af de udvidede partitioner."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Genskabning fra fil %s mislykkedes: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fejl i sikkerhedskopien"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fejl ved skrivning til fil %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6998,186 +7146,186 @@ msgstr ""
"En test for at tjekke integriteten af data er mislykkedes. \n"
"Dette betyder at alt p disken vil ende som tilfldigt snavs"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "skal have"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vigtigt"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "meget rart"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "rart"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "mske"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Dmon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokal printer"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Ekstern printer"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Printer p ekstern CUPS server"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Printer p ekstern lpd server"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Netvrksprinter (TCP/sokkel)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer p SMB/Windows 95/98/NT server"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Printer p en NetWare server"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Indtast en printerenheds-URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "kanalisr opgave ind i kommando"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Ukendt model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokale printere"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Eksterne printere"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " p parallelport \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB printer \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-funktions-enhed p parallel port \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multi-funktions-enhed p USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", multi-funktions-enhed p HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multi-funktions-enhed"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", skriver til %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "p LPD-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP vrt \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "p Windows-server \"%s\", deling \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "p Novell-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", med kommando %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "R printer (ingen driver)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(p %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(p denne maskine)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "P CUPS-server '%s'"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Forvalgt)"
@@ -7199,11 +7347,11 @@ msgstr ""
"Eksterne CUPS-servere behver du ikke at konfigurere her: \n"
"disse printere vil automatisk blive fundet."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "CUPS-Konfiguration"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Angiv CUPS server"
@@ -7245,7 +7393,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adressen br se ud som 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Port-nummeret br vre et heltal!"
@@ -7253,7 +7401,7 @@ msgstr "Port-nummeret br vre et heltal!"
msgid "CUPS server IP"
msgstr "CUPS-serverens IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7261,20 +7409,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatisk CUPS-konfiguration"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Sger efter enheder..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Afprv porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Tilfj en ny printer"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7296,13 +7436,13 @@ msgstr ""
"giver dig adgang til alle tilgngelige printerdrivere, drivermuligheder og "
"opkoblingstyper for printere."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokal printer"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7334,11 +7474,11 @@ msgstr ""
"nsker at opstte udskrift p en ekstern printer og Printerdrake ikke lister "
"denne automatisk."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Auto-opdagelse af printere"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7361,11 +7501,11 @@ msgstr ""
"nsker at ndre p standard-indstillingerne (papirbakke, printkvalitet ...), "
"s vlg 'Printer' i 'Udstyr'-afsnittet i Mandrake Kontrolcentret."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Auto-opdagelse af printere"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7381,33 +7521,37 @@ msgstr ""
"\n"
"nsker du virkeligt at f dine printere automatisk opdaget?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Udfr automatisk detektion"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Opst printer manuelt"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Afprv porte"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Fandt %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer p parallel port \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-printer \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7419,11 +7563,11 @@ msgstr ""
"dev/lp1 ..., svarende til LPT1:, LPT2: ..., frste USB-printer: /dev/usb/"
"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Du skal indtaste en enhed eller et filnavn!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7431,7 +7575,7 @@ msgstr ""
"Ingen lokal printer fundet!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7439,7 +7583,7 @@ msgstr ""
"Netvrksprintere kan kun installeres efter installeringen. Vlg 'Udstyr' og "
"dernst 'Printer' i Mandrake kontrolcentret."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7447,7 +7591,7 @@ msgstr ""
"For at installere netvrksprintere skal du klikke p 'Annullr', skifte til "
"'Ekspert-version' og klikke p 'Tilfj en ny printer' igen."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7455,7 +7599,7 @@ msgstr ""
"Den flgende printer blev opdaget automatisk. Hvis det ikke er den du nsker "
"at opstte s indtast et enhedsnavn/filnavn p inddatalinjen"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7463,7 +7607,7 @@ msgstr ""
"Her er en liste over alle automatisk opdagede printere. Vlg den printer du "
"nsker at opstte eller indtast et enhedsnavn/filnavn p inddatalinjen"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7475,7 +7619,7 @@ msgstr ""
"eller hvis du foretrkker en tilpasset printerkonfiguration, s sl 'Manuel "
"konfiguration' til."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7488,7 +7632,7 @@ msgstr ""
"foretrkker en tilpasset printerkonfiguration, s sl 'Manuel konfiguration' "
"til."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7496,11 +7640,11 @@ msgstr ""
"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
"filnavn p inddatalinjen"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Angiv hvilken port din printer er forbundet til."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7508,52 +7652,65 @@ msgstr ""
"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
"frste USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Du skal vlge eller indtaste en printer/enhed!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuel konfiguration"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, PhotoSmart, "
"LaserJet 1100/1200/1220/3200/3300 med skanner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installerer HPOJ-pakke..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Tjekker enhed og konfigurerer HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Installerer SANE-pakke..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Installerer pakker..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skanner p din HP multi-funktionsenhed"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skanner p din HP multi-funktionsenhed"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Gr printerport tilgngelig for CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lser database over printere ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Parametre til ekstern lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7561,27 +7718,27 @@ msgstr ""
"For at bruge en ekstern printer, skal du opgive vrtsnavnet\n"
"for printerserveren og navnet p printeren p denne server."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Eksternt vrtsnavn"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Eksternt printernavn"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Eksternt vrtsnavn mangler"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Det eksterne vrtsnavn mangler!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT)-printer indstillinger"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7593,35 +7750,35 @@ msgstr ""
"IP-adressen p printerserveren, s vel som delenavnet for printeren du vil "
"bruge samt ndvendig information om brugernavn, adgangskode og arbejdsgruppe."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-servervrt"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-serverens IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Dele-navn"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Arbejdsgruppe"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Enten servernavnet eller serverens IP skal angives!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Samba-delenavn mangler!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "SIKKERHEDSADVARSEL!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7664,7 +7821,7 @@ msgstr ""
"Opst dernst udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7676,7 +7833,7 @@ msgstr ""
"protokollen, og opst udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7688,11 +7845,11 @@ msgstr ""
"\n"
"nsker du virkelig at fortstte med at opstte din printer som du gr nu?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare printer-parametre"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7704,27 +7861,27 @@ msgstr ""
"navnet!) svel som knavnet for den printer du vil benytte samt om "
"ndvendigt et brugernavn og en adgangskode."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printer-server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Printerk-navn"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-servernavn mangler!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-knavn mangler!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Sokkel-printer-parametre"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7735,19 +7892,19 @@ msgstr ""
"printeren, og eventuelt portnummer. P HP JetDirect-servere er portnummeret "
"normalt 9100, p andre servere varierer det. Tjek manualen for dit udstyr."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "printer-vrtsnavn"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "printer-vrtsnavn mangler!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printer-enheds URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7757,11 +7914,11 @@ msgstr ""
"CUPS- eller Foomatic-standarden. Bemrk at ikke alle typer URIer "
"understttes af alle k-behandlere."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "En korrekt URI skal opgives!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7770,27 +7927,23 @@ msgstr ""
"Beskrivelsen og lokaliseringsfelterne behver ikke \n"
"udfyldes. De er kommentarer til brugerne."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Navn p printer"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Placering"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Forbereder printerdatabase: ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Din printermodel"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7815,24 +7968,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Modellen er korrekt"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Vlg model manuelt"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Valg af printermodel"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Hvilken printermodel har du?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7848,7 +8001,7 @@ msgstr ""
"nr markren str p en forkert model, eller\n"
"p 'R printer'."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7856,11 +8009,11 @@ msgstr ""
"Hvis din printer ikke er listet, s vlg en kompatibel (se printermanual) "
"eller en lignende printer."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI konfiguration af winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7876,11 +8029,11 @@ msgstr ""
"parallelle port fr du udskriver en prveside. Ellers vil printeren ikke "
"virke. Din opstning af forbindelsestype vil blive ignoreret af driveren."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguration"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7892,7 +8045,7 @@ msgstr ""
"din printer til en lokal port eller konfigurr den p den maskine, den er "
"forbundet til."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7914,7 +8067,7 @@ msgstr ""
"'lexmarkmaintain', og justr opstningen af justeringen af hovedet med dette "
"program."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7930,22 +8083,22 @@ msgstr ""
"enhed, ekstra bakker) er sat rigtigt. Bemrk at en meget god "
"udskriftskvalitet kan gre udskriften betydeligt langsommere."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valg %s skal vre et helt tal!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Valg %s skal vre et tal!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Valg %s er udenfor omrde!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7954,11 +8107,11 @@ msgstr ""
"nsker du fremover at bruge printeren \"%s\"\n"
"som standard?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testsider"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7970,39 +8123,39 @@ msgstr ""
"laserprintere med for lidt hukommelse vil den mske ikke skrives ud i det "
"hele taget. Som regel vil det vre nok at udskrive standard-testsiden."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Ingen testsider"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Udskriv"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standard testside"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativ testside (letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativ testside (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Fototestside"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Udskriv ikke nogen testsider"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Udskriver testsider..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8017,7 +8170,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8025,15 +8178,15 @@ msgstr ""
"Testsider er sendt til printeren.\n"
"Det kan tage lidt tid fr printeren starter.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Fungerer det korrekt?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "R printer"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8046,7 +8199,7 @@ msgstr ""
"'kprinter <fil>'. De grafiske vrktjer lader dig vlge printeren og ndre "
"indstillingerne p en nem mde.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8056,8 +8209,8 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad vre med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8070,11 +8223,11 @@ msgstr ""
"bestemt udskriftsjob. Tilfj blot de nskede indstillinger til "
"kommandolinjen, fx '%s <fil>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Hvilke muligheder der er for den aktuelle printer kan du enten lse p "
@@ -8082,7 +8235,7 @@ msgstr ""
"s.\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8090,7 +8243,7 @@ msgstr ""
"Her er en liste over tilgngelige printmuligheder for den aktuelle printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8099,8 +8252,8 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8110,7 +8263,7 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad vre med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8118,7 +8271,7 @@ msgstr ""
"For at f en liste af tilgngelige muligheder for den aktuelle printer kan "
"du klikke p knappen 'Liste med printermuligheder'."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8127,7 +8280,7 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8143,7 +8296,7 @@ msgstr ""
"jeblikkeligt nr du klikker p den. Dette er fx nyttigt hvis papiret "
"krller sammen.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8156,38 +8309,49 @@ msgstr ""
"for et bestemt udskriftsjob. Tilfj blot de nskede indstillinger til "
"kommandolinjen, fx '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Luk"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Udskriver eller skanner p '%s'"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Udskriver eller skanner p '%s'"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Udskriver eller skanner p '%s'"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Udskriver p printeren '%s'"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Luk"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste med printermuligheder"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8200,38 +8364,30 @@ msgstr ""
"\n"
"Brug ikke \"scannerdrake\" p denne enhed!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne skanne. "
-"Nu kan du skanne med 'ptal-hp %s scan ...' fra kommandolinjen. Skanning via "
-"en grafisk grnseflade eller fra GIMP er endnu ikke understttet for din "
-"enhed. Du kan finde mere information i filen \"/usr/share/doc/hpoj-0.8/ptal-"
-"hp-scan.html\" p dit system. Hvis du har en HP LaserJet 1100 eller 1200 kan "
-"du kun skanne nr du har skannermuligheden installeret p udstyret.\n"
-"\n"
-"Brug ikke \"scannerdrake\" p denne enhed!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lser printerdata ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Overfr printerkonfiguration"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8246,7 +8402,7 @@ msgstr ""
"opgaver.\n"
"Ikke alle ker kan overfres p grund af:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8254,7 +8410,7 @@ msgstr ""
"CUPS understtter ikke printere p Novellservere eller printere som sender "
"dataene ind i en frit-formet kommando.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8262,11 +8418,11 @@ msgstr ""
"PDQ understtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
"printere.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD og LPRng understtter ikke IPP printere.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8274,7 +8430,7 @@ msgstr ""
"Desuden kan ker lavet med dette program eller \"foomatic -configure\" ikke "
"overflyttes."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8284,7 +8440,7 @@ msgstr ""
"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
"CUPS egne drivere kan heller ikke overflyttes."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8294,15 +8450,15 @@ msgstr ""
"Vlg printerene som du vil overflytte og klik\n"
"\"Overfr\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Overfr ikke printere"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Overfr"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8313,11 +8469,11 @@ msgstr ""
"Klik \"Overfr\" for at overskrive.\n"
"Du kan ogs give et nyt printernavn, eller overspringe denne printer."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Navn p printer br kun indeholde bogstaver, tal og understregen _"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8326,16 +8482,16 @@ msgstr ""
"Printeren \"%s\" eksisterer allerede,\n"
"nsker du virkelig at overskrive dens konfiguration?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nyt printernavn"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Overfrer %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8344,29 +8500,29 @@ msgstr ""
"Du har overfrt din tidligere standard-printer '%s', skal den ogs vre "
"standard-printer under det nye printersystem %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Opfrisker printerdata ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfiguration af en ekstern printer"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Starter netvrk ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Konfigurr netvrket nu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Netvrksfunktionalitet ikke konfigureret"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8378,11 +8534,11 @@ msgstr ""
"fortstte uden en netvrkskonfiguration, vil du ikke kunne bruge printeren "
"som du konfigurerer nu. Hvordan nsker du at fortstte?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Fortst med konfigurering af netvrk"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8397,7 +8553,7 @@ msgstr ""
"'Forbindelse', og konfigurr derefter printeren ogs med Mandrake "
"Kontrolcenter, afsnittet om 'Maskinel'/'Printer'"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8406,24 +8562,24 @@ msgstr ""
"Netvrksadgangen krte ikke og kunne ikke startes. Tjek din konfiguration og "
"dit udstyr. Prv derefter at konfigurere din eksterne printer igen."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Genstarter printsystemet ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "hj"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installerer et printersystem p sikkerhedsniveauet %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8448,11 +8604,11 @@ msgstr ""
"\n"
"nsker du virkelig at konfigurere udskrivning p denne maskine?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Starter printsystemet ved opstart"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8472,63 +8628,63 @@ msgstr ""
"\n"
"nsker du at have den automatiske opstart af printsystemet slet til igen?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Tjekker installeret programmel..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Fjerner LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Fjerner LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Vlg printerk-behandler"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvilket printersystem (spooler) nsker du at bruge?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigurerer printer '%s'..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installerer Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Printer-muligheder"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Forbereder PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Konfigurerer programmer..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Vil du gerne konfigurere udskrivning?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Printsystem: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8540,7 +8696,7 @@ msgstr ""
"information om den; eller for at gre en ekstern CUPS-printer tilgngelig "
"for Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8550,29 +8706,33 @@ msgstr ""
"dens indstillinger, for at gre den til standard-printer, eller for at se "
"information om den."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Opfrisk printerliste (for at vise alle tilgngelige eksterne CUPS-printere)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "ndr printsystemet"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normal udgave"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Afslut"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "nsker du at konfigurere en anden printer?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "ndr printerkonfiguration"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8581,104 +8741,104 @@ msgstr ""
"Printer %s\n"
"Hvad nsker du at forandre p, p denne printer?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gr det!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Printeropkoblingstype"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Printernavn, beskrivelse, sted"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Printerproducent, model, driver"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Printerproducent, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "St printeren som standard-printer"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Tilfj denne printer til Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Fjern denne printer fra Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Udskriver testsider"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Vd hvordan denne printer bruges"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Fjern printer"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Fjerner gammel printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Fjerner gammel printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Standard printer"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printeren '%s' er nu sat som standard-printer."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Tilfjer printer til Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Printeren \"%s\" blev tilfjet til Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Kunne ikke tilfje printeren \"%s\" til Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Fjerner printer fra Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "nsker du virkelig at fjerne printeren \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Fjerner printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Fjerner printer \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8762,24 +8922,61 @@ msgstr "Adgangskoderne stemmer ikke overens. Prv igen!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan ikke tilfje en partition til _formatret_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Kan ikke skrive filen %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid fejlede"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fejlede (mske mangler raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Dette niveau skal bruges med omtanke. Det gr dit system nemmere at bruge, "
+"men er meget srbart: det m ikke bruges til en maskine der er i et netvrk "
+"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
+"adgangskoder."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Med dette sikkerhedsniveau kan brug som server komme p tale.\n"
+"Sikkerheden er nu hj nok til at systemet kan bruges som server som tillader "
+"forbindelser fra mange klienter. Bemrk: hvis din maskine kun er en klient "
+"p internettet br du hellere vlge et lavere niveau."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Avancerede muligheder"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Valg"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
@@ -8836,7 +9033,7 @@ msgstr ""
"HardDrake krer en sgning efter maskinel, og kan konfigurere nyt/ndret "
"maskinel."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache er en webserver. Den bruges til at betjene HTML-filer og CGI."
@@ -8909,7 +9106,7 @@ msgstr ""
"Linux Virtuel Server, brugt til at bygge en server med hj ydelse og\n"
"tilgngelighed."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8986,7 +9183,7 @@ msgstr ""
"NFS og NIS. Portmap serveren skal kre p maskiner som bruger protokoller "
"der udnytter RPC mekanismen"
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9082,7 +9279,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fildeling"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9211,6 +9408,7 @@ msgstr ""
"gcc-overstteren og de bedste ben Kildekode-udviklingsmiljer"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolcenter"
@@ -9332,6 +9530,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Installerer pakker..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Log ud og tryk herefter p Ctrl-Alt-Bak"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Log ind i %s igen for at aktivere ndringerne"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9340,6 +9547,145 @@ msgstr ""
"Jeg kan ikke lse din partitionstabel, den er for delagt :(\n"
"Jeg vil forsge mig med at slette de beskadigede partitioner"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Konfiguration af Mandrake Terminalserver"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Aktivr server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Deaktivr server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Start server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Stop server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot diskette/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Opstartsbilleder for netopstart"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Tilfj/slet brugere"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Tilfj/slet klienter"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Hjlp"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Start fra sdiskette"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Start fra ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Opbyg hele kernen -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Dette vil tage nogle f minutter."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Ingen kerne valgt!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Byg enkel NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Ingen NIC valgt!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Byg alle kerner -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Slet"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Slet alle NBI'er"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Tilfj bruger -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Slet bruger"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Tilfj klient -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Slet klient"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Konfigurr dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Udskriv konfiguration"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Indst diskette:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Kunne ikke f adgang til disketten!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Diskette kan fjernes nu"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Intet tilgngeligt diskettedrev!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO-aftryk er %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Noget gik galt!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Skal oprette /etc/dhcpd.conf frst!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fejl!"
@@ -9391,6 +9737,10 @@ msgstr ""
"Vlg for hvert skridt om det skal vre som under installationen, eller "
"manuelt"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Laver autoinstallations-diskette"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9403,12 +9753,12 @@ msgstr ""
"\n"
"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Tillykke!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9416,28 +9766,19 @@ msgstr ""
"Disketten er blevet genereret.\n"
"Du kan nu gennemfre installationen igen."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Autoinstallation"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Tilfj et element"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Fjern det sidste element"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9447,7 +9788,7 @@ msgstr ""
" DrakBackup Rapport \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9459,19 +9800,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9483,63 +9812,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "total fremdrift"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Sikkerhedskopir systemfiler..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Sikkerhedskopir brugerfiler..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Sikkerhedskopir andre filer..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"filliste sending via FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
+"\n"
+"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
"FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
"\n"
-"(!) FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler "
-"via FTP.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Fejl ved afsendelse af post. \n"
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Fejl ved afsendelse af post. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Valg af filer"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Vlg filerne eller katalogerne og klik p 'Tilfj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9547,26 +9899,26 @@ msgstr ""
"\n"
"Markr alle muligheder som du behver.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
"katalog.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Lav sikkerhedkopi af dine systemfiler. ( /etc kataloget)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9574,83 +9926,77 @@ msgstr ""
"Med denne valgmulighed vil du vre i stand til at kunne genskabe\n"
"enhver version af dit /etc katalog."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Markr alle brugere som du vil have med i din sikkerhedskopi."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Medtag ikke cache for netlser"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Fjern valgte"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Brugere"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Brug FTP forbindelse til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Indtast vrtsnavn eller IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Indtast kataloget hvori\n"
" sikkerhedskopien skal lgges p denne maskine."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Indtast dit brugernavn"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP forbindelse"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sikker forbindelse"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Vlg din cd-plads"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Markr om du bruger et CDRW-medie"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Markr om du vil slette din CDRW fr ny skrivning"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9658,7 +10004,7 @@ msgstr ""
"Markr om du nsker at medtage\n"
" installeringsopstart p din cd."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9666,16 +10012,21 @@ msgstr ""
"Indtast din CD-brnders enhedsnavn\n"
" fx: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "brug bnd til sikkerhedskopieringen"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Markr om du vil slette din CDRW fr ny skrivning"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9683,51 +10034,57 @@ msgstr ""
"Indtast den maksimale strrelse\n"
" tilladt for Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Indtast kataloget der skal gemmes:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Netvrk"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Diskdrev / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Type"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "timeligt"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "dagligt"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "ugentligt"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "mnedligt"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Brug dmon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9735,7 +10092,7 @@ msgstr ""
"Vlg tidsinterval mellem\n"
"hver sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9743,71 +10100,67 @@ msgstr ""
"Vlg mediet for\n"
"sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Brug diskdrev med dmon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Brug FTP med dmon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Forsikr dig gerne at cron-dmonen er med i dine tjenester."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Hvad"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Hvor"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Hvornr"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Flere muligheder"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup konfiguration"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Vlg hvor du nsker at sikkerhedskopiere"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "p diskdrev"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "over netvrk"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Vlg hvad du vil sikkerhedkopiere"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Lav sikkerhedskopi af system"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Lav sikkerhedskopi af brugere"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Hndpluk bruger"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9815,7 +10168,7 @@ msgstr ""
"\n"
"Kilder for sikkerhedskopi: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9823,7 +10176,7 @@ msgstr ""
"\n"
"- Systemfiler:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9831,7 +10184,7 @@ msgstr ""
"\n"
"- Brugerfiler:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9839,7 +10192,7 @@ msgstr ""
"\n"
"- Andre filer:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9848,16 +10201,45 @@ msgstr ""
"\n"
"- Gem til diskdrev p stien: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Muse-enhed: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Gem via FTP p vrt : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Gem via FTP p vrt : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9866,7 +10248,7 @@ msgstr ""
"\t\t brugernavn: %s\n"
"\t\t p sti: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9874,19 +10256,19 @@ msgstr ""
"\n"
"- Muligheder:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9895,27 +10277,41 @@ msgstr ""
"\n"
"- Dmon (%s) indeholder:\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Diskdrev.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-cdrom.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Netvrk via FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Netvrk via SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Netvrk via FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Netvrk via FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ingen konfiguration, klik p Vejleder eller Avanceret.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9923,7 +10319,7 @@ msgstr ""
"Liste over data som skal genskabes:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9931,130 +10327,133 @@ msgstr ""
"Liste over data der er delagt:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Afmarkr eller fjern det gerne nste gang."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Sikkerhedskopifiler er delagte"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Alle dine valgte data er blevet "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " genskabt uden fejl p %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Genskab konfiguration "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "O.k. at genskabe de andre filer."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Lav sikkerhedskopi af systemfiler fr:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Vlg dato for genskabning"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Indtast kataloget der skal gemmes:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP forbindelse"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sikker forbindelse"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Genskab fra disk."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Vlg et andet medie at genskabe fra"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Andet medie"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Genskab system"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Genskab brugere"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Genskab andet"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "vlg sti at genskabe (i stedet for / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lav ny sikkerhedskopi fr genskabning (kun for inkrementalbackupper)."
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Fjern brugerkataloger fr genskabning."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Genskab alle sikkerhedskopier"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Tilpasset genskabelse"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Hjlp"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Forrige"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Gem"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Opbyg sikkerhedskopien"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Genskab"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Nste"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10062,7 +10461,7 @@ msgstr ""
"Lav sikkerhedskopieringen fr genskablesen af den...\n"
" eller efterse at stien til gemning er korrekt."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10072,31 +10471,35 @@ msgstr ""
" din rapport blev ikke sendt\n"
" Konfigurr venligst sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Pakkeliste til installation"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "De flgende pakker vil blive installeret"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Fejl ved sending af fil via FTP.\n"
" Ret venligst din FTP-konfiguration."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Udvlg de data du vil genskabe..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Vlg medie for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Vlg data for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10104,75 +10507,75 @@ msgstr ""
"ingen konfigurationsfil fundet \n"
"klik p Vejleder eller Avanceret."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "Filer sendes via FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Sender filer..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Dataliste som skal medtages p cdrom."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Indtast hastighed p cd-brnder"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Indtast navnet p enheden for din cd-brnder (fx: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Markr om du nsker at medtage installeringsopstart p din cd."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Konfiguration med vejleder"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Lav sikkerhedskopiering nu"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10232,7 +10635,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10246,7 +10649,7 @@ msgstr ""
" stte myhostname eller mydomain i /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10322,7 +10725,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10371,13 +10774,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft ved DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10409,7 +10817,7 @@ msgstr ""
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10483,7 +10891,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10501,7 +10909,7 @@ msgstr ""
"fr den sendes til ftp-serveren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10523,7 +10931,7 @@ msgstr ""
"Det er vigtigt at vre forsigtig og ikke ndre sikkerhedskopieringens\n"
"datafiler i hnden.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10601,99 +11009,525 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Installationen af %s mislykkedes. Flgende fejl opstod:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Mandrake vrktj til fejlrapportering"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Frstegangshjlper"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Synkroniseringsvrktj"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Fritstende vrktjer"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msek"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Ekstern kontrol"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Programmeladministration"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Migrationsvrktj for MS Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Vejledere til konfiguration"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Applikation:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Pakke: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Kerne:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Udgave: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"For at indsende en fejlrapport klik da p rapport-knappen.\n"
+"Dette vil bne et vindue i en netlser p https://www.bugzilla.com\n"
+" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
+"vil blive overfrt til den server\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Ikke installeret"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Rapport"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Opkobler til vejleder for Bugzilla"
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Ingen netlser til stede! Installr venligts n"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netvrkskonfiguration (%d adaptorer)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Slet profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil der skal slettes:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Ny profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Navnet p profilen der skal oprettes (den nye profil oprettes som en \n"
+"kopi af den nuvrende) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Vrtsnavn: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetadgang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Type:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Grnseflade:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Vent venligst"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigurr Internetadgang..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN konfiguration"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drivprogram"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Grnseflade"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Konfigurr lokalnetvrk..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Klik her for at starte vejlederen ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Vejleder..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Anvend"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Vent venligst... Stter konfigurationen i anvendelse"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Tilsluttet"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ikke tilsluttet"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Tilslut..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Afbrud..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Advarsel, en anden internetforbindelse er blevet fundet, der mske bruger "
+"dit netvrk"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Du har ingen konfigurerede grnsesnit.\n"
+"Konfigurr disse frst ved at klikke p 'Konfigurr'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN konfiguration"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Opstartsprotokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Startede med opstart"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivr nu"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivr nu"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Dette grnsesnit er ikke blevet konfigureret endnu.\n"
+"Start konfigurationsvejlederen i hovedvinduet"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Du har ingen internet-opkobling.\n"
+"Opret n frst ved at klikke p 'Konfigurr'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfiguration af Internetforbindelse"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfiguration af Internetforbindelse"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Type af forbindelse"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametre"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet-kort"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "brug: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulnavn"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Strrelse"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "fremstilling af opstartsdiskette"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "standard"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy fejl: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "kerne-version"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Generelt"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspertomrde"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd valgfrie argumenter"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Tilfj et modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "tving"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "hvis ndvendigt"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "undg scsi-moduler"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "undg raid-moduler"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Fjern et modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Uddata"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Opbyg disken"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
+"Indst venligst noget."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kan ikke fork(): %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kan ikke lukke mkbootdisk ordentligt: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Sg efter installerede skrifttyper"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Fravlg installerede skrifttyper"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "fortolk alle skrifttyper"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "kunne ikke finde nogen skrifttyper"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "frdig"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "Kunne ikke finde nogen skrifttyper i dine monterede partitioner"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Genvlg korrekte skrifttyper"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "Kunne ikke finde nogen skrifttyper.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Sg efter skrifttyper i installeret liste"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopi af skrifttyper"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation af True Type-skrifttyper"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Vent venligst p ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Installation af True Type frdig"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konvertering af skrifttyper"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "opbyg type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript referencer"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "Konvertering af ttf-skrifttyper"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "Konvertering af pfm-skrifttyper"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Undertryk midlertidige filer"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Genstart XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Undertryk skrifttypefiler"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "genstart af xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10707,107 +11541,107 @@ msgstr ""
"-Du kan installere skrifttyperne p normal mde. I sjldne tilflde kan "
"fejlbehftede skrifttyper f din X-server til at hnge."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Import af skrifttyper"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Hent skrifttyper fra Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Afinstallr skrifttyper"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Avancerede muligheder"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Liste over skrifttyper"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Vlg de programpakker som vil understtte skrifttyperne:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Generelle printere"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vlg skrifttypefilen eller -kataloget oh klik p 'Tilfj'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Installationsliste"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Klik her hvis du er sikker."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Her hvis ikke."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Fravalgte alt"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Valgte alt"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Fjern liste"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Begyndelsestester"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopir skrifttyper p dit system"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installr og konvertr skrifttyper"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Efterbehandling for installering"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Fjern skrifttyper p dit system"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Efterbehandling for afinstallering"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Desvrre, vi understtter kun 2.4-kerner."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Deling af internetforbindelse er slet til"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10819,31 +11653,31 @@ msgstr ""
"\n"
"Hvad nsker du at gre?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
-msgstr "de-aktivr"
+msgstr "deaktivr"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
-msgstr "trd af"
+msgstr "forkast"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "genkonfigurr"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Slr servere fra..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Deling af internetforbindelse er nu slet fra"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Deling af internetforbindelse er slet fra"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10854,19 +11688,19 @@ msgstr ""
"Den er de-aktiveret for nrvrende\n"
"Hvad nsker du at gre?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "aktivr"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Aktiverer servere..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Deling af internetforbindelse er nu slet til"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10882,21 +11716,21 @@ msgstr ""
"Bemrk: du skal bruge en dediceret netvrksadapter, for at lave et lokalt "
"netvrk (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Grnseflade %s (benytter modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Grnseflade %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ikke nogen netvrksadapter i dit system!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10904,11 +11738,11 @@ msgstr ""
"Ingen ethernet netvrksadapter er blevet fundet p dit system. Kr venligst "
"vrktjet til maskinel konfiguration."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netvrksgrnsesnit"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10923,17 +11757,17 @@ msgstr ""
"\n"
"Jeg skal til at stte dit lokalnet p med den adapter."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Vlg hvilken netvrksadapter som skal forbindes til dit lokalnet."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Netvrksgrnsesnit allerede konfigureret"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10948,15 +11782,15 @@ msgstr ""
"\n"
"Du kan gre det i hnden, men du skal vide hvad du gr."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatisk rekonfiguration"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Vis aktuelle grnsesnitskonfiguration"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10973,7 +11807,7 @@ msgstr ""
"IP-attribut: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10994,32 +11828,32 @@ msgstr ""
"server for dig.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "C-klasse lokalnetvrk"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Denne) DHCP-servers IP-adresse"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Rekonfigurr grnsesnit og DHCP-server"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalnetvrket endte ikke med `.0', str af."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Brandmurkonfiguration fundet!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11027,20 +11861,20 @@ msgstr ""
"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
"muligvis lave manuelle rettelser efter installationen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurerer..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Konfigurerer skript, installerer programmel, starter servere..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemer med installation af %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11050,23 +11884,23 @@ msgstr ""
"Du kan nu dele din internetforbindelse med andre maskiner p dit lokale "
"netvrk, ved at bruge DHCP."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Indstilling er allerede gjort. men er de-aktiveret for nrvrende."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Indstilling er allerede gjort. og er for nrvrende aktiv."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Deling af Internetforbindelse har aldrig vret konfigureret."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Konfiguration af deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11081,216 +11915,6 @@ msgstr ""
"Klik p Konfigurr for at starte programmet til at dele din "
"internetforbindelse!"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netvrkskonfiguration (%d adaptorer)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Slet profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil der skal slettes:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Ny profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Navnet p profilen der skal oprettes (den nye profil oprettes som en \n"
-"kopi af den nuvrende) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Vrtsnavn: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetadgang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Grnseflade:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Vent venligst"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurr Internetadgang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN konfiguration"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drivprogram"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Grnseflade"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurr lokalnetvrk..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klik her for at starte vejlederen ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Vejleder..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Anvend"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Vent venligst... Stter konfigurationen i anvendelse"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Tilsluttet"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ikke tilsluttet"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Tilslut..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Afbrud..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Advarsel, en anden internetforbindelse er blevet fundet, der mske bruger "
-"dit netvrk"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen konfigurerede grnsesnit.\n"
-"Konfigurr disse frst ved at klikke p 'Konfigurr'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfiguration"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Opstartsprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Startede med opstart"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivr nu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivr nu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Dette grnsesnit er ikke blevet konfigureret endnu.\n"
-"Start konfigurationsvejlederen i hovedvinduet"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen internet-opkobling.\n"
-"Opret n frst ved at klikke p 'Konfigurr'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Type af forbindelse"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametre"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet-kort"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Indstiller sikkerhedsniveau"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolcenter"
@@ -11299,89 +11923,134 @@ msgstr "Kontrolcenter"
msgid "Choose the tool you want to use"
msgstr "Vlg det vrktj du nsker at benytte"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+"XawTV er ikke installeret!\n"
+"\n"
+"\n"
+"Hvis du har et tv-kort, men DrakX hverken har fundet det (intet bttv\n"
+"modul i \"/etc/modules\") eller installeret xawtv, s indsend venligst\n"
+"resultaterne af \"lspcidrake -v -f\" til \"install\\@mandrakesoft.com\"\n"
+"med emnet \"undetected TV card\".\n"
+"\n"
+"\n"
+"Du kan installere det ved at indtaste \"urpmi xawtv\" som root, p en "
+"kommandolinje."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (kabel-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Kina (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "Kina (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "Japan (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "steuropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Frankrig [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irland"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Vesteuropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australien"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "New Zealand"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Sydafrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Indtast din tv-standard og land"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
-msgstr "TV-standard:"
+msgstr "Tv-standard:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Omrde:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Skanning for tv-kanaler i gang..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Skanner for tv-kanaler"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Der opstod en fejl ved skanninge efter tv-kanaler"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV er ikke installeret!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Hav det godt!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nu kan du kre xawtv (under X Window!)!\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Intet tv-kort genkendt!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11433,7 +12102,7 @@ msgstr "Kan ikke starte levende opgradering!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "ndringen er fortaget, men for at vre effektiv skal du logge ud"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11481,13 +12150,9 @@ msgstr "/_Indstillinger"
msgid "/Options/Test"
msgstr "/Indstillinger/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hjlp"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Hjlp/_Om"
+msgstr "/Hjlp/_Om..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11545,7 +12210,7 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Indhold af filen"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Post og SMS pmindelse"
@@ -11554,11 +12219,11 @@ msgstr "Post og SMS pmindelse"
msgid "please wait, parsing file: %s"
msgstr "vent venligst, fortolker filen: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Post og SMS pmindelseskonfiguration"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11568,64 +12233,95 @@ msgstr ""
"\n"
"Her vil du kunne opstte pmindelsessystemet\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domnenavn"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS-server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix postserver, Inn nyhedsserver"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Start server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Tjenester"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer-server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Opstning af tjenester"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Du vil modtage en advarsel hvis en af de valgte tjenester ikke lngere krer"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "indls opstning"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Du vil modtage en advarsel hvis belastningen er hjere end denne vrdi"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "advarsels-konfiguration"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Konfigurerer mden systemet vil advare dig p"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Gem som..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Vlg muse-type."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "ingen seriel_usb fundet\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulering af tredje knap?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Lser printerdata ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Sger efter enheder..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11673,9 +12369,23 @@ msgstr ""
"Din %s-skanner er blevet konfigureret.\n"
"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik iprogrammenuen."
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Nogen enheder i maskinelklassen '%s' blev tilfjet:\n"
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
-msgstr "Brandmurskonfiguration"
+msgstr "Konfiguration af brandmur"
#: ../../standalone/tinyfirewall_.c:44
msgid "Firewalling configuration"
@@ -12075,10 +12785,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedie - Lyd"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vrktjer"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentation"
@@ -12183,10 +12889,6 @@ msgstr ""
"til at browse p nettet"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arkivering, emulering, overvgning"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Personlig konomi"
@@ -12232,51 +12934,304 @@ msgstr "Multimedie - CD-brnding"
msgid "Scientific Workstation"
msgstr "Videnskabelig arbejdsstation"
-#~ msgid "About"
-#~ msgstr "Om"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck afsluttet med fejlkode %d eller signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Grafikkort identifikation: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Vlg server-indstillinger"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Skrm ikke konfigureret"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafikkort er endnu ikke konfigureret"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Oplsninger ikke valgt endnu"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "prv at ndre nogle parametre"
+
+#~ msgid "An error occurred:"
+#~ msgstr "En fejl opstod:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Vender tilbage om %d sekunder"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Er dette den korrekte indstilling?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "En fejl opstod, prv at ndre nogle parametre"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86-server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Vis alle"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Forbereder konfiguration af X"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Hvad nsker du at gre?"
-#~ msgid " Help "
-#~ msgstr " Hjlp "
+#~ msgid "Change Monitor"
+#~ msgstr "Skift skrmtype"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Skift grafikkort"
+
+#~ msgid "Change Server options"
+#~ msgstr "Foretag ndringer i server-indstillinger"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Skift oplsning"
+
+#~ msgid "Show information"
+#~ msgstr "Vis information"
+
+#~ msgid "Test again"
+#~ msgstr "Test igen"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Beskrivelse af felterne:\n"
+#~ "\n"
+#~ "Bus: dette er den fysiske bus, som enheden er tilsluttet (fx: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identifikation: \n"
+#~ "- pci-enheder: dette viser producenten, enheden, underproducent og "
+#~ "underenhed PCI id'er\n"
+#~ "\n"
+#~ "Beskrivelse: dette felt beskriver enheden\n"
+#~ "\n"
+#~ "Placering p bussen: \n"
+#~ "- pci-enheder: dette giver PCI slottet, enheden og funktionen for dette "
+#~ "kort\n"
+#~ "- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
+#~ "- scsi-enheder: scsi-bussen og scsi enheds-id'er\n"
+#~ "\n"
+#~ "Medieklasse: maskinelenhedens klasse\n"
+#~ "\n"
+#~ "Modul: modulet i GNU/Linux-kernen som hndterer denne enhed\n"
+#~ "\n"
+#~ "Producent: Navnet p producenten af enheden\n"
#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or "
+#~ "an HP LaserJet 2200?"
#~ msgstr ""
-#~ "XawTV er ikke installeret ...\n"
-#~ "D br installere den.\n"
-#~ " Bare skriv \"urpmi xawtv\""
+#~ "Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 med skanner), en HP Photosmart P100 eller en HP "
+#~ "LaserJet 2200?"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid ""
+#~ "To know about the options available for the current printer read either "
+#~ "the list shown below or click on the \"Print option list\" button.%s\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Hvilke muligheder der er for den aktuelle printer kan du enten lse p "
+#~ "listen vist nedenfor, eller klikke p knappen 'liste med "
+#~ "printermuligheder'%s.\n"
+#~ "\n"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
+#~ "specify the scanner when you have more than one) from the command line or "
+#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
+#~ "using the GIMP, you can also scan by choosing the appropriate point in "
+#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" and \"man sane-"
+#~ "hp\" on the command line to get more information.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
#~ msgstr ""
-#~ "Kan ikke f fat i kernemoduler svarende til din kerne (fil %s mangler)"
+#~ "Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne "
+#~ "skanne. Nu kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at "
+#~ "angive skanneren hvis du har mere end n) fra kommandolinjen eller med "
+#~ "den grafiske grnseflade 'xscanimage' eller 'xsane'. Hvis du bruger GIMP "
+#~ "kan du ogs skanne ved at vlge det passende punkt i menuen 'Filer/Hent'. "
+#~ "Brug ogs 'man scanimage' og 'man sane-hp' p kommandolinjen for at f "
+#~ "mere information\n"
+#~ "\n"
+#~ "Brug ikke \"scannerdrake\" p denne enhed!"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne "
+#~ "skanne. Nu kan du skanne med 'ptal-hp %s scan ...' fra kommandolinjen. "
+#~ "Skanning via en grafisk grnseflade eller fra GIMP er endnu ikke "
+#~ "understttet for din enhed. Du kan finde mere information i filen \"/usr/"
+#~ "share/doc/hpoj-0.8/ptal-hp-scan.html\" p dit system. Hvis du har en HP "
+#~ "LaserJet 1100 eller 1200 kan du kun skanne nr du har skannermuligheden "
+#~ "installeret p udstyret.\n"
+#~ "\n"
+#~ "Brug ikke \"scannerdrake\" p denne enhed!"
+
+#~ msgid ""
+#~ "Please enter the directory to\n"
+#~ " put the backup on this host."
+#~ msgstr ""
+#~ "Indtast kataloget hvori\n"
+#~ " sikkerhedskopien skal lgges p denne maskine."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Brug diskdrev med dmon"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Brug FTP med dmon"
+
+#~ msgid "Please be sure that the cron daemon is included in your services."
+#~ msgstr "Forsikr dig gerne at cron-dmonen er med i dine tjenester."
+
+#~ msgid "Package List to Install"
+#~ msgstr "Pakkeliste til installation"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
-#~ msgid "None"
-#~ msgstr "Ingenting"
+#~ msgid "Setting security level"
+#~ msgstr "Indstiller sikkerhedsniveau"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Vlg en forvalgt printer!"
+#~ msgid "Graphics card"
+#~ msgstr "Grafikkort"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Brug/Opfrisk printerliste"
+#~ msgid "Select a graphics card"
+#~ msgstr "Vlg et grafikkort"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Du kan nu give dens parametre til modul %s."
+#~ msgid "Choose a X driver"
+#~ msgstr "Vlg en X-driver"
-#~ msgid "mount failed"
-#~ msgstr "montering mislykkedes"
+#~ msgid "X driver"
+#~ msgstr "X-driver"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Advarsel: afprvning af dette grafikkort kan f din maskine til at lse"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard-VGA, 640x480 ved 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super-VGA, 800x600 ved 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hjfrekvens SVGA, 1024x768 ved 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skrm, som kan klare 1600x1200 ved 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skrm, som kan klare 1600x1200 ved 76 Hz"
#~ msgid ""
-#~ "The characters of your language can't be displayed in console,\n"
-#~ "so the messages will be displayed in english during installation"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Den totale strrelse af de grupper du har valg er cirka %d Mb.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Tegnene i dit sprog kan ikke vises i konsollen\n"
-#~ "s beskederne vil blive vist p engelsk under installationen"
+#~ "Hvis du nsker at installere mindre end denne strrelse,\n"
+#~ "s vlg procentdelen af pakker som du vil installere.\n"
+#~ "\n"
+#~ "En lav procentdel vil kun installere de vigtigste pakker;\n"
+#~ "en procentdel p 100%% vil installere alle valgte pakker."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Du har kun plads p din disk til %d%% af disse pakker.\n"
+#~ "\n"
+#~ "Hvis du nsker at installere mindre end denne strrelse,\n"
+#~ "s vlg procentdelen af pakker som du vil installere.\n"
+#~ "En lav procentdel vil kun installere de vigtigste pakker;\n"
+#~ "en procentdel p %d%% vil installere s mange pakker som muligt."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Du har mulighed for at vlge dem mere prcist i nste installationstrin"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procentandel pakker til installation"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Vlg sikkerhedniveau"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 9629e8953..fa927b580 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -1,38 +1,67 @@
-# german translation of DrakX (cooker/gi/perl-install/share/po/de.po).
-# Copyright (C) 1999,2000,2001 MandrakeSoft.
-# Dr. Hinrich Göhlmann <hgoehlmann@gmx.de>, 1999,2000
-# Stefan Siegel <siegel@linux-mandrake.com>, 1999,2000,2001,2002
-# Daniel Haischt <daniel.haischt@student.fh-reutlingen.de>, 2000
-# Peer Dunker <peer46@gmx.net>, 2001
+# german transltion of drakflopy
+# Copyright (C) 2000, 2001 MandrakeSoft S.A.
+# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001.
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-10 11:56+0100\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-20 17:48+0200\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
-"Language-Team: German <cooker-i18n@linux-mandrake.com>\n"
+"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Alle Karten getrennt konfigurieren"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama Erweiterung verwenden"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Nur Karte „%s“ (%s) konfigurieren"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB oder mehr"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Wählen Sie einen X Server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X Server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Mehrkarten-Einstellung"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,41 +69,44 @@ msgstr ""
"Ihr System erlaubt die Verwendung einer Mehrkarten Konfiguration.\n"
"Was wollen Sie tun?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikkarte"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Wählen Sie Ihre Grafikkarte"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfigurieren"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Wählen Sie einen X Server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X Server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Alle Karten getrennt konfigurieren"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Wählen Sie einen X Treiber"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama Erweiterung verwenden"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X Treiber"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Nur Karte „%s“ (%s) konfigurieren"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,33 +116,17 @@ msgstr ""
"XFree %s. Ihre Karte wird auch von XFree %s unterstützt, wodurch Sie \n"
"bessere 2D-Unterstützung erhalten können."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
-"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -123,31 +139,59 @@ msgstr ""
"XFree %s unterstützt, wodurch Sie bessere 2D-Unterstützung erhalten \n"
"können."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
+"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
+"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Installationsbildschirmtreiber)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurieren"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Wählen Sie die Einstellungen für den Server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Die Änderungen beibehalten?\n"
+"Momentan wäre dies:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Wählen Sie Ihren Monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generisch"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Rückgängig"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,516 +212,328 @@ msgstr ""
"könnten. Im Zweifelsfall wählen Sie bitte eine konservativere \n"
"Einstellung."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontale Wiederholfrequenz"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikale Wiederholfrequenz"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ihr Monitor ist nicht konfiguriert"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ihre Grafikkarte ist noch nicht konfiguriert"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Die Auflösungen wurden noch nicht ausgewählt"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Möchten Sie die vorgenommenen Einstellungen prüfen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Prüfen der Einstellungen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 Farben (8 Bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"Versuchen Sie bitte, einige Einstellungen zu ändern"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.000 Farben (15 Bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ein Fehler ist aufgetreten:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.000 Farben (16 Bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Verlassen in %d Sekunden"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 Millionen Farben (24 Bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ist dies richtig?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 Milliarden Farben (32 Bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr ""
-"Ein Fehler ist aufgetreten. Versuchen Sie bitte, einige Parameter zu ändern"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Auflösungen"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Auflösung"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Wählen Sie bitte Auflösung und Farbtiefe"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafikkarte: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 Server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mehr"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr " Abbruch "
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Experten-Modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Möchten Sie die vorgenommenen Einstellungen prüfen?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Auflösungen"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Prüfen der Einstellungen"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastaturtyp: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Maustyp: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Mausschnittstelle: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor Horiz. Frequenz: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor Vert. Frequenz: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafikkarte: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafikkartenidentifikation: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafikkartenspeicher: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Farbtiefe: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Auflösung: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 Server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 Treiber: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window Konfiguration vorbereiten"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Was wollen Sie machen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitor ändern"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Grafikkarte ändern"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Server Einstellungen ändern"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Auflösung ändern"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Informationen anzeigen"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Nochmals testen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlassen"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Die Änderungen beibehalten?\n"
-"Momentan wäre dies:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X zur Startzeit"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ich kann GNU/Linux so einrichten, dass bei jedem Systemstart\n"
"automatisch die grafische Oberfläche (= der X Server) aktiviert wird.\n"
"Wollen Sie, dass X nach jedem Neustart direkt zur Verfügung steht?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-"Bitte loggen Sie sich erneut in %s ein, \n"
-"um die Änderungen wirksam werden zu lassen."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Bitte loggen Sie sich aus, und drücken Sie Ctrl-Alt-Rücktaste"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 Farben (8 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.000 Farben (15 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.000 Farben (16 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 Millionen Farben (24 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 Milliarden Farben (32 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB oder mehr"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640×480 bei 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800×600 bei 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024×768 bei 87 Hz, interlaced (kein 800×600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024×768 bei 87 Hz, interlaced und 800×600 bei 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800×600 bei 60 Hz und 640×480 bei 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024×768 bei 60 Hz und 800×600 bei 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hochfrequenz SVGA, 1024×768 bei 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ihr Monitor kann 1600×1200 bei 70 Hz darstellen"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ihr Monitor kann 1600×1200 bei 76 Hz darstellen"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Erster Sektor der Boot-Partition"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Installation"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Betriebssystemstarter installiert werden?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/Grub Installation"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO mit Textmenü"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO mit grafischem Menü"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Boot von DOS/Windows aus (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Betriebssystemstarters"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Zu verwendender Betriebssystemstarter"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installation des Betriebssystemstarters"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot Gerät"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (funktioniert nicht mit alten BIOS Versionen)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video Modus"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Passwort"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Gebrauch der Kommandozeilen-Parameter einschränken"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "Einschränken"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Die Partition /tmp bei jedem Systemstart säubern"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Geben Sie, falls nötig, die genaue RAM Größe an (%d MB gefunden)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Mehrere Profile einschalten"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Geben Sie die RAM Größe in MB an"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
"Angabe eines Passworts wirkungslos"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht überein"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init Nachricht"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware Verzögerung"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "BS-Startverzögerung für den Kern"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "BS-Start von CD erlauben"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Open Firmware Start erlauben"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Standard BS"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -692,83 +548,83 @@ msgstr ""
"\n"
"Von welchem Verzeichnis wollen Sie starten?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Hinzufügen"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fertig"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ändern"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Anderes Betriebssystem (SunOS ...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Anderes Betriebssystem (MacOS ...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Anderes Betriebssystem (Windows ...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kern"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Verzeichnisbaumwurzel"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Übergeben"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Init-RamDisk"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Schreiben/Lesen"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabelle"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Unsicher"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Identifikator"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Standard"
@@ -800,53 +656,77 @@ msgstr "Sie müssen die Verzeichnisbaumwurzel festlegen"
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Schnittstelle(n) %s %s gefunden"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Verfügen Sie über weitere?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Verfügen Sie über %s Schnittstellen?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nein"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Hardware Informationen anzeigen"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation des Treibers für die Karte %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(Modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Sie müssen nun die Optionen für Modul %s angeben.\n"
+"Bedenken Sie, dass Adressen alle mit „0x“ beginnen müssen, etwa „0x300“"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sie müssen nun die Optionen für Modul %s angeben.\n"
+"Optionen haben die Form „name=wert name2=wert2“.\n"
+"Beispielsweise: „io=0x300 irq=7“"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modul-Optionen:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,39 +744,15 @@ msgstr ""
"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
"jedoch keine Hardwareschäden nach sich ziehen sollte)"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatische Erkennung"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Optionen angeben"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sie müssen nun die Optionen für Modul %s angeben.\n"
-"Bedenken Sie, dass Adressen alle mit „0x“ beginnen müssen, etwa „0x300“"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sie müssen nun die Optionen für Modul %s angeben.\n"
-"Optionen haben die Form „name=wert name2=wert2“.\n"
-"Beispielsweise: „io=0x300 irq=7“"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul-Optionen:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -905,51 +761,56 @@ msgstr ""
"Laden von Modul %s schlug Fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Das Benutzerkennzeichen sollte nur aus Kleinbuchstaben, Ziffern, \n"
"„-“ und „_“ bestehen"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Dieses Benutzerkennzeichen existiert bereits"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Benutzer hinzufügen"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -958,32 +819,32 @@ msgstr ""
"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Benutzername"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Benutzerkennzeichen"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Symbol"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -992,60 +853,60 @@ msgstr ""
"ein Benutzer angemeldet wird.\n"
"Wollen Sie davon Gebrauch machen?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Bitte wählen Sie die zu verwendende Sprache."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Sie können andere Sprachen auswählen, die nach der Installation zur "
"Verfügung stehen."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Kein Teilen"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Sie können die Dateien mittels Samba oder NFS anbieten. Welche Variante "
"wollen Sie?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1058,31 +919,11 @@ msgstr ""
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
"vornehmen.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Abbruch"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Userdrake starten"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1091,31 +932,31 @@ msgstr ""
"Sie können UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
"aufzunehmen."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Schwach"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hoch"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Höher"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1126,7 +967,7 @@ msgstr ""
"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
"da Angreifer mangels Passwort an Ihre Daten gelangen können!"
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1134,7 +975,7 @@ msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1142,7 +983,7 @@ msgstr ""
"Das ist die Standard-Sicherheitsebene für Rechner, mit Internetzugang \n"
"als Klient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1150,13 +991,14 @@ msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgeführt."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Mit dieser Sicherheitsebene wird es möglich, das System als einen \n"
"Server zu verwenden.\n"
@@ -1166,38 +1008,38 @@ msgstr ""
"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
"verwenden sollte."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
"das System nun komplett geschlossen. Es ist die höchste Sicherheitsebene."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Wählen Sie eine Sicherheitsebene"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sicherheitsebene"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "„libsafe“ bei Servern verwenden"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schützt."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1221,52 +1063,52 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Willkommen zum Betriebssystem-Starter GRUB!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Zum Starten des BS drcken Sie <Return>. Mit <e> k”nnen Sie das"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "In %d Sekunden wird das gew„hlte BS automatisch gestartet."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in „/boot“"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Arbeitsoberfläche"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start-Menü"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1281,15 +1123,19 @@ msgstr "Es steht noch keine Hilfe zur Verfügung.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datei"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Datei/_Beenden"
+msgstr "/Datei/B_eenden"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1324,14 +1170,14 @@ msgstr "Yaboot Modus"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
"Wählen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurieren"
@@ -1341,7 +1187,7 @@ msgid "System mode"
msgstr "System-Modus"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "X-Window nach dem Hochfahren automatisch starten "
#: ../../bootlook.pm_.c:148
@@ -1352,16 +1198,18 @@ msgstr "Nein ich will kein Autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser Oberfläche"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr " Ok "
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1408,7 +1256,7 @@ msgstr ""
msgid "Screenshots will be available after install in %s"
msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankreich"
@@ -1416,7 +1264,7 @@ msgstr "Frankreich"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgien"
@@ -1440,11 +1288,12 @@ msgstr "Norwegen"
msgid "Sweden"
msgstr "Schweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italien"
@@ -1452,7 +1301,7 @@ msgstr "Italien"
msgid "Austria"
msgstr "Östereich"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"
@@ -1460,8 +1309,8 @@ msgstr "Vereinigte Staaten von Amerika"
msgid "Please make a backup of your data first"
msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lesen Sie bitte aufmerksam!"
@@ -1474,11 +1323,12 @@ msgstr ""
"Wenn Sie aboot verwenden wollen, müssen Sie ausreichend Platz am Anfang \n"
"der Platte lassen (2048 Sektoren reichen aus)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fehler"
@@ -1486,11 +1336,11 @@ msgstr "Fehler"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Wählen Sie ein Aktion aus"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1502,77 +1352,77 @@ msgstr ""
"Ich rate Ihnen, diese Partition erst zu verkleinern\n"
"(Wählen Sie sie an und drücken Sie dann „Größe verändern“)"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Bitte klicken Sie auf eine Partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Details"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalisierendes FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Auslagerung"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Leer"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Andere"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Erzeugen"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Typ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Verwenden Sie stattdessen „%s“"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Löschen"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Verwenden Sie erst „umount“"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1580,67 +1430,72 @@ msgstr ""
"Nach Änderung des Partitionstyps von %s, werden sämtliche Daten darauf "
"gelöscht"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Wählen Sie eine Partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Wählen Sie eine andere Partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Verlassen"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "In den Experten-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "In den Normal-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Rückgängig"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Beenden ohne speichern"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Beenden ohne die Partitionstabelle zu speichern?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Möchten Sie die vorgenommenen Änderungen in „/etc/fstab“ speichern?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automatisches Erstellen"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Alles löschen"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mehr"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Festplatten-Informationen"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle Primärpartitionen sind in Gebrauch"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ich kann keinen weiteren Partitionen hinzufügen"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1648,31 +1503,31 @@ msgstr ""
"Um mehr Partitionen einrichten zu können, müssen Sie zunächst eine Partition "
"löschen und anschließend eine erweiterte Partition erzeugen"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Partitionstabelle schreiben"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Partitionstabelle retten"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Partitionstabelle neu laden"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Wechselmedien automatisch Einhängen"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Datei auswählen"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1680,11 +1535,11 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe Größe\n"
"Soll trotzdem fortgefahren werden?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Warnung"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1692,122 +1547,129 @@ msgstr ""
"Legen Sie eine Diskette in das Laufwerk\n"
"Alle Daten auf dieser Diskette werden gelöscht!"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Ich Versuche, die Partitionstabelle zu retten"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Ausführliche Informationen"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Einhängpunkt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optionen"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Größe verändern"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Bewegen"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatieren"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Einhängen"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Zum RAID hinzufügen"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Zum LVM hinzufügen"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Aushängen"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Löschen aus dem RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Löschen aus dem LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAID modifizieren"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Als Loopback verwenden"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Erzeuge eine neue Partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Anfangssektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Größe in MB:"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Dateisystemtyp: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Einhängpunkt: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Einstellung: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Die Loopback-Datei entfernen?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Partitionstyp ändern"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Welches Dateisystem wollen Sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Konvertiere ext2 zu ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Wo wollen Sie die Loopback-Datei %s einhängen?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Wo wollen Sie das Gerät %s einhängen?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1815,130 +1677,135 @@ msgstr ""
"Ich kann diesen Einhängpunkt nicht zurücksetzen, da diese Partition als \n"
"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Errechne die Grenzen des FAT Dateisystems"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Neuberechnen der Größe"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Die Größe dieser Partition kann ich nicht ändern"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Sie sollten ein Backup sämtlicher Daten dieser Partition erstellen"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Durch Veränderung der Partitionsgröße von %s, gehen sämtliche Daten darauf "
"verloren"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Wählen Sie die neue Größe"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Neue Größe in MB:"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Zu welcher Platte wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Zu welchem Sektor wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "wechsele"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Bewege Partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Wählen Sie einen vorhandenen RAID"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "Neu"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Wählen Sie einen vorhandenen LVM"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM Name?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Name der Loopback-Datei: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dateinamen angeben"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Diese Datei wird bereits von einer anderen Loopback-Verknüpfung verwendet, "
"wählen Sie eine andere Datei."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr ""
"Es existiert bereits eine Datei mit diesem Namen. Soll ich sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Einhäng-Optionen"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Verschiedene"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "Gerät"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "Level"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "Blockgröße"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vorsicht: Diese Aktion ist gefährlich."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Welcher Partitionstyp?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1951,7 +1818,7 @@ msgstr ""
"verwenden \n"
"LILO nicht, dann benötigen Sie keine „/boot“ Partition."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1964,7 +1831,7 @@ msgstr ""
"Betriebssystemstarter einsetzen wollen, vergessen Sie bitte nicht, eine „/"
"boot“ Partition anzulegen!"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1976,131 +1843,131 @@ msgstr ""
"„/boot“-Partition arbeiten. Sie sollten also daran denken, eine solche \n"
"Partition zu erstellen."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die Partitionstabelle der Platte „%s“ wird gespeichert!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sie müssen Ihren Rechner neu starten, damit die Veränderungen wirksam werden"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nach Formatieren der Partition %s, werden sämtliche Daten darauf gelöscht"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiere"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiere Loopback-Datei %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiere Partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Dateien verstecken"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Das Verzeichnis „%s“ enthält bereits Daten\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiere: %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Entferne: %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "Die Partition %s heißt nun %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Gerät: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Typ:"
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Name: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Anfang: Sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Größe: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s Sektoren"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Zylinder %d bis %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nicht formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Eingehängt\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2109,7 +1976,7 @@ msgstr ""
"Loopback Datei(en):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2117,27 +1984,27 @@ msgstr ""
"Partition wird standardmäßig geladen\n"
" (für MS-DOS Boot, nicht jedoch für LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Blockgröße %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Dateiname des Loopbacks: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2150,7 +2017,7 @@ msgstr ""
"Partition handelt. Sie sollten sie\n"
"daher unverändert lassen.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2163,63 +2030,63 @@ msgstr ""
"Betriebssysteme auf dem selben\n"
"Rechner.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Größe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s Zylinder, %s Köpfe, %s Sektoren\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabellen Typ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "auf Bus %d ID %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Dateisystem-Schlüssel"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Wählen Sie Ihren Dateisystem-Schlüssel (Passwort)"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Die Passwörter stimmen nicht überein"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Schlüssel"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Schlüssel (erneut)"
@@ -2228,39 +2095,67 @@ msgid "Change type"
msgstr "Typ ändern"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Bitte wählen Sie ein Medium"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Authentifizierung"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Benutzerkennzeichen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Benutzerkennzeichen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Server suchen"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug Fehl"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr ""
"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
"formatieren."
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-"Der Dateisystemcheck (fsck) schlug fehl mit dem Rückgabewert %d oder Signal %"
-"d."
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim Aushängen von %s: %s"
@@ -2277,75 +2172,329 @@ msgstr "mit „/usr“"
msgid "server"
msgstr "Server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Sie können JFS nicht für Partitionen verwenden, die kleiner als 16MB sind!"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Sie können ReiserFS nicht für Partitionen verwenden, die kleiner als 32MB "
"sind!"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Einhängpunkte müssen mit einem / beginnen."
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem Einhängpunkt %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Sie können kein logisches LVM Medium für den Einhängpunkt %s verwenden."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss in der Verzeichnisbaumwurzel bleiben"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Sie benötigen ein echtes GNU/Linux Dateisystem (Ext2, ReiserFS) für \n"
"diesen Einhängpunkt.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Sie können kein verschlüsseltes Medium für den Einhängpunkt %s verwenden."
# ../../diskdrak1
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nicht genug freier Platz, damit ich selbst Partition anlegen kann."
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nichts zu tun."
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ein Fehler ist aufgetreten - es wurden keine gültigen Geräte gefunden, auf "
"denen neue Dateisysteme erstellt werden können. Bitte überprüfen Sie Ihre "
"Hardware(-Konfiguration) auf mögliche Fehler und falsche Einstellungen."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Sie haben keine Partitionen!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Autoerkennung durchführen"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generisch"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Karten Mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Einstellungen laden"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Typ ändern"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlassen"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hilfe"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Hilfe"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Hilfe/_Über ..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Maus"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Karten Mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr " Abbruch "
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Maus"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beschreibung"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Authentifizierung"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Datei auswählen"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway Gerät"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 Tasten"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Festplatten suchen"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Hardware Informationen anzeigen"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Informationen anzeigen"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Maus konfigurieren"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "an Prot %s gefunden"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d Sekunden"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drucker „%s“ entfernen ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Automatische Erkennung"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2361,7 +2510,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2400,7 +2549,7 @@ msgstr ""
"können Sie ihn hier nach Belieben verändern. Dann geben Sie Ihrem Konto ein\n"
"Passwort. Für ein Benutzerkennzeichen ist dieses zwar nicht von so\n"
"herausragender Bedeutung wie das für »root«, doch Sie sollten trotzdem\n"
-"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten...\n"
+"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten ...\n"
"\n"
"Klicken Sie auf „Benutzer akzeptieren“, um das Kennzeichen zu erstellen.\n"
"Anschließend können Sie direkt weitere Benutzer hinzufügen. Wenn Sie allen\n"
@@ -2505,9 +2654,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2701,7 +2849,7 @@ msgstr ""
"schalten Sie jedoch zuvor, falls nötig, die dafür benötigten Geräte ein,\n"
"damit „DrakX“ sie automatisch erkennen kann.\n"
"\n"
-"Mandrake Linux bietet Ihnen die Möglichkeit, Ihre Internet-Verbindung\n"
+"Mandrake Linux bietet Ihnen die Möglichkeit, Ihre Internet-Ver­bindung\n"
"bereits während der Installation zu konfigurieren. Zur Auswahl stehen\n"
"folgende Verbindungsarten: Herkömmliches Modem, ISDN Modem, ADSL\n"
"Verbindung, Kabelmodem oder eine einfache LAN Verbindung (Ethernet).\n"
@@ -2778,7 +2926,7 @@ msgstr ""
"GNU/Linux arbeitet mit GMT (Greenwich Mean Time) und übersetzt diese anhand\n"
"der Zeitzone in Ihre lokale Zeit.\n"
"\n"
-"Da MicrosoftWindows(TM) nicht sinnvoll mit GMT umgehen kann, müssen Sie\n"
+"Da Microsoft Windows(TM) nicht sinnvoll mit GMT umgehen kann, müssen Sie\n"
"„Nein“ wählen, falls Sie auch ein Betriebssystem aus dem Hause Microsoft\n"
"auf Ihrem Rechner „beherbergen“\n"
"\n"
@@ -2847,7 +2995,7 @@ msgid ""
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
"Es kann Ihnen passieren, dass der erste Versuch noch nicht korrekt ist (Der\n"
-"Schirm ist zu klein, liegt zu weit rechts oder links...). Daher werden Sie\n"
+"Schirm ist zu klein, liegt zu weit rechts oder links ...). Daher werden Sie\n"
"selbst dann mit der Frage konfrontiert, wenn der „DrakX“-Server sich\n"
"starten lies, „DrakX“ also davon ausgehen könnte, dass alles in Ordnung\n"
"ist. Sie erhalten daher eine Liste von gültigen Modi, aus denen Sie\n"
@@ -2879,7 +3027,7 @@ msgstr ""
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2891,9 +3039,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2903,11 +3050,11 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
-"Die Mandrake LinuxCD-ROM hat einen eingebauten Rettungsmodus. Sie erreichen\n"
-"ihn durch Starten von CD-ROM, und Drücken von »F1« bei Bootbeginn. Geben\n"
-"Sie dann »rescue« an der Eingabeaufforderung ein. Falls Ihr Rechner nicht\n"
-"von CD-ROM starten kann, sollten Sie diesen Punkt unbedingt aus zwei\n"
-"Gründen abarbeiten:\n"
+"Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
+"erreichen ihn durch Starten von CD-ROM, und Drücken von »F1« bei\n"
+"Bootbeginn. Geben Sie dann »rescue« an der Eingabeaufforderung ein. Falls\n"
+"Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
+"unbedingt aus zwei Gründen abarbeiten:\n"
"\n"
" * Wenn „DrakX“ den Betriebssystemstarter installiert, schreibt es den\n"
"Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
@@ -2968,21 +3115,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2998,9 +3144,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Sie müssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrake Linux\n"
"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
@@ -3035,10 +3181,9 @@ msgstr ""
"Festplatte(n) automatisch partitioniert werden; Sie müssen sich also um\n"
"nichts weiter kümmern.(*)\n"
"\n"
-" * „Verwende existierende“: Der Assistent hat eine oder mehrere "
-"existierende\n"
-"Linux Partitionen auf Ihrer Platte gefunden. Wählen Sie diese Schaltfläche,\n"
-"falls Sie sie behalten wollen.\n"
+" * „Verwende existierende“: Der Assistent hat eine oder mehrere\n"
+"existierende Linux Partitionen auf Ihrer Platte gefunden. Wählen Sie diese\n"
+"Schaltfläche, falls Sie sie behalten wollen.\n"
"\n"
" * „Komplette Platte löschen“: Falls Sie alle Daten Ihrer Platte verlieren,\n"
"und sie durch Ihr neues Mandrake Linux System ersetzen wollen, wählen Sie\n"
@@ -3046,17 +3191,17 @@ msgstr ""
"gemacht werden kann.\n"
"\n"
" * „Freien Platz der Windows Partition verwenden“: Falls der gesamte\n"
-"Plattenplatz aktuell für MicrosoftWindows(TM) verschwendet ist, müssen Sie\n"
+"Plattenplatz aktuell für Microsoft Windows(TM) verschwendet ist, müssen Sie\n"
"für Linux Platz schaffen. Um dies zu erreichen, können Sie entweder Ihre\n"
-"MicrosoftWindows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
+"Microsoft Windows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
"Platte löschen“ oder „Experten-Modus“) oder Ihre Windows Partition\n"
"verkleinern. Letzteres geht ohne Datenverlust. Sie sollten diese Variante\n"
"wählen, falls Sie beide Betriebssysteme (Windows und Mandrake Linux)\n"
"nebeneinander nutzen wollen.\n"
"\n"
-" Bevor Sie sich für diese Variante entscheiden, sei hier noch einmal "
-"betont,\n"
-"dass das bedeutet, Sie haben weniger Platz für Windows als momentan.\n"
+" Bevor Sie sich für diese Variante entscheiden, sei hier noch einmal\n"
+"betont, dass das bedeutet, Sie haben weniger Platz für Windows als\n"
+"momentan.\n"
"\n"
" * „Windows(TM) löschen“: Bei dieser Variante werden alle Windows\n"
"Partitionen gelöscht und die Platte(n) komplett neu partitioniert.\n"
@@ -3097,9 +3242,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3127,18 +3271,16 @@ msgstr ""
" Es gibt zwei verschiedene Alternativen, nachdem Sie diese Schaltfläche\n"
"aktiviert haben:\n"
"\n"
-" * „Erneut abspielen“: Diese Installation ist nur teilweise automatisch, "
-"da\n"
-"der Partitionierungsschritt (aber nur dieser!) immer noch interaktiv\n"
+" * „Erneut abspielen“: Diese Installation ist nur teilweise automatisch,\n"
+"da der Partitionierungsschritt (aber nur dieser!) immer noch interaktiv\n"
"vonstatten geht.\n"
"\n"
" * „Automatisiert“: Vollautomatische Installation: Die Festplatte wird\n"
"vollständig reorganisiert. Alle darauf vorhandenen Daten gehen verloren!\n"
"\n"
-" Diese Funktion ist besonders nützlich, wenn man eine Menge von "
-"identischer\n"
-"Rechner einrichten will. Weitere Informationen erhalten Sie auch auf der\n"
-"Seite Auto install\n"
+" Diese Funktion ist besonders nützlich, wenn man eine Menge von\n"
+"identischer Rechner einrichten will. Weitere Informationen erhalten Sie\n"
+"auch auf der Seite Auto install\n"
"\n"
" * „Paketauswahl speichern“: (*) Sie speichern damit die Paketauswahl, die\n"
"Sie vorher getroffen haben. Wenn Sie später eine erneute Installation\n"
@@ -3317,38 +3459,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3473,7 +3609,7 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Es wurde mehr als nur eine MicrosoftWindows(TM) Partition auf Ihrer Platte\n"
+"Es wurde mehr als nur eine Microsoft Windows(TM) Partition auf Ihrer Platte\n"
"gefunden. Bitte wählen Sie welche Sie verkleinern wollen, um Ihr neues\n"
"Betriebssystem Mandrake Linux installieren zu können.\n"
"\n"
@@ -3522,11 +3658,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3560,7 +3696,7 @@ msgstr ""
"Wählen Sie:\n"
"\n"
" * „Installieren“: Entfernt komplett ältere Versionen von Mandrake Linux,\n"
-"die noch installiert sind um genau zu sein können Sie je nach aktuellem\n"
+"die noch installiert sind - um genau zu sein können Sie je nach aktuellem\n"
"Inhalt Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
"unangetastet behalten.\n"
"\n"
@@ -3593,7 +3729,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3621,7 +3757,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3649,7 +3785,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3680,7 +3816,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3690,23 +3826,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3771,7 +3907,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3793,7 +3929,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3801,7 +3937,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3845,9 +3981,8 @@ msgstr ""
" * „LILO mit grafischem Menü“: Falls Sie „LILO“ mit seiner grafischen\n"
"Oberfläche bevorzugen.\n"
"\n"
-" * „LILO mit Textmenü“: Falls Sie „LILO“ mit Textmenü als Ihren "
-"Favoriten\n"
-"ansehen.\n"
+" * „LILO mit Textmenü“: Falls Sie „LILO“ mit Textmenü als Ihren\n"
+"Favoriten ansehen.\n"
"\n"
" * „Boot Gerät“: Normalerweise müssen Sie hier nichts ändern („/dev/hda“),\n"
"Sie könnten jedoch den Starter auch auf der zweiten Platte installieren,\n"
@@ -3863,7 +3998,7 @@ msgstr ""
"irgendwie Ihr Mandrake Linux-System zu starten, wenn Sie hier keinen\n"
"Betriebssystemstarter installieren (durch Auswahl von „Abbruch“). Stellen\n"
"Sie auch sicher, dass Sie wissen was Sie tun, wenn Sie hier Einstellungen\n"
-"verändern... !!\n"
+"verändern ... !!\n"
"\n"
"Durch wählen der Schaltfläche „Fortgeschritten“ erhalten Sie etliche\n"
"Optionen, die dem fortgeschrittenen Anwender vorbehalten bleiben.\n"
@@ -3873,7 +4008,7 @@ msgstr ""
"installierten Betriebssysteme starten lässt.\n"
"\n"
"Sollte sich auf Ihrem Rechner bereits ein anderes Betriebssystem befinden,\n"
-"so wird dieses sofern es erkannt wird automatisch zu dem Startmenü\n"
+"so wird dieses - sofern es erkannt wird - automatisch zu dem Startmenü\n"
"hinzugefügt. Hier können Sie noch einige Feineinstellungen für die\n"
"bestehenden Optionen vornehmen. Markieren Sie einen bestehenden Eintrag und\n"
"betätigen Sie die Schaltfläche „Ändern“, um ihn anzupassen oder zu löschen;\n"
@@ -3882,7 +4017,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3910,7 +4045,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3926,29 +4061,28 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3988,7 +4122,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -4013,15 +4147,15 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"„DrakX“ versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht „DrakX“ auch nach PCISCSI-Karten, die es kennt, um sie\n"
+"Anderem sucht „DrakX“ auch nach PCI SCSI-Karten, die es kennt, um sie\n"
"automatisch mit dem richtigen Treiber einzubinden.\n"
"\n"
-"Falls Sie über keinen SCSI Adapter verfügen, es sich um einen ISASCSI\n"
-"Adapter handelt oder um einen PCISCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
+"Falls Sie über keinen SCSI Adapter verfügen, es sich um einen ISA SCSI\n"
+"Adapter handelt oder um einen PCI SCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
"welcher Treiber funktioniert, werden Sie gebeten, „DrakX“ zu helfen.\n"
"\n"
"Ist in Ihrem Rechner kein SCSI Adapter, wählen Sie einfach „Nein“. Sollten\n"
@@ -4041,7 +4175,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4051,9 +4185,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4065,7 +4198,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4114,7 +4247,7 @@ msgstr ""
"klassische Apple-Mäuse von Hause aus mit 2 fehlenden Maustasten\n"
"ausgeliefert werden. Hier einige Beispiele:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4124,21 +4257,18 @@ msgstr ""
"ohne dass das Start-Gerät zur Verfügung steht oder um ein RamDisk Abbild\n"
"für den BS-Start in Notfällen zur Verfügung zu haben.\n"
"\n"
-" * „Größe der Init-RamDisk“: Standardmäßig ist eine RamDisk 4096 Bytes "
-"groß.\n"
-"Sollten Sie eine größere RamDisk benötigen, können Sie das mit diesem\n"
+" * „Größe der Init-RamDisk“: Standardmäßig ist eine RamDisk 4096 Bytes\n"
+"groß. Sollten Sie eine größere RamDisk benötigen, können Sie das mit diesem\n"
"Parameter einstellen.\n"
"\n"
-" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst "
-"im\n"
-"Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchführen zu\n"
-"können, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
+" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst\n"
+"im Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchführen\n"
+"zu können, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
"können Sie hier abstellen.\n"
"\n"
-" * „NoVideo“: Sollte sich die Apple Grafik-Hardware als extrem "
-"problematisch\n"
-"erweisen, können Sie diesen Parameter verwenden um im sog. „novideo“-Modus,\n"
-"also im FrameBuffer-Modus zu starten.\n"
+" * „NoVideo“: Sollte sich die Apple Grafik-Hardware als extrem\n"
+"problematisch erweisen, können Sie diesen Parameter verwenden um im sog.\n"
+"„novideo“-Modus, also im FrameBuffer-Modus zu starten.\n"
"\n"
" * „Standard“: Wählt diesen Eintrag als Standard Linux-Kern, den Sie durch\n"
"Drücken von [Enter] an der „Yaboot“ Eingabeaufforderung gestartet bekommen.\n"
@@ -4148,7 +4278,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4175,9 +4305,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4194,11 +4323,10 @@ msgstr ""
" * „Init Nachricht“: Ein Text, der vor der Eingabeaufforderung angezeigt\n"
"wird.\n"
"\n"
-" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum "
-"Starten\n"
-"Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in einem\n"
-"früheren Schritt bereits eine Boot-Partition angelegt haben, um diese Daten\n"
-"zu beherbergen.\n"
+" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum\n"
+"Starten Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in\n"
+"einem früheren Schritt bereits eine Boot-Partition angelegt haben, um diese\n"
+"Daten zu beherbergen.\n"
"\n"
" * „Open Firmware Verzögerung“: Im Gegensatz zu „LILO“, stehen mit „Yaboot“\n"
"zwei Verzögerungen zur Verfügung. Die erste Verzögerung wird in Sekunden\n"
@@ -4221,10 +4349,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4232,12 +4360,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4255,42 +4382,36 @@ msgstr ""
"Hier bekommen Sie verschiedene Parameter Ihres Systems angezeigt. Je nach\n"
"vorhandener Hardware sehen Sie hier (oder eben nicht) folgende Einträge:\n"
"\n"
-" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie, "
-"falls\n"
-"notwendig, die Schaltfläche.\n"
+" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie,\n"
+"falls notwendig, die Schaltfläche.\n"
"\n"
-" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen "
-"Sie\n"
-"die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
+" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen\n"
+"Sie die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
"\n"
-" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand der gewählten Sprache "
-"zu\n"
-"„erraten“. Es ist jedoch möglich, dass Sie sich nicht in dem Land befinden,\n"
-"das die vorgegebene Sprache erahnen lässt. In diesem Fall sollten Sie die\n"
-"Schaltfläche anwählen, um die Uhr entsprechend Ihrer lokalen Zeitzone zu\n"
-"setzen.\n"
+" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand der gewählten Sprache\n"
+"zu „erraten“. Es ist jedoch möglich, dass Sie sich nicht in dem Land\n"
+"befinden, das die vorgegebene Sprache erahnen lässt. In diesem Fall sollten\n"
+"Sie die Schaltfläche anwählen, um die Uhr entsprechend Ihrer lokalen\n"
+"Zeitzone zu setzen.\n"
"\n"
" * „Drucker“: Durch Anwahl der Schaltfläche „Kein Drucker“ starten Sie den\n"
"Druckerassistenten.\n"
"\n"
-" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, "
-"wird\n"
-"sie hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
-"möglich.\n"
+" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde,\n"
+"wird sie hier angezeigt. Es ist jedoch keine Änderung während der\n"
+"Installation möglich.\n"
"\n"
-" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird "
-"sie\n"
-"hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
+" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird\n"
+"sie hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
"möglich.\n"
"\n"
-" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde, "
-"wird\n"
-"sie hier angezeigt. Durch Anwahl der Schaltfläche können Sie die Parameter\n"
-"ändern."
+" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde,\n"
+"wird sie hier angezeigt. Durch Anwahl der Schaltfläche können Sie die\n"
+"Parameter ändern."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4302,7 +4423,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4320,7 +4441,7 @@ msgstr ""
"Wählen Sie „Abbruch“, um die vorhandenen Daten unangetastet zu lassen und\n"
"die Operation abzubrechen."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4332,12 +4453,12 @@ msgstr ""
"Installationsmedium übereinstimmt (Bitte erstellen Sie eine neue "
"Startdiskette). "
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Sie müssen auch %s formatieren."
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4362,22 +4483,22 @@ msgstr ""
"\n"
"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
"Ich kann kein Broadcast machen,\n"
"da keine NIS Domäne angegeben wurde"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Legen Sie eine leere, FAT formatierte Diskette in Laufwerk %s ein."
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Diese Diskette ist nich FAT formatiert"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4385,7 +4506,7 @@ msgstr ""
"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
"Installation bitte mit: „boot defcfg=floppy“"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"
@@ -4415,7 +4536,7 @@ msgstr "Sie benötigen eine Auslagerungspartition"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4423,59 +4544,59 @@ msgstr ""
"\n"
"Wollen Sie trotzdem fortfahren?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sie müssen eine FAT Partition in „/boot/efi“ eingehängt haben."
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Freien Platz verwenden"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nicht genug freier Platz, um die neue Partition anlegen zu können."
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Verwende existierende Partition(en)"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Auf der Windows Partition Loopbacks anlegen"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Auf welche Partition wollen Sie Linux4Win installieren?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Wählen Sie die Größen"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Größe der Verzeichnisbaumwurzel-Partition in MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Größe der Auslagerungspartition in MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Den freien Platz der Windows Partition verwenden"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Errechne die Grenzen des Windows Dateisystems"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4485,13 +4606,16 @@ msgstr ""
"Partition nicht arbeiten. Folgender Fehler trat auf:\n"
"%s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Ihre Windows-Partition ist zu sehr fragmentiert.\n"
"Starten Sie bitte erst „defrag“ unter Windows."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4512,59 +4636,59 @@ msgstr ""
"Sie sollten natürlich generell Sicherheitskopien Ihrer Daten angelegt\n"
"haben. Falls dies der Fall ist, können Sie mit OK fortfahren."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Wieviel Platz benötigen sie noch für Windows auf"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT Größenanpassung schlug Fehl: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Sie haben keine FAT Partition, deren Größe ich anpassen kann, bzw. die\n"
"ich als Loopback verwenden kann (möglicherweise haben Sie auch einfach\n"
"nur nichtmehr genügend freien Speicher)."
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Komplette Platte löschen"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Windows(TM) löschen"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sie haben mehr als eine Festplatte.\n"
"Auf welche soll GNU/Linux installiert werden?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SÄMTLICHE existierende Partitionen samt der derauf befindlichen Daten \n"
"auf Laufwerk %s gehen dabei verloren"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Benutzerdefinierte Partitionierung"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Fdisk verwenden"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4574,11 +4698,11 @@ msgstr ""
"Vergessen Sie nicht die Einstellungen mittels ,w` zu speichern, \n"
"sobald Sie fertig sind."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Sie haben nicht genug freien Platz auf Ihrer Windows Partition."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ich finde nicht genug Platz für die Installation."
@@ -4586,16 +4710,16 @@ msgstr "Ich finde nicht genug Platz für die Installation."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Der DrakX Partitionierungsassistent fand folgende Lösung:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Das Partitionieren schlug Fehl: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Netzwerkverbindung herstellen"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Netzwerkverbindung trennen"
@@ -4607,12 +4731,12 @@ msgstr ""
"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
"umgehen soll. Sie können fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Den Einhängpunkt %s kopieren"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4624,12 +4748,12 @@ msgstr ""
"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n"
"Mandrake/rpms/*.rpm“\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Kein Disketten-Laufwerk verfügbar"
@@ -4639,9 +4763,9 @@ msgstr "Kein Disketten-Laufwerk verfügbar"
msgid "Entering step `%s'\n"
msgstr "Beginn von Schritt „%s“\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4652,203 +4776,158 @@ msgstr ""
"Installationsstart und geben Sie „text“ an der Eingabeaufforderung \n"
"ein."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installationsart"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Bitte wählen Sie eine der folgenden Installationsklassen:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Die Gesamtgröße der zu installierenden Pakete beträgt etwa %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Falls Sie weniger als diese Menge installieren wollen, \n"
-"geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-"\n"
-"Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-"100%% installiert alle ausgewählten Pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sie haben nur Platz für %d%% der ausgewählten Pakete. \n"
-"\n"
-"Falls Sie weniger als diese Menge installieren wollen, \n"
-"geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-"Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-"%d%% installiert so viele Pakete wie möglich."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Im nächsten Schritt können Sie genauer auswählen"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prozent der zu installierenden Pakete"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Auswahl der Paketgruppen"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuelle Paketauswahl"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Gesamtgröße: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Ungültiges Paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Name: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Größe: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Wichtigkeit: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Sie können dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz "
"haben."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Die folgenden Pakete werden entfernt"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Sie können dieses Paket nicht auswählen/es aus der Auswahl entfernen."
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dieses Paket ist existenziell, sie können es nicht deselektieren"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
"Es ist bereits installiert!"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Dieses Paket muss aktualisiert werden.\n"
"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
"Es muss aktualisiert werden!"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Anzeige automatisch markierter Pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Laden von/Speichern auf Diskette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Erneuere Paket Auswahl"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimal-Installation"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Zu installierende Pakete auswählen"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installation wird durchgeführt"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Schätzung"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Verbleibende Zeit "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Bitte warten, bereite Installation vor"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d Pakete"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installation des Pakets %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Akzeptieren"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Zurückweisen"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4863,17 +4942,17 @@ msgstr ""
"dann drücken Sie OK.\n"
"Falls Sie sie nicht vorliegen haben, drücken Sie Abbruch."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
@@ -4948,11 +5027,11 @@ msgstr "Es ist ein Fehler aufgetreten"
msgid "Do you really want to leave the installation?"
msgstr "Möchten Sie die Installation wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lizenz"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4967,7 +5046,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -5291,109 +5370,113 @@ msgstr ""
"litige. Pour toute question relative au présent document, veuillez \n"
"contacter MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Hier die Liste aller Tastaturen"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Welche Installationsart wollen Sie durchführen?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installation/Aktualisierung"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Empfehlenswert"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experte"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aktualisierung"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Nur Pakete aktualisieren"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Bitte wählen Sie Ihren Maustyp."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Maus Port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihre Maus hängt."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Tastenemulation"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulation der 2. Taste"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulation der 3. Taste"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA Karten konfigurieren ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE konfigurieren"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Keine Partition verfügbar"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Durchsuchen der Partitionen, um die Einhängpunkte zu finden."
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Wählen Sie die Einhängpunkte"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5406,7 +5489,7 @@ msgstr ""
"\n"
"Sind Sie einverstanden, dass ich die problematischen Partitionen lösche?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5414,7 +5497,7 @@ msgstr ""
"DiskDrake ist nicht in der Lage, Ihre Partitionstabelle korrekt zu \n"
"interpretieren. Sie können fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5423,80 +5506,85 @@ msgstr ""
"Installation wird fortgesetzt, Sie müssen jedoch eine Start-Partition mit "
"DiskDrake erstellen."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
"Es wurde keine Verzeichnisbaumwurzel gefunden, die aktualisiert werden kann."
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Verzeichnisbaumwurzel"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Welche Partition ist Ihre Verzeichnisbaumwurzel?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sie müssen Ihren Rechner neu starten, um die Änderungen \n"
"der Partitionstabelle wirksam werden zu lassen."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Zu formatierende Partitionen auswählen"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Soll ich nach defekten Blöcken suchen?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Partitionen formatieren"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Erzeugen und formatieren der Datei %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Der Swap-Bereich ist zu klein, um die Installation zu ermöglichen! \n"
"Bitte vergrößern Sie den Bereich."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Suche nach vorhandenen Paketen"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Suche nach vorhandenen Paketen"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Finden der zu aktualisierenden Pakete"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr ""
+"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
+"Es ist bereits installiert!"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Es steht auf Ihrem System nicht genügend Speicherplatz für die \n"
"Installation bzw. Aktualisierung zur Verfügung (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Komplett (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimal (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Empfohlen (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5505,36 +5593,36 @@ msgstr ""
"oder darauf gespeichert werden soll. Es handelt sich um das \n"
"selbe Format, wie die unter „auto_install“ erzeugten Disketten."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Von Diskette laden"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Laden von Diskette ..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Auswahl der Pakete"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
"Legen Sie eine Diskette ein, auf der Ihre Paketauswahl gespeichert ist."
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Auf Diskette speichern"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Installationsklasse"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5542,19 +5630,19 @@ msgstr ""
"Sie haben keine Paketgruppe ausgewählt\n"
"Bitte wählen Sie die minimale Installation, die Sie wünschen."
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Mit X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Extrem minimale Installation (ohne „urpmi“)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5565,16 +5653,16 @@ msgstr ""
"falls nur einige der aufgeführten CDs fehlen, entfernen Sie die \n"
"entsprechende Markierung und wählen Sie dann „OK“."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM „%s“"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Installation vorbereiten"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5583,25 +5671,25 @@ msgstr ""
"Installiere Paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Einstellungen für nach der Installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
"Bitte legen Sie die Diskette der zu aktualisiernden Module in Laufwerk %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5675,13 +5763,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5693,155 +5783,185 @@ msgstr ""
"\n"
"Möchten Sie die Aktualisierungen vornehmen?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Verbindung mit dem Mandrake Linux Web-Server aufbauen, um eine Liste\n"
"verfügbarer Pakete zu erhalten."
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Verbindung mit dem Mirror aufbauen, um eine Liste verfügbarer Pakete zu "
"erhalten."
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardware Uhr liefert GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "CUPS-Server auf der Gegenseite"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Kein Drucker"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Verfügen Sie über eine ISA soundkarte?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Starten Sie „sndconfig“ nach der Installation, um Ihre Soundkarte "
"einzurichten."
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“nach der "
"Installation."
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Maus"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zeitzone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Drucker"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN Karte"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Soundkarte"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-Karte"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokale Dateien"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-Passwort setzen"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Kein Passwort"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP Authentifizierung"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Windows-Schriften verwenden"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5872,19 +5992,19 @@ msgstr ""
"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
"ohne relevante Daten in ihr erstes Laufwerk und drücken Sie „OK“."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "erste Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "zweite Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Überspringen"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5913,7 +6033,7 @@ msgstr ""
"Möchten Sie jetzt eine Startdiskette für Ihr System erstellen?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5927,31 +6047,31 @@ msgstr ""
"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
"schlä sicher fehl, da XFS einen sehr großen Treiber benötigt)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ich kann kein Laufwerk finden"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Wählen Sie das Laufwerk, in dem Sie die Start-Diskette erstellen wollen"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
"Legen Sie eine Diskette, die keine relevanten Daten mehr enthällt in das %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Startdiskette wird erstellt..."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Betriebssystemstarter vorbereiten"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5965,11 +6085,11 @@ msgstr ""
"„BootX“ verwenden müssen um LINUX auf Ihrem Rechner\n"
"zu starten."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Möchten Sie „aboot“ verwenden?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5978,16 +6098,16 @@ msgstr ""
"mit Gewalt versuchen, auch wenn dies die Zerstörung der ersten \n"
"Partition verursachen kann?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "BS-Starter installieren"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Die Installation des BS-Starters schlug Fehl. Folgender Fehler trat auf:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6005,18 +6125,17 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Legen Sie eine leere Diskette in das %s ein."
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6026,7 +6145,8 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -6037,7 +6157,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -6050,16 +6170,21 @@ msgstr ""
"Für Informationen zu Sicherheitsaktualisierungen dieser Version von Mandrake "
"Linux informieren Sie sich bitte unter \n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
"Installation“ im offiziellen Benutzerhandbuch von Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact/"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6076,15 +6201,15 @@ msgstr ""
"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
"Installation durchzuführen.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisiert"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Erneut abspielen"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Paketauswahl speichern"
@@ -6111,44 +6236,24 @@ msgstr "Das Programm „consolehelper“ wurde nicht gefunden."
msgid "Choose a file"
msgstr "Wählen Sie eine Datei"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Fortgeschritten"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Einfach"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Bitte warten"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Baum erweitern"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Baum verkleinern"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Umschalten zwischen unsortiert und gruppiert"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Schlechte Wahl, bitte versuchen Sie es noch einmal\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ihre Wahl? (Standard ‚%s‘) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6157,31 +6262,35 @@ msgstr ""
"Angaben, die Sie machen müssen:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ihre Wahl? (0/1, Standard ‚%s‘) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Schaltfläche „%s“: %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Möchten Sie diese Schaltfläche betätigen?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ihre Wahl? (Standard „%s“ %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Es gibt zahlreiche Auswahlmöglichkeiten (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6190,7 +6299,7 @@ msgstr ""
"Bitte wählen Sie die Nummer aus dem Bereich, die Sie bearbeiten wollen,\n"
"oder betägen Sie die Eingabetaste um fort zu fahren.Ihre Wahl? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6199,327 +6308,327 @@ msgstr ""
"=> Anmerkung: Ein Eintrag wurde geändert:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Erneut verschicken"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tschechien (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Deutschland"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spanien"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnland"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Frankreich"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norwegen"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polen"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russland"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Schweden"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Grßbritannien"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanien"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenien (alt)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenien (Schreibmaschine)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenien (Phonetisch)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Aserbeidschan (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgien"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgarien (Phonetisch)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarien (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilien (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Weißrussland"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Schweiz (deutsches Layout)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Schweiz (französisches Layout)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tschechien (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Deutschland (ohne Tod-Tasten)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dänemark"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegen)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Schweden)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estland"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Griechenland"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungarn"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatien"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israel"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israel (Phonetisch)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Island"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italien"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japan (106 Tasten)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Lateinamerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litauen (AZERTY - alt)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litauen (AZERTY - neu)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauen (QWERTY - „number row“)"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauen (QWERTY - Phonetisch)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lettland"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Mazedonien"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Niederlande"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polen (QWERTY Layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polen (QWERTZ Layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugal"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumänien (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumänien (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russland (YaWERTY)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slowenien"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slowakei (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slowakei (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Indien (Tamilisches Layout)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thailändische Tastatur"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadschikistan"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkei (traditionelles „F“ Modell)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türkei (modernes „Q“ Modell)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraine"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Vereinigte Staaten von Amerika (international)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam QWERTY („number row“)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslawien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "AltGr-Taste"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Beide Umschalttasten gleichzeitig"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Strg und Umschalttaste gleichzeititg"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock Taste"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Strg und Alt gleichzeitig"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt und Umschalttaste gleichzeitig"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Menütaste"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Linke „Windows“-Taste"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Rechte „Windows“-Taste"
@@ -6532,7 +6641,31 @@ msgstr "Schleife bei den Einhängpunkten %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonnummer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Partitionen formatieren"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6575,10 +6708,6 @@ msgstr "1 Taste"
msgid "Generic 2 Button Mouse"
msgstr "Generische 2 Tasten Maus"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generisch"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rad"
@@ -6643,38 +6772,54 @@ msgstr "keine"
msgid "No mouse"
msgstr "Keine Maus"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Bitte testen Sie Ihre Maus"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEGEN SIE IHR MAUS-RAD!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Beenden"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Weiter ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Zurück"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ist dies richtig?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Baum erweitern"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Baum verkleinern"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Umschalten zwischen unsortiert und gruppiert"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Internetverbindung"
@@ -6721,7 +6866,7 @@ msgstr ""
"Ich habe keine Ethernet-Netzwerkkarte finden können, daher kanndieser "
"Verbindungstyp nicht konfiguriert werden."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Wählen Sie die Netzwerkkarte"
@@ -6736,7 +6881,7 @@ msgstr ""
msgid "no network card found"
msgstr "Keine Netzwerkkarte gefunden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Netzwerk konfigurieren"
@@ -6752,15 +6897,15 @@ msgstr ""
"Ihr Rechnername sollte auch die Domain beinhalten,\n"
"etwa „meinrechner.meineabteilung.meinefirma.de“."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Rechnername"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Netzwerk Konfigurationsassistent"
@@ -6817,7 +6962,7 @@ msgstr "ISDN Konfiguration"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Wählen Sie Ihren Netzanbieter.\n"
"Sollte er nicht aufgeführt sein, wählen Sie „Nicht aufgeführt“"
@@ -6836,14 +6981,14 @@ msgstr "Protokoll für den Rest der Welt"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokoll für den Rest der Welt \n"
"ohne D-Kanal (Leased Lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Welches Protokoll wollen Sie verwenden?"
#: ../../network/isdn.pm_.c:199
@@ -6867,7 +7012,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Falls Sie eine ISA-Karte besitzen, sollten die Einstellungen auf dem "
@@ -6885,13 +7031,13 @@ msgid "Continue"
msgstr "Fortfahren"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Bitte wählen Sie Ihre ISDN Karte"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ich habe eine PCI ISDN-Karte gefunden, \n"
"kenne sie jedoch nicht. Bitte helfen Sie mir,\n"
@@ -6911,47 +7057,47 @@ msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihr Modem hängt."
msgid "Dialup options"
msgstr "Einwahl Parameter"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Name der Verbindung"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript-basiert"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-basiert"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Name der Domäne"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Erster DNS Server (optional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Zweiter DNS Server (optional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6959,7 +7105,7 @@ msgstr ""
"\n"
"Sie können die Verbindung trennen oder sie neu konfigurieren."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6967,11 +7113,11 @@ msgstr ""
"\n"
"Sie können Ihre Internetverbindung neu konfigurieren"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Sie sind momentan mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6980,32 +7126,32 @@ msgstr ""
"Sie können eine Internetverbindung aufbauen oder die Verbindung neu "
"konfigurieren"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Sie sind momentan nicht mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Verbinden"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Verbindung trennen"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Die Verbindung konfigurieren"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetverbindung und -einrichtung"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Wir werden nun die Verbindung „%s“ konfigurieren."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -7024,12 +7170,12 @@ msgstr ""
"\n"
"Wählen Sie „OK“, um fortzufahren."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netzwerk konfigurieren"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7041,9 +7187,9 @@ msgstr ""
"„Abbruch“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
"konfigurieren.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -7053,66 +7199,72 @@ msgstr ""
"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
"Falls Sie keine Autodetektion wünschen, entfernen Sie bitte die Markierung.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Autoerkennung benutzen"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expertenmodus"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Geräteerkennung..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normale Modem Verbindung"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "an Prot %s gefunden"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN Verbindung"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s gefunden"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL Verbindung"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "an Schnittstelle %s gefunden"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabel Verbindung"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabel Verbindung gefunden"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN Verbindung"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "Netzwerkkarte(n) gefunden"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7123,23 +7275,23 @@ msgstr ""
"ich versuchen soll.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet-Verbindung"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Möchten Sie die Verbindung bei Betriebssystemstart herstellen?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netzwerk Konfiguration"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Das Netzwerk muss neu gestartet werden"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7150,7 +7302,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7160,7 +7312,7 @@ msgstr ""
"\n"
"Die Konfiguration wird nun in Ihr System integriert.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7169,20 +7321,20 @@ msgstr ""
"neu zu starten, um Probleme, die durch die Änderung des\n"
"Rechnernamens hervorgerufen werden, zu vermeiden."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Während der Konfiguration traten Fehler auf.\n"
"Kontrollieren Sie Ihre Verbindung mit „net_monitor“ oder dem Mandrake "
"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
"die Konfguration starten."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -7192,7 +7344,7 @@ msgstr ""
"Drücken Sie einfach „OK“, um die Einstellungen zu behalten.\n"
"Fall Sie Felder verändern, wird die Konfiguration überschrieben."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7202,38 +7354,43 @@ msgstr ""
"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
"angegeben werden (etwa „192.168.1.42“)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurieren der Netzwerkkarte %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (Treiber %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP Adresse"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netzmaske"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatische IP-Adressen Zuweisung"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Beim Hochfahren gestartet"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7245,64 +7402,64 @@ msgstr ""
"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS-Server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (etwa %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway Gerät"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Proxies einstellen"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP Proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP Proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Netzwerkkarten-ID überwachen (sinnvoll für Laptops)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy muss „http://...“ sein"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy muss „ftp://...“ sein"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet Konfiguration"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Möchten Sie jetzt versuchen eine Internetverbindung aufzubauen?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Ich teste gerade Ihre Verbindung..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sie sind jetzt mit dem Internet verbunden."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Aus Sicherheitsgründen wird die Verbindung nun unterbrochen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7310,114 +7467,119 @@ msgstr ""
"Sie sind momentan nicht mit dem Internet verbunden.\n"
"Versuchen Sie Ihre Internetverbindung wieder zu konfigurieren."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Verbindungskonfiguration"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
"Bitte füllen Sie die folgen Felder aus \n"
"bzw. makieren Sie die korrekten Angaben"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Karten IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Karten Mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Karten E/A"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Karten IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Karten IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Ihre eigene Telefonnummer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Name des Providers (z.B. provider.net) "
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonnummer des Providers"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Erster DNS des Providers (optional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Zweiter DNS des Providers (optional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Land auswählen"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Wahlmodus"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Verbindungsgeschwindigkeit"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "VerbindungsTimeout (in Sec)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Kennzeichen (Login)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Passwort"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "Fehler beim Einhängen: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Sie haben einen unbenutzten Bereich in Ihrer Partitionstabelle, \n"
"den ich nicht ansprechen kann. Die einzige Lösung ist, dass Sie \n"
"Ihre primären Partitionen so verschieben, dass der Bereich direkt \n"
"neben der erweiterten Partition zu liegen kommt."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaurieren aus der Datei %s schlug Fehl: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fehlerhafte Backup-Datei"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fehler beim Schreiben in Datei %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7428,186 +7590,186 @@ msgstr ""
"Das bedeutet, dass jeder Schreibvorgang auf der Platte zu einem \n"
"unvorhersagbaren Ergebnis führen wird."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "unbedingt notwendig"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "wichtig"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "sehr angenehm"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "angenehm"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "eventuell"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokaler Drucker"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Entfernter Drucker"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Drucker an CUPS-Server auf der Gegenseite"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Drucker an lpd-Server auf der Gegenseite"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Netzwerkdrucker (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Drucker an SMB/Windows 9x/ME/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Drucker an NetWare Server"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Druckeranschluss URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Den Auftrag an ein Kommando weiterleiten"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Unbekanntes Modell"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokale Drucker"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Entfernte Drucker"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " an Parallelport \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB-Drucker \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", Multifunktionsgerät am Parallelport \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", USB Multifunktionsgerät"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", Multifunktionsgerät am HP JedDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", Multifunktionsgerät"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", drucken auf %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "auf LDP-Server „%s“, Drucker „%s“"
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP Drucker „%s“, Port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "auf Windows-Server „%s“, Freigabe „%s“"
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "auf dem Novell-Server „%s“, Drucker „%s“"
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", mittels Kommando „%s“"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Rohdaten-Drucker (kein Treiber)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(an %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(an diesem Rechner)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Auf CUPS-Server „%s“"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Standard)"
@@ -7630,11 +7792,11 @@ msgstr ""
"hier keine Einstellungen vornehmen, die Drucker werden \n"
"automatisch erkannt und übernommen."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "CUPS-Server angeben"
@@ -7678,7 +7840,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Die Prot Nummer muss eine Zahl sein!"
@@ -7686,7 +7848,7 @@ msgstr "Die Prot Nummer muss eine Zahl sein!"
msgid "CUPS server IP"
msgstr "CUPS-Server-IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7694,20 +7856,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatische CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Geräteerkennung..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test der Anschlüsse"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Drucker hinzufügen"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7728,13 +7882,13 @@ msgstr ""
"Sie werden nur nach den nötigen Informationen über den Drucker gefragt, um "
"Ihnen dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokaler Drucker"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7768,11 +7922,11 @@ msgstr ""
"Verwenden Sie den „Expertenmodus“ von PrinterDrake, um einen entfernten "
"Drucker einzurichten, falls er nicht automatisch aufgeführt wird."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Drucker-Selbsterkennung"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7796,11 +7950,11 @@ msgstr ""
"Druckqualität) anpassen wollen, wählen Sie „Drucker“ im „Hardware“\n"
"Bereich des Mandrake Kontrollzentrums."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Selbsterkennung von Druckern"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7816,33 +7970,37 @@ msgstr ""
"\n"
"Wollen Sie wirklich, dass PrinterDrake eine Selbsterkennung versucht?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Autoerkennung durchführen"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Drucker selbst einrichten"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test der Anschlüsse"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "%s gefunden"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Drucker an Parallelport \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-Drucker \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7854,11 +8012,11 @@ msgstr ""
"Anschlüsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, LPT2:, ...; Erster "
"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Sie müssen einen Geräte- oder Dateinamen eingeben!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7866,7 +8024,7 @@ msgstr ""
"Kein Lokaler Drucker erkannt!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7874,7 +8032,7 @@ msgstr ""
"Netzwerkdrucker können erst nach der Installation eingerichtet werden. "
"Wählen Sie „Einstellungen/Hardware/Drucker“ im Mandrake Kontrollzentrum."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7882,7 +8040,7 @@ msgstr ""
"Um Netzwerkdrucker zu installieren wäen Sie bitte „Abbruch“, wechseln in den "
"„Expertenmoduns“ und wählen erneut „Drucker hinzufügen“."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7891,7 +8049,7 @@ msgstr ""
"Drucker handelt, den Sie einrichten wollen, geben Sie einen Geräte- oder "
"Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7900,7 +8058,7 @@ msgstr ""
"gewünschten Drucker oder geben Sie einen Geräte- oder Dateinamen in der "
"Eingabezeile an."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7912,7 +8070,7 @@ msgstr ""
"oder wollen Sie die Einrichtung selbst vornehmen, wählen Sie „Manuelle "
"Konfiguration“."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7924,7 +8082,7 @@ msgstr ""
"Ihr Drucker nicht richtig erkannt worden sein, oder wollen Sie die "
"Einrichtung selbst vornehmen, wählen Sie „Manuelle Konfiguration“."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7932,11 +8090,11 @@ msgstr ""
"Bitte wählen Sie den Anschluss, an dem der Drucker hängt oder geben Sie "
"einen Geräte- oder Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Bitte wählen Sie den Anschluss, an dem Ihr Drucker hängt."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7945,52 +8103,65 @@ msgstr ""
"LPT2:, ..., Erster USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Sie müssen einen Drucker wählen/ein Gerät eingeben!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuelle Konfiguration"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Ist Ihr Drucker ein Multifunktionsgerät von HP (OfficeJet, PSC, PhotoSmart, "
"LaserJet 1100/1200/1220/3200/3300 mit Scanner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installiere das „HPOJ“-Paket ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Geräte untersuchen und HPOJ einrichten ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Installiere das „SANE“-Paket ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Pakete Installieren ..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Scannen mit Ihrem HP-Multifunktionsgerät"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Scannen mit Ihrem HP-Multifunktionsgerät"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "CUPS den Drucker-Port zugänglich machen ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lesen der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Optionen für Netzwerk-Druckerspooler"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7999,27 +8170,27 @@ msgstr ""
"Rechnernamen des Drucker-Servers sowie den Druckernamen auf diesem Server "
"angeben, an den die Aufträge übertragen werden sollen."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Name des entfernten Rechners"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Name des entfernten Druckers"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Der Name des entfernten Rechners fehlt!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Der Name des entfernten Druckers fehlt!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8032,35 +8203,35 @@ msgstr ""
"für den Drucker, auf den Sie zugreifen möchten, sowie entsprechender "
"Benutzername, Passwort und Arbeitsgruppe."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-Server"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-Server-IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Freigabename"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Arbeitsgruppe"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Sie müssen entweder Den Servernamen oder seine IP-Adresse angeben!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Der Name der Samba-Freigabe fehlt!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8084,7 +8255,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8093,7 +8264,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8101,11 +8272,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Optionen für NetWare-Drucker"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8117,27 +8288,27 @@ msgstr ""
"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
"notwendig, den entsprechenden Benutzernamen samt Passwort."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Drucker-Server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Name der Druckerwarteschlange"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Der NCP Servername fehlt!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Der NCP Warteschlangen-Name fehlt!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Optionen für TCP/Socket-Drucker"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -8150,19 +8321,19 @@ msgstr ""
"Servern kann es eine andere sein. Schauen Sie im Zweifelsfall in die "
"Unterlagen Ihrer Hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Rechnername des Druckers"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Der Rechnername des Druckers fehlt!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Druckeranschluss URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8172,11 +8343,11 @@ msgstr ""
"bzw. den Foomatic Spezifikationen genügen. Es sei hier noch angemerkt, dass "
"nicht alle URI-Typen von allen Drucksystemem unterstützt werden."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Sie müssen eine gültige URI eingeben!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8185,27 +8356,23 @@ msgstr ""
"Beschreibung und Standort müssen nicht ausgefüllt werden.\n"
"Sie dienen nur als Kommentare für den Anwender."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Druckername"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beschreibung"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Standort"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Vorbereiten der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Ihr Druckermodell"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8231,24 +8398,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Das Modell ist richtig"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Modell auswählen"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Auswahl des Druckertyps"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Über welchen Druckertyp verfügen Sie?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8262,7 +8429,7 @@ msgstr ""
"Falls die Markierung auf einem falschen Gerät oder auf „Rohdaten-Drucker“ "
"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8270,11 +8437,11 @@ msgstr ""
"Falls Ihr Drucker nicht aufgeführt ist wählen Sie bitte ein kompatibles bzw "
"ähnliches Modell (Für Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI Win-Drucker Konfiguration"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8289,11 +8456,11 @@ msgstr ""
"Schnittstelle oder an einer Printserver-Box hängen, schließen Sie ihn bitte "
"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark Tintenstrahl-Konfiguration"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8305,7 +8472,7 @@ msgstr ""
"Sie den Druker direkt an Ihren Rechner oder richten Sie ihn auf dem Rechner "
"ein, an den er angeschlossen ist."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8327,7 +8494,7 @@ msgstr ""
"auf „Abbruch“ drücken. Drucken Sie dann Druckkopf-Einrichtungsseiten mit "
"„lexmarkmaintain“ und justieren Sie damit den Druckkopf."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8343,22 +8510,22 @@ msgstr ""
"richtig eingestellt sind. Es sei auch angemerkt, dass häufig mit steigender "
"Druckqualität die Druckgeschwindigkeit sinkt."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Der Parameter %s ist yu groß oder zu klein!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8367,11 +8534,11 @@ msgstr ""
"Möchten Sie diesen Drucker („%s“)\n"
"als Standarddrucker verwenden?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testseiten"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8385,39 +8552,39 @@ msgstr ""
"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
"auszudrucken."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Keine Testseiten"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Drucken"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standard-Testseite"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternative Testseite (US-Format - „Letter“)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternative Testseite (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto-Testseite"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Keine Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Druck der Testseite(n) ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8432,7 +8599,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8440,15 +8607,15 @@ msgstr ""
"Die Testseite(n) wurden an den Drucker gesandt.\n"
"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "War der Ausdruck korrekt?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Rohdaten-Drucker"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8462,7 +8629,7 @@ msgstr ""
"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
"Drucker zu wählen und die notwendigen Druckerparameter anzugeben.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8472,8 +8639,8 @@ msgstr ""
"zahlreicher Anwendungen angeben, lassen Sie jedoch den Dateinamen weg, da "
"die zu druckende Datei von der Anwendung geliefert wird.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8486,11 +8653,11 @@ msgstr ""
"bestimmten Druckauftrag zu ändern. Geben Sie die gewünschten Angaben einfach "
"in der Kommandozeile mit an, etwa: „%s <Datei>“. "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Um alle existierenden Optionen des Druckers zu erfahren, lesen Sie entweder "
@@ -8498,7 +8665,7 @@ msgstr ""
"Drucker-Optionen“. %s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8506,7 +8673,7 @@ msgstr ""
"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8515,8 +8682,8 @@ msgstr ""
"Verwenden Sie den Befehl „%s <Datei>“, um die Datei <Datei> in der "
"Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8526,7 +8693,7 @@ msgstr ""
"angeben. Tragen Sie bitte keinen Dateinamen ein, da dieser vom Programm "
"ergänzt wird.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8534,7 +8701,7 @@ msgstr ""
"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betätigen "
"Sie bitte die Schaltfläche „Liste der Drucker-Optionen“."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8543,7 +8710,7 @@ msgstr ""
"Verwenden Sie einen der Befehle „%s <Datei>“ oder „%s <Datei>“, um die Datei "
"<Datei> in der Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8559,7 +8726,7 @@ msgstr ""
"Druckaufträge anhä, wenn Sie es betägen. Das kann beispielsweise dann "
"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8572,38 +8739,49 @@ msgstr ""
"spezeiellen Druckjobs zu konfigurieren. Fügen Sie einfach die gewünschten "
"Einstellungen in der Kommandozeile ein, etwa „%s <Datei>“.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Schließen"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Drucken/Scannen mit „%s“"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Drucken/Scannen mit „%s“"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Drucken/Scannen mit „%s“"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Drucken auf Drucker „%s“"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Schließen"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste der Drucker-Optionen"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8618,40 +8796,30 @@ msgstr ""
"\n"
"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Ihr HP-Multifunktionsgerät wurde automatisch auch zum Scannen eingerichtet. "
-"Sie können nun in der Kommandozeile mittels „ptal-hp %s scan ...“ scannen. "
-"Zur Zeit existieren leider keine grafischen Werkzeuge, mit deren Hilfe Sie "
-"Scannen können - Ihr Multifunktionsgerät wird noch nicht unterstützt. "
-"Weitetre Informationen finden Sie in der Datei „/usr/share/doc/hpoj-0.8/ptal-"
-"hp-scan.html“ auf Ihrem Rechner. Falls Sie einen HP LaserJet 1100 oder 1200 "
-"haben, können Sie nur scannen, wenn Sie die Scanner-Option installiert "
-"haben.\n"
-"\n"
-"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lesen der Treiber-Datenbank ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Drucker-Einstellung transferieren"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8667,7 +8835,7 @@ msgstr ""
"Warteschlange gehen jedoch verloren.\n"
"Nicht alle Warteschlangen können übernommen werden:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8675,7 +8843,7 @@ msgstr ""
"CUPS unterstützt keine Druker an Novel Servern oder Drucker, die ihre Daten "
"in ein frei gewähltes Kommando senden.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8683,11 +8851,11 @@ msgstr ""
"PDQ unterstützt nur lokale Drucker, entfernte LPD Drucker und Socket/TCP "
"Drucker.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD und LPRng unterstükeine IPP Drucker.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8695,7 +8863,7 @@ msgstr ""
"Warteschlangen, die nicht mit diesem Programm oder „foomatic-configure“ "
"ertellt wurden, können nicht übertragen werden."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8705,7 +8873,7 @@ msgstr ""
"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
"Treibern eingerichtet wurden, können nicht übertragen werden."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8715,15 +8883,15 @@ msgstr ""
"Markieren Sie die Druckerwarteschlangen, die sie übertragen wollen und "
"betätigen Sie die Schaltfläche „Übertragen“."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Druckerdaten nicht übertragen"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Übertragen"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8735,12 +8903,12 @@ msgstr ""
"überschreiben. Sie können dem Drucker auch einen neuen \n"
"Namen geben oder ihn einfach überspringen."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8749,16 +8917,16 @@ msgstr ""
"Der Drucker „%s“ existiert bereits. Wollen Sie ihn wirklich \n"
"ersetzen?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Neuer Druckername"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Übertragen von „%s“ ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8767,29 +8935,29 @@ msgstr ""
"Sie haben Ihren alten Standarddrucker („%s“) übertragen, soll es auch Ihr "
"Standarddrucker unter dem neuen Drucksystem „%s“ werden?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Aktualisieren der Druckerdaten ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfiguration eines entfernten Druckers"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Netzwerk starten ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Netzwerk jetzt konfigurieren"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Ihr Netzwerk ist nicht konfiguriert"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8801,11 +8969,11 @@ msgstr ""
"Sollten Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der "
"Drucker hinterher nicht zu verwenden. Wie wollen Sie fortfahren?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Weiter ohne Netzwerkkonfiguration"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8821,7 +8989,7 @@ msgstr ""
"anschließend erneut den Drucker mittels „Hardware/Drucker“im Kontrollzentrum "
"einzurichten."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8832,24 +9000,24 @@ msgstr ""
"und Ihre Softwareeinstellngen. Versuchen Sie anschließend erneut den "
"entfernten Drucker einzurichten."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Drucksystem neu starten ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "Hoch"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation eines Drucksystems in Sicherheitsebene %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8874,11 +9042,11 @@ msgstr ""
"\n"
"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Drucksystem beim BS-Start aktivieren"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8899,63 +9067,63 @@ msgstr ""
"\n"
"Wollen sie den automatischen Start des Drucksystems wieder herstellen?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Suche nach installierter Software"
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Entfernen von LPRng ..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Entfernen des LPD ..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Wählen Sie das Drucksystem"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigurieren von Drucker „%s“ ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installieren des Pakets Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Drucker-Optionen"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "PrinterDrake vorbereiten ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Anwendungen konfigurieren ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Möchten Sie einen Drucker konfigurieren?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Drucksystem: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8967,7 +9135,7 @@ msgstr ""
"verwenden, Informtionen über ihn zu erhalten oder einen entfernten CUPS-"
"Server für Star/OpenOffice zugänglich zu machen."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8977,28 +9145,32 @@ msgstr ""
"Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
"verwenden oder Informtionen über ihn zu erhalten."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Drucksystem ändern"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normaler Modus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Verlassen"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Möchten Sie einen weiteren Drucker einrichten?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Drucker-Konfiguration ändern"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -9007,104 +9179,104 @@ msgstr ""
"Drucker %s\n"
"Was wollen Sie an diesem Drucker ändern?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Ausführen!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Art der Druckeranbindung"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Druckername, Beschreibung, Standort"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Druckerproduzent, Modell, Treiber"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Druckerproduzent, Modell"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Als Standarddrucker verwenden"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Diesen Drucker für StarOffice/OpenOffice.org hinzufügen"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Diesen Drucker für StarOffice/OpenOffice.org entfernen"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Wie dieser Drucker genutzt werden kann"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Drucker entfernen"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Alten Drucker „%s“ entfernen ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Standarddrucker"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Der Drucker „%s“ ist jetzt Ihr Standarddrucker“"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Drucker für StarOffice/OpenOffice.org hinzufügen"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
"Der Drucker „%s“ wurde erfogrich zu StarOffice/OpenOffice.org hinzugefügt."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Fehler beim Hinzufügen von „%s“ für StarOffice/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Drucker für StarOffice/OpenOffice.org entfernen"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"Der Drucker „%s“ wurde erfogrich für StarOffice/OpenOffice.org entfernt."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Fehler beim Entfernen von „%s“ für StarOffice/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Möchten Sie den Drucker „%s“ wirklich entfernen?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Drucker „%s“ entfernen ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9192,24 +9364,64 @@ msgstr "Die Passwörter stimmen nicht überein. Bitte versuchen Sie es eneut!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ich kann keine Partition zu dem _formatierten_ RAID md%d hinzufügen"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ich kann Datei „%s“ nicht schreiben"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid schlug Fehl"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid schlug Fehl (Möglicherweise fehlen die RAID-Tools)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nicht genügend Partitionen für RAID Level %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
+"einfacher handhabbar, aber auch leichter angreifbar: In dieser Form darf \n"
+"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
+"da Angreifer mangels Passwort an Ihre Daten gelangen können!"
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Mit dieser Sicherheitsebene wird es möglich, das System als einen \n"
+"Server zu verwenden.\n"
+"Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
+"einzusetzen, der einer Vielzahl von Klienten einen Verbindungsaufbau \n"
+"erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
+"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
+"verwenden sollte."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Erweiterte Einstellungen"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Optionen"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
@@ -9274,7 +9486,7 @@ msgstr ""
"HardDrake führt Hardwaretests durch, und konfiguriert (falls nötig) \n"
"neue/geänderte Hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9358,7 +9570,7 @@ msgstr ""
"Der Linux Virtual Server kann verwendet werden, um um ein \n"
"hochperformanten Hochverfügbarkeitsserver aufzusetzen."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9445,7 +9657,7 @@ msgstr ""
"solche Server (RPC-basierte) beherbergen, muss dieser Dienst \n"
"aktiviert sein."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9551,7 +9763,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9682,6 +9894,7 @@ msgstr ""
"Entwicklungsumgebungen."
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrollzentrum"
@@ -9805,6 +10018,17 @@ msgstr "http://www.mandrakesoft.com/sales/contact/"
msgid "Installing packages..."
msgstr "Pakete Installieren ..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Bitte loggen Sie sich aus, und drücken Sie Ctrl-Alt-Rücktaste"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr ""
+"Bitte loggen Sie sich erneut in %s ein, \n"
+"um die Änderungen wirksam werden zu lassen."
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9813,6 +10037,160 @@ msgstr ""
"Ich kann Ihre Partitionstabelle nicht lesen, sie ist fehlerhaft :-(\n"
"Um fortfahren zu können setze ich die fehlerhaften Partitionen zurück"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Drucker-Einstellung transferieren"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datenbankserver"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datenbankserver"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Server"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Benutzer hinzufügen"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Hilfe"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nicht Verbunden"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Löschen"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Alle auswählen"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Benutzer hinzufügen"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurieren ..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "neu konfigurieren"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Kein Disketten-Laufwerk verfügbar"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fehler!"
@@ -9864,6 +10242,11 @@ msgstr ""
"Bitte wählen Sie für jeden Schritt, ob er wie bei Ihrer Installation "
"vorgenommen werden soll, oder ob Sie ihn manuell durchführen wollen."
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Erstellen einer Auto-Installationsdiskette"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9876,12 +10259,12 @@ msgstr ""
"\n"
"Die Parameter der Autoinstallation sind in den Abschnitten rechts verfügbar."
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratuliere!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9889,28 +10272,19 @@ msgstr ""
"Die Diskette wurde erfolgreich erstellt.\n"
"Sie können die Installation nun automatisch durchführen."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Auto-Installation"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Eintrag hinzufügen"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Letzten Eintrag entfernen?"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9920,7 +10294,7 @@ msgstr ""
" DrakBackup Report \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9931,19 +10305,7 @@ msgstr ""
" DrakBackup Dämon Report\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9954,65 +10316,89 @@ msgstr ""
" DrakBackup Report Details\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "Vortschritt"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Systemdateien sichern ..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Benutzerdateien sichern ..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Andere Dateien sichern ..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"Dateiliste per FTP senden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) FTP Verbindungsprobleme: Es war nicht möglich, Ihre Dateien per FTP zu "
"übertragen.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Dateiauswahl"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"Wählen Sie die Dateien oder Verzeichnisse und betätigen Sie die Schaltfläche "
"„Hinzufügen“"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10020,26 +10406,26 @@ msgstr ""
"\n"
"Bitte wählen Sie alle benötigten Parameter.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Diese Optionen kön alle Ihre Dateien im Verzeichnis „/etc“ sichern und "
"wiederherstellen\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementelles Backup (alte Backups nicht überschreiben)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10047,84 +10433,78 @@ msgstr ""
"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
"„/etc“ Verzeichnisses wiederherzustellen."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Bitte wählen Sie alle Kennzeichen, deren Dateinen mitgesichert werden sollen."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Benutzer"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Rechnernamen oder IP eingeben."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Bitte geben Sie das Verzeichnis an,\n"
" in dem die Archive erstellt werden sollen."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Passwort behalten"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP Verbindung"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sichere Verbindung"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Bitte wählen Sie Ihren CD-Paltz"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -10132,7 +10512,7 @@ msgstr ""
"Bitte markieren, falls Sie \n"
"„install boot“ auf Ihrer CD haben wollen."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10140,16 +10520,21 @@ msgstr ""
"Bitte geben Sie den Gerätenamen \n"
"Ihres Brenners an, etwa „0,1,0“."
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Bitte geben Sie den Gerätenamen fü Archivierung an."
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10157,51 +10542,57 @@ msgstr ""
"Bitte geben Sie die Maximalgröße \n"
"für DrakBackup an."
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Quota für Backup-Datei verwenden."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Netzwerk"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM/DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Festplatte/NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Typ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "stündlich"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "täglich"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "wöchendlich"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "monatlich"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Dämon verwenden"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10209,7 +10600,7 @@ msgstr ""
"Bitte wählen Sie das Zeitintervall \n"
"zwischen zwei Sicherungen."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -10217,71 +10608,67 @@ msgstr ""
"Bitte wählen Sie ein\n"
"Sicherungsmedium."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Festplatte mit Dämin verwenden"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTP mit Dämon verwenden"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Was"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Wo"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Wann"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Mehr Parameter"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "DrakBackup Konfiguration"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "auf Festplatte"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "über Netzwerk"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Bitte wählen Sie, was Sie sichern wollen"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "System sichern"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Benutzerkennzeichen sichern"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Benutzerkennzeichen auswählen"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10289,7 +10676,7 @@ msgstr ""
"\n"
"Sicherungsquellen: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10297,7 +10684,7 @@ msgstr ""
"\n"
"- Systemdateien:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10305,7 +10692,7 @@ msgstr ""
"\n"
"- Benutzerdateien:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -10313,7 +10700,7 @@ msgstr ""
"\n"
"- Sonstige Dateien:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -10322,16 +10709,45 @@ msgstr ""
"\n"
"- Auf Festplatte sichern unter: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Mausschnittstelle: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Via FTP sichern auf: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10340,7 +10756,7 @@ msgstr ""
"\t\t Benutzer: %s\n"
"\t\t Pfad: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10348,19 +10764,19 @@ msgstr ""
"\n"
"- Optionen:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tKeine Systemdateien\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10369,28 +10785,42 @@ msgstr ""
"\n"
"- Dämon (%s) enthält:\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t- Festplatte.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t- CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t- Netzwerk per SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t- Netzwerk per FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t- Netzwerk per FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Keine Konfiguration. Wählen Sie dein Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10398,7 +10828,7 @@ msgstr ""
"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10406,135 +10836,138 @@ msgstr ""
"Liste der beschädigten Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr ""
"Bitte entfernen Sie die Markierung oder löschen Sie sie das nächste Mal."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Die Sicherungen sind beschädigt."
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Alle Ihre gewälhten Daten wurden "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Konfiguration wiederherstellen "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK, die übrigen Dateien zu aktualisieren."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Liste wiederherzustellender Kennzeichen (letztes Datum per Kennzeichen ist "
"wichtig)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Systemdateien sichern vor:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Auf Festpaltte sichern"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Bitte geben Sie das Archivverzeichnis an:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP Verbindung"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sichere Verbindung"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Anderes Medium"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "System wiederherstellen"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Erstelle Sicherung vor dem Wiederherstellen (nur für inkrementelle "
"Sicherungen)."
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Alle Sicherungen wiederherstellen"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Benutzergeführte Wiederherstellung"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Hilfe"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "<- Zurück"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Speichern"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Sicherung erstellen"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Wiederherstellen"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Weiter ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10542,7 +10975,7 @@ msgstr ""
"Bitte erstellen Sie eine Sicherung, bevor Sie wiederherstellen können.\n"
"oder stellen Sie sicher, dass der Pfad zu den Sicherungen korrekt ist."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10552,31 +10985,35 @@ msgstr ""
" Ihre Bericht-Mail konnte nicht versandt werden.\n"
" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Zu installierende Pakete"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Fehler bei der Üertragung via FTP.\n"
"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Bitte wählen Sie ein Sicherungsmedium..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Bitte wählen Sie die zu sichernden Daten..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10584,75 +11021,75 @@ msgstr ""
"Keine Konfigurationsdatei gefunde.\n"
"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Systemdateien sichern"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Benutzerdateien sichern"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Fortschritt"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "Datenüagung via FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Dateien übertragen ..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Liste der Daten, die auf CD-ROM sollen."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Bitte geben Sie den CD-Brenner an (etwa 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Bitte markieren, falls Sie „install boot“ auf Ihrer CD haben wollen."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Assistentengestützte Konfiguration"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Expertenkonfiguration"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Jetzt sichern"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10714,7 +11151,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10729,7 +11166,7 @@ msgstr ""
" in „/etc/postfix/main.cf“ korrigieren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10812,7 +11249,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10840,13 +11277,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10876,7 +11318,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10916,7 +11358,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10934,7 +11376,7 @@ msgstr ""
"Rechner erstellt werden.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10957,7 +11399,7 @@ msgstr ""
"Seien Sie daher vorsichtig und ändern Sie die Sicherungskopien \n"
"nicht manuell.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -11001,99 +11443,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Die Installation von %s schlug Fehl. Folgender Fehler trat auf:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsolen-Werkzeuge"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "auf Festplatte"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Maus"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Entfernter Drucker"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Freigabename"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "PrinterDrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netzwerk Konfigurationsassistent"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Authentifizierung"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Auswahl der Pakete"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Bitte warten"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Nach dem Entfernen"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netzwerk Konfiguration (%d Karten)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Profil löschen..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Zu löschendes Profil: "
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Neues Profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Rechnername: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetzugang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Typ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Schnittstelle:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Bitte Warten"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Internet-Zugang konfigurieren"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN Konfiguration"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Treiber"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Schnittstelle"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokoll"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Netzwerk konfigurieren"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Hier starten Sie den Assistenten ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Anwenden"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Einen Moment ... ich richte die Konfiguration ein"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Verbunden"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nicht Verbunden"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Verbinden ..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Trenne Verbindung ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
+"diese ihr Netzwerk."
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Sie haben noch keine Schnittstelle eingerichtet.\n"
+"Sie können dies tun, indem Sie die Schaltfläche \n"
+"„Konfigurieren“ betätigen."
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN Konfiguration"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot-Protokoll"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Beim Hochfahren gestartet"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP Klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Jetzt aktivieren"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "Jetzt deaktivieren"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
+"Starten Sie den Konfigurationsassistenten im Hauptfenster."
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Sie haben noch keine Internetverbindung eingerichtet.\n"
+"Sie können dies tun, indem Sie die Schaltfläche \n"
+"„Konfigurieren“ betätigen."
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfiguration der Internetverbindung"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfiguration der Internetverbindung"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Verbindungstyp: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameter"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Netzwerkkarte"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "Verwendung: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr " Modulname "
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr " Größe "
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "DrakFloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Boot-Disketten Erstellung"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr " Standard "
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fehler: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kernversion"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Allgemein"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Experten Bereich"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Optionale Parameter für „mkinitrd“"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Modul hinzufügen"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr " mit Gewalt "
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr " falls Nötig "
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr " SCSI Module weglassen "
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr " RAID-Module weglassen "
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Modul entfernen"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ausgabe"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr " Diskette erstellen "
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Stellen Sie sicher, dass ein Medium in Laufwerk %s liegt."
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"In Laufwerk %s liegt kein Medum.\n"
+"Bitte legen Sie eins ein."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ich kann nicht forken: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ich kann „mkbootdisk“ nicht richtig beenden: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Suche installierte Schriften"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Auswahl installierter Schriften zurücksetzen"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "Alle Schriften analysieren"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "Keine Schriften gefunden"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "Fertig"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "Ich konnte keine Schriften in Ihren eingehängten Partitionen finden"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Neuwahl korrekter Schriften"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "Konnte keine Schriften finden.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Suche installierter Schriften"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopiere Schriften"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation von TrueType Schriften"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Bitte warten Sie ttmkfdir arbeitet ..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "TrueType Installation beendet"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konvertieren der Schriften"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "Erzeuge „type1inst“"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscriptreferenz"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf-Schriftkonvertierung"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm-Schriftkonvertierung"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Temporäre Dateien löschen"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Neustart des X-FontServers"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Schriftdateien löschen"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs Neustart"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11107,109 +11981,109 @@ msgstr ""
"- Sie können die Schriften auf normalem Weg einbinden. In seltenen Fällen \n"
"können defekte Schriften den X-Server lahmlegen."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Schriften einbinden"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Windows-Schriften verwenden"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Schiften deinstallieren"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Erweiterte Einstellungen"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Font-Liste"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Wählen Sie die Programme, die die Schriften verwenden sollen:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Generische Drucker"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"Wählen Sie eine Schriftdatei bzw. ein Verzeichnis und betätigen Sie "
"„Hinzufügen“"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Liste installieren"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Klicken Sie hier, wenn Sie sicher sind."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Hier, falls nicht."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Markierung löschen"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Alle auswählen"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Liste entfernen"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Vortests"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Schriften auf Ihren Rechner kopieren"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installiere und konvertiere Fonts"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Nach der Installation"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Teilen der Internet-Verbindung"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Teilen der Internetverbindung momentan eingeschaltet."
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11221,31 +12095,31 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "deaktivieren"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "Verwerfen"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "neu konfigurieren"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Server deaktivieren ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Teilen der Internet-Verbindung ist nun abgeschaltet."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Teilen der Internet-Verbindung momentan abgeschaltet."
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11257,19 +12131,19 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "aktivieren"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Server aktivieren ..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Teilen der Internetverbindung ist nun eingeschaltet."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11284,21 +12158,21 @@ msgstr ""
"Anmerkung: Sie benötigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
"lokales Netz (LAN) aufsetzen können."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Schnittstelle %s (verwendet Modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Schnittstelle: %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Sie haben keine Netzwerkkarte!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11306,11 +12180,11 @@ msgstr ""
"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
"HardDrake, bevor Sie weiter machen."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netzwerkkarte"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11325,7 +12199,7 @@ msgstr ""
"\n"
"Ich setze ihr lokales Netz damit auf."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11333,11 +12207,11 @@ msgstr ""
"Bitte wählen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
"verbunden ist."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Ihr Netzwerk ist bereits konfiguriert"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11353,15 +12227,15 @@ msgstr ""
"Sie können auch eine manuelle Einrichtung vornehmen - dafür sollten Sie "
"jedoch wissen, wie das funktioniert."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatische Rekonfiguration"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11378,7 +12252,7 @@ msgstr ""
"IP-Eigenschaften: %s\n"
"Treiber: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11398,34 +12272,34 @@ msgstr ""
"Server für Sie aufsetzen.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokales Klasse-C Netzwerk"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Diese) DHCP-Server IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Neu konfigurieren des Geräts und des DHCP-Servers"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Das lokale Netzwerk endet nicht auf „.0“ - bereinige."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Es liegt ein möglicher LAN-Adressen Konflikt in der Konfiguration\n"
"von %s vor!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11434,20 +12308,20 @@ msgstr ""
"Möglicherweise müssen Sie nach der Installation einige Einstellungen \n"
"von Hand vornehmen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurieren ..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skripte konfigurieren, Software installieren, Dienste starten ..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme beim Installieren von Paket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11458,24 +12332,24 @@ msgstr ""
"lokalen Netz mittels automatischer Netzwerk-Konfiguration (DHCP) \n"
"teilen."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Die Einstellungen wurden bereits vorgenommen, sie sind nur nicht aktiviert."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die Einstellungen wurden bereits vorgenommen und sind aktiv."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Teilen der Internetverbindung wurde noch nicht konfiguriert."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Teilen der Internetverbindung - Konfiguration"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11491,216 +12365,6 @@ msgstr ""
"\n"
"Wählen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netzwerk Konfiguration (%d Karten)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profil löschen..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Zu löschendes Profil: "
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Neues Profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Rechnername: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetzugang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Schnittstelle:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Bitte Warten"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Internet-Zugang konfigurieren"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN Konfiguration"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Treiber"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Schnittstelle"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Netzwerk konfigurieren"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Hier starten Sie den Assistenten ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Anwenden"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Einen Moment ... ich richte die Konfiguration ein"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Verbunden"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nicht Verbunden"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Verbinden ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Trenne Verbindung ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
-"diese ihr Netzwerk."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Schnittstelle eingerichtet.\n"
-"Sie können dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguration"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot-Protokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Beim Hochfahren gestartet"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP Klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Jetzt aktivieren"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "Jetzt deaktivieren"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
-"Starten Sie den Konfigurationsassistenten im Hauptfenster."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Internetverbindung eingerichtet.\n"
-"Sie können dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Verbindungstyp: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameter"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Netzwerkkarte"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sicherheitsebene einstellen"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrollzentrum"
@@ -11709,90 +12373,129 @@ msgstr "Kontrollzentrum"
msgid "Choose the tool you want to use"
msgstr "Wählen Sie das Werkzeug, das Sie verwenden wollen"
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
# ../../standalone/drakxtv_.c:37ç
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (Kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (terrestrisch)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (Kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (Kabel-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "China (terrestrisch)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japan (terrestrisch)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (Kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Osteuropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frankreich"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irland"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Westeuropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australien"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Neuseeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Südafrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentinien"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Bitte geben Sie Ihre Fernsehnorm und Region ein"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Fernsehnorm:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Region:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Sendersuche ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Sendersuche..."
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11839,7 +12542,7 @@ msgstr ""
"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
"Neuanmeldung wirksam"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "LogDrake"
@@ -11873,7 +12576,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Datei/Speichern_als"
+msgstr "/Datei/Speichern _unter ..."
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11887,13 +12590,9 @@ msgstr "/_Optionen"
msgid "/Options/Test"
msgstr "/Optionen/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hilfe"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/_Hilfe/_Über..."
+msgstr "/Hilfe/_Über ..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11951,7 +12650,7 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Inhalt der Logbücher"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "E-Mail/SMS Benachrichtigung"
@@ -11960,11 +12659,11 @@ msgstr "E-Mail/SMS Benachrichtigung"
msgid "please wait, parsing file: %s"
msgstr "Einen Moment, ich durchsuche: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Mail/SMS Benachrichtigungskonfiguration"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11974,65 +12673,99 @@ msgstr ""
"\n"
"Hier können Sie Ihr Benachrichtigungssystem einrichten.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Name der Domäne"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr ""
+"Postfix E-Mail-Server und\n"
+"Inn Diskussionsforen-Server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Dienste"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Drucker-Server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Dienste einstellen"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Sie weden benachrtichtigt, falls einer der gewählten Dienste nichtmehr "
"verfügbar ist."
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "Einstellungen laden"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Sie erhalten eine Nachricht, wen die Load über diesen Wert steigt"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "Benachrichtigungskonfiguration"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Stellen Sie ein, wie das System Sie benachrichtigen soll"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Speichern unter..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Bitte wählen Sie Ihren Maustyp."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "Kein „serial_usb“ gefunden\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Die dritte Maustaste emulieren?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Lesen der Treiber-Datenbank ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Geräteerkennung..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12078,6 +12811,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Firewall-Konfiguration"
@@ -12491,10 +13236,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia / Sound"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Werkzeuge"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentation"
@@ -12602,10 +13343,6 @@ msgstr ""
"zum durchstöbern des WWW"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivierung, Emulation, Überwachung"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzverwaltung"
@@ -12651,3 +13388,212 @@ msgstr "Multimedia / CD-Brenner"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Wissenschaftlicher Arbeitsplatzrechner"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr ""
+#~ "Der Dateisystemcheck (fsck) schlug fehl mit dem Rückgabewert %d oder "
+#~ "Signal %d."
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Grafikkartenidentifikation: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Wählen Sie die Einstellungen für den Server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Ihr Monitor ist nicht konfiguriert"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ihre Grafikkarte ist noch nicht konfiguriert"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Die Auflösungen wurden noch nicht ausgewählt"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "Versuchen Sie bitte, einige Einstellungen zu ändern"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Ein Fehler ist aufgetreten:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Verlassen in %d Sekunden"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ist dies richtig?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr ""
+#~ "Ein Fehler ist aufgetreten. Versuchen Sie bitte, einige Parameter zu "
+#~ "ändern"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 Server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Alle anzeigen"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window Konfiguration vorbereiten"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Was wollen Sie machen?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Monitor ändern"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Grafikkarte ändern"
+
+#~ msgid "Change Server options"
+#~ msgstr "Server Einstellungen ändern"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Auflösung ändern"
+
+#~ msgid "Show information"
+#~ msgstr "Informationen anzeigen"
+
+#~ msgid "Test again"
+#~ msgstr "Nochmals testen"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Ihr HP-Multifunktionsgerät wurde automatisch auch zum Scannen "
+#~ "eingerichtet. Sie können nun in der Kommandozeile mittels „ptal-hp %s "
+#~ "scan ...“ scannen. Zur Zeit existieren leider keine grafischen Werkzeuge, "
+#~ "mit deren Hilfe Sie Scannen können - Ihr Multifunktionsgerät wird noch "
+#~ "nicht unterstützt. Weitetre Informationen finden Sie in der Datei „/usr/"
+#~ "share/doc/hpoj-0.8/ptal-hp-scan.html“ auf Ihrem Rechner. Falls Sie einen "
+#~ "HP LaserJet 1100 oder 1200 haben, können Sie nur scannen, wenn Sie die "
+#~ "Scanner-Option installiert haben.\n"
+#~ "\n"
+#~ "Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Festplatte mit Dämin verwenden"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "FTP mit Dämon verwenden"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Zu installierende Pakete"
+
+#~ msgid "proftpd"
+#~ msgstr "Pro-ftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Sicherheitsebene einstellen"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafikkarte"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Wählen Sie Ihre Grafikkarte"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Wählen Sie einen X Treiber"
+
+#~ msgid "X driver"
+#~ msgstr "X Treiber"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640×480 bei 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800×600 bei 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibel, 1024×768 bei 87 Hz, interlaced (kein 800×600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024×768 bei 87 Hz, interlaced und 800×600 bei 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800×600 bei 60 Hz und 640×480 bei 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024×768 bei 60 Hz und 800×600 bei 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hochfrequenz SVGA, 1024×768 bei 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ihr Monitor kann 1600×1200 bei 70 Hz darstellen"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ihr Monitor kann 1600×1200 bei 76 Hz darstellen"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Die Gesamtgröße der zu installierenden Pakete beträgt etwa %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Falls Sie weniger als diese Menge installieren wollen, \n"
+#~ "geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
+#~ "\n"
+#~ "Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
+#~ "100%% installiert alle ausgewählten Pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Sie haben nur Platz für %d%% der ausgewählten Pakete. \n"
+#~ "\n"
+#~ "Falls Sie weniger als diese Menge installieren wollen, \n"
+#~ "geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
+#~ "Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
+#~ "%d%% installiert so viele Pakete wie möglich."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Im nächsten Schritt können Sie genauer auswählen"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Prozent der zu installierenden Pakete"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Wählen Sie eine Sicherheitsebene"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 1de4183da..e09876265 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -1,13 +1,12 @@
-# Greek Translation of DrakX.
-# Copyright (c) 1999 MandrakeSoft
-# FIRST AUTHOR Theodore J. Soldatos <theodore@eexi.gr>, 1999-2000.
-# Thanos Kyritsis <djart@hellug.gr>, 2001
+# Greek translation for drakfloppy.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Thanos Kyritsis <djart@hellug.gr>, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-23 23:59+0300\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 22:44+0300\n"
"Last-Translator: Thanos Kyritsis <djart@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
"MIME-Version: 1.0\n"
@@ -15,24 +14,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr " "
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr " Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr " \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB "
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr " X server ( )"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr " X Window"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr " "
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,43 +70,44 @@ msgstr ""
" .\n"
" ;"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr " "
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr " "
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr " XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr " X server ( )"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr " XFree ;"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr " X Window"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr " X server ( )"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr " Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr " X Window"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr " \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr " XFree ;"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s "
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -87,35 +118,19 @@ msgstr ""
" \n"
" ."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
" XFree "
"%s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s "
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-" XFree "
-"%s,\n"
-": - !"
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s "
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -129,31 +144,59 @@ msgstr ""
"\n"
" ."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+" XFree "
+"%s,\n"
+": - !"
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac ( )"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr " XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr " X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+" ;\n"
+" :\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr " "
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr ""
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr " "
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -177,513 +220,328 @@ msgstr ""
"\n"
" . , ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr " "
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr " "
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr " ;"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ": "
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr " "
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-" "
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr " :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr " %d "
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr " ;"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr " , "
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr ""
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr " "
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr " : %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr ""
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr ""
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr " ;"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr ""
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr ": %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr " : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr " : %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr ": %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr " XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr " (X-Window)"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr " ;"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr " X server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-" ;\n"
-" :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr " (X) "
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
" \n"
" (X-Windows).\n"
" ;"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr " %s "
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr " Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB "
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 87 Hz interlaced, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency 1280x1024 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency 1280x1024 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency 1280x1024 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr " 1600x1200 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr " 1600x1200 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr " "
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr " (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr " SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr " ;"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr " LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO "
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO "
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr " DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr " "
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader "
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr " "
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr " "
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA ( BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr " "
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr " "
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr ""
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr " ()"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr " "
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr ""
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr " /tmp "
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr " ( %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr " profiles"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr " Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
" `` '' "
""
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr " "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr " "
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr " Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr " Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr " "
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr " CD;"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr " OF ;"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "' ;"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -692,83 +550,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
" .\n"
" ."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr ""
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr ""
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr " "
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr " (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr " (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr " (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr ""
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr " ' "
@@ -801,53 +659,75 @@ msgstr " swap"
msgid "This label is already used"
msgstr " "
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr " %s %s "
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr " ;"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr " %s;"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr " "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr " %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+" %s.\n"
+" ``= 2=2 ...''.\n"
+" , ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr " "
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr " %s ;"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,37 +744,15 @@ msgstr ""
" ; \n"
" , ."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr " "
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr " "
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-" %s.\n"
-" ``= 2=2 ...''.\n"
-" , ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr " "
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +761,55 @@ msgstr ""
" %s .\n"
" ;"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "( %s )"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr " "
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr " "
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
" , , `-' `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr " "
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr " "
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr " "
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +818,32 @@ msgstr ""
" \n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr " "
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr " "
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr " "
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr " (shell)"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr " (Autologin)"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -990,125 +853,105 @@ msgstr ""
" .\n"
" , ."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr " ' :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr " "
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr " ."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
" "
" "
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr ""
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr " "
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr ""
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr " CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
" \n"
" ;"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr ""
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr " Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr ""
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr ""
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr ""
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr ""
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1119,7 +962,7 @@ msgstr ""
"\n"
" Internet LAN. ."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1127,7 +970,7 @@ msgstr ""
" , \n"
" ."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1136,60 +979,61 @@ msgstr ""
" \n"
" Internet. ."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
" \n"
"Internet . \n"
" ."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
" 4, . \n"
" ."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr " "
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr " "
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr " X server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1213,52 +1057,52 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr " /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr " ;"
@@ -1271,15 +1115,19 @@ msgstr " .\n"
msgid "Boot Style Configuration"
msgstr "Boot "
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "//_"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1314,14 +1162,14 @@ msgstr " Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
" %s Boot Manager.\n"
" ."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr ""
@@ -1331,7 +1179,7 @@ msgid "System mode"
msgstr " "
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr " X-Window "
#: ../../bootlook.pm_.c:148
@@ -1342,16 +1190,18 @@ msgstr ", login"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ", login (user, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr ""
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1400,7 +1250,7 @@ msgstr ""
" "
" "
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr ""
@@ -1409,7 +1259,7 @@ msgstr ""
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr ""
@@ -1438,11 +1288,12 @@ msgstr ""
msgid "Sweden"
msgstr ""
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr ""
@@ -1452,7 +1303,7 @@ msgstr ""
msgid "Austria"
msgstr ""
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1460,8 +1311,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr " !"
@@ -1475,11 +1326,12 @@ msgstr ""
"2048 )\n"
" "
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr ""
@@ -1487,11 +1339,11 @@ msgstr ""
msgid "Wizard"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1503,78 +1355,78 @@ msgstr ""
" \n"
"( , \" \")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr " :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr " ``%s'' "
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr " ``''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1582,72 +1434,77 @@ msgstr ""
" %s, "
" "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr " ;"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr " ;"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr " ;"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1655,35 +1512,35 @@ msgstr ""
" , "
" "
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1691,11 +1548,11 @@ msgstr ""
" \n"
" ;"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1703,124 +1560,131 @@ msgstr ""
" \n"
" "
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr " LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr " LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr " loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr " MB"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr " loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr " ;"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr " ext2 ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr " loopback %s;"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr " %s;"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1829,131 +1693,138 @@ msgstr ""
"\n"
" loopback. loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr " fat filesystem bounds"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr " ' ."
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
" "
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
" %s, "
" "
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr " MB"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr " ;"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr " ;"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr " ..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr " RAID "
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr " LVM "
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr " LVM;"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr " loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr " loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr " , "
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr " . ;"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr " chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr ": ."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr " partitioning;"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+" \n"
+" ;"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1965,7 +1836,7 @@ msgstr ""
" LILO , LILO "
" /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1976,7 +1847,7 @@ msgstr ""
" /boot.\n"
" LILO, /boot."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1987,139 +1858,139 @@ msgstr ""
" /boot.\n"
" /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr " %s !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
" %s, "
" "
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr " loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr " mkraid"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr " DOS : %s \n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr ": %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s "
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr " %d %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr " loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2127,27 +1998,27 @@ msgstr ""
" \n"
" ( MS-DOS, lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr " chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr " RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr " loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2159,7 +2030,7 @@ msgstr ""
" , \n"
" .\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2171,66 +2042,66 @@ msgstr ""
" \n"
"dual-booting .\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ": %s , %s , %s \n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr " LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr " : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr " bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr ": %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
" ( %d "
" )"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2241,36 +2112,66 @@ msgstr " "
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr " "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr " "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr " "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr " "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr " (domain) NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr " DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s "
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr " %s %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr " fsck %d %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr " %s: %s"
@@ -2287,75 +2188,329 @@ msgstr ""
msgid "server"
msgstr ""
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
" JFS 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
" ReiserFS "
"32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr " /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr " %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr " LVM %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
" (root)"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
" (ext2, reiserfs) "
" \n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr " LVM %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr ""
" "
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " %s : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
" - "
" . "
" "
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr " !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr " "
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "DMA "
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr " "
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "//_ ..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "DMA "
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr " %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d "
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2369,7 +2524,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2481,9 +2636,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2679,7 +2833,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2691,9 +2845,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2740,21 +2893,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2770,9 +2922,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
" , GNU/Linux\n"
" . "
@@ -2862,9 +3014,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3015,38 +3166,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3240,11 +3385,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3301,7 +3446,7 @@ msgstr ""
" .\n"
" ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3316,7 +3461,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3331,7 +3476,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3347,7 +3492,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3356,23 +3501,23 @@ msgstr ""
" . ,\n"
" COM1 Windows ttyS0 GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3394,7 +3539,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3416,7 +3561,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3424,7 +3569,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3445,7 +3590,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3472,7 +3617,7 @@ msgstr ""
" \n"
" !"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3489,29 +3634,28 @@ msgstr ""
" , \" \n"
" (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3520,7 +3664,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3546,7 +3690,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
" DrakX SCSI PCI.\n"
@@ -3577,7 +3721,7 @@ msgstr ""
" ( "
"Internet)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3588,9 +3732,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3602,7 +3745,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3697,7 +3840,7 @@ msgstr ""
"with a '*', if you\n"
"press TAB to see the boot selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3725,9 +3868,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3779,10 +3921,10 @@ msgstr ""
"Firmware \n"
"Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3790,12 +3932,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3811,7 +3952,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3822,7 +3963,7 @@ msgstr ""
" Mandrake Linux. : \n"
" ."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3842,7 +3983,7 @@ msgstr ""
" \"\" \n"
" ."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3850,12 +3991,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3881,20 +4022,20 @@ msgstr ""
"\n"
" ;\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr " broadcast NIS domain"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr " FAT %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr " FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3902,7 +4043,7 @@ msgstr ""
" , "
" ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr " %s"
@@ -3933,7 +4074,7 @@ msgstr " swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3941,59 +4082,59 @@ msgstr ""
"\n"
" ;"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr " FAT mounted /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr " "
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr " "
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr " "
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr " "
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr " Windows loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr " Linux4Win;"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr " "
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr " MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr " swap MB"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr " Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr " ;"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr " Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4002,13 +4143,16 @@ msgstr ""
" FAT, \n"
" : %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
" Windows , "
" ``defrag'' "
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4029,57 +4173,57 @@ msgstr ""
" .\n"
" , Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr " windows "
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr " %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr " FAT : %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
" FAT loopback ( "
" )"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr " "
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr " Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
" , "
"Linux;"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
" %s "
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr " "
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr " fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4088,11 +4232,11 @@ msgstr ""
" %s\n"
" , `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr " Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr " "
@@ -4100,16 +4244,16 @@ msgstr " "
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr " DrakX :"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr " : %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr " "
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr " ."
@@ -4122,12 +4266,12 @@ msgstr ""
" ( "
"Internet). ."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr " %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4139,12 +4283,12 @@ msgstr ""
" CD-ROM \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr " %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr " "
@@ -4154,9 +4298,9 @@ msgstr " "
msgid "Entering step `%s'\n"
msgstr " `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4167,199 +4311,154 @@ msgstr ""
" .\n"
" F1 CDROM, `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr " %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-" ,\n"
-" .\n"
-"\n"
-" .\n"
-" 100% ."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-" %d%% .\n"
-"\n"
-" ,\n"
-" .\n"
-" .\n"
-" %d%% ."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr " ."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr " "
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr " : %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ": %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
" "
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr " / "
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr " , "
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr " . "
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
" \n"
" ;"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr " . "
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "/ "
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr " "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr " , "
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d "
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr " %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4373,17 +4472,17 @@ msgstr ""
" Cd-Rom \"%s\" .\n"
" , CdRom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr " ;"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr " :"
@@ -4457,11 +4556,11 @@ msgstr " "
msgid "Do you really want to leave the installation?"
msgstr " ;"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4476,7 +4575,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4594,7 +4693,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4699,114 +4798,118 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr " ."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr " ;"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "/"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr " ;"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr " ."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
" ."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr " 2 "
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr " 3 "
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr " PCMCIA "
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr " IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr " ."
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4818,7 +4921,7 @@ msgstr ""
"\n"
" ;\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4826,7 +4929,7 @@ msgstr ""
" DiskDrake .\n"
" !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4835,79 +4938,82 @@ msgstr ""
" , "
" bootstrap DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr " root "
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root Partition ( )"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr " (/) ;"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
" "
""
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr " blocks;"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
" swap , "
""
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr " "
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr " . "
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
" (%"
"d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr " (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr " (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr " (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4916,53 +5022,53 @@ msgstr ""
".\n"
" ."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4972,16 +5078,16 @@ msgstr ""
" CDs, .\n"
" , Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4990,23 +5096,23 @@ msgstr ""
" %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5069,161 +5175,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr " ;"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr " GMT ( )"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr " ( NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr " NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr " CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr " ;"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "K ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr " TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr " Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr " root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
" ( %d "
" )"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr " LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr " LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr " (domain) NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr " LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr " (domain) NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr " NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5250,19 +5387,19 @@ msgstr ""
" .\n"
" ;"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5289,7 +5426,7 @@ msgstr ""
" ;\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5298,28 +5435,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr ", "
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5331,11 +5468,11 @@ msgstr ""
" , \n"
" BootX "
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr " aboot;"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5344,18 +5481,18 @@ msgstr ""
" , "
" ;"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr ". . "
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
" . "
":"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5372,18 +5509,17 @@ msgstr ""
" : shut-down\n"
" bootloader."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5393,7 +5529,8 @@ msgstr ""
"\n"
" ;"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5404,7 +5541,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5419,18 +5556,22 @@ msgstr ""
" \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
" "
"\n"
" Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5444,15 +5585,15 @@ msgstr ""
"\n"
" .\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr " "
@@ -5480,418 +5621,402 @@ msgstr ""
msgid "Choose a file"
msgstr " "
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr " "
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr " "
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr " , \n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr " ; (' %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr " ; (' %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr ": %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr " aboot;"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr " ; (' %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr " (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr ""
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr ""
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr ""
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr ""
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr ""
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr ""
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr " (UK)"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "... (US)"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr " ()"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr " ()"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr " ()"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr " (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak ()"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak ()"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak ()"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr " (\"\" )"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr " (\"\" )"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr ""
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr ""
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr " 106 "
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr " "
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr " "
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr " AZERTY ()"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr " AZERTY ()"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr " \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr " \"\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr " ( qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr " ( qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr " ()"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr " (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr " (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr " (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr " (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr " (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr ""
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr " ( \"F\" )"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr " ( \"Q\" )"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US "
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr " \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr " (/)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5904,7 +6029,31 @@ msgstr " %s\n"
msgid "Remove the logical volumes first\n"
msgstr " logical volumes \n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr " "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr ". ."
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5945,10 +6094,6 @@ msgstr "1 "
msgid "Generic 2 Button Mouse"
msgstr " 2 "
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr " "
@@ -6013,38 +6158,54 @@ msgstr ""
msgid "No mouse"
msgstr " "
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr " "
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr " "
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr " !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr " -"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- "
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr ";"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr " "
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr " "
@@ -6091,7 +6252,7 @@ msgstr ""
" Ethernet .\n"
" ."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr " "
@@ -6106,7 +6267,7 @@ msgstr ""
msgid "no network card found"
msgstr " "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr " "
@@ -6122,15 +6283,15 @@ msgstr ""
" ,\n"
" .. ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr " "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr " "
@@ -6186,7 +6347,7 @@ msgstr " ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
" \n"
" , Unlisted"
@@ -6209,14 +6370,14 @@ msgstr " "
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
" \n"
" D-Channel ( )"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr " ;"
#: ../../network/isdn.pm_.c:199
@@ -6240,7 +6401,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
" ISA , .\n"
@@ -6256,13 +6418,13 @@ msgid "Continue"
msgstr ""
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr " ISDN ;"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
" ISDN , . "
" PCI ."
@@ -6279,47 +6441,47 @@ msgstr " modem ;"
msgid "Dialup options"
msgstr " dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr " "
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr " "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr " script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr " "
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr " "
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr " DNS ()"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr " DNS ()"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6327,7 +6489,7 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6335,11 +6497,11 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr " ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6347,33 +6509,33 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr " ."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr " (internet)"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr " %s ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6392,12 +6554,12 @@ msgstr ""
"\n"
" OK "
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6408,9 +6570,9 @@ msgstr ""
" , "
" Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6421,66 +6583,72 @@ msgstr ""
" , "
"checkbox.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr " "
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr " "
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr " "
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr " ..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr " modem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr " ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr " ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr " "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr " LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "() ethernet "
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr " "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6490,23 +6658,23 @@ msgstr ""
" .\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr " Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr " ;"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6517,7 +6685,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6527,7 +6695,7 @@ msgstr ""
"\n"
" .\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6535,16 +6703,16 @@ msgstr ""
" , \n"
" hostname."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6554,7 +6722,7 @@ msgstr ""
" OK .\n"
" ."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6564,38 +6732,43 @@ msgstr ""
" IP \n"
" (: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr " %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr " IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr " "
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr " IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr " "
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr " IP 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6607,64 +6780,64 @@ msgstr ""
" .. ``mybox.mylab.myco.com''.\n"
" IP "
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr " DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr " "
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr " proxies"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr " proxy http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr " proxy ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr " (Internet)"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr " ;"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr " ... "
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr " ."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr " , ."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6672,113 +6845,118 @@ msgstr ""
" .\n"
" ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr " "
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr " "
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ "
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "DMA "
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO "
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 "
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 "
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr " "
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr " (.. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr " "
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 ()"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 ()"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr " "
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr " "
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr " "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr " : "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "' (user name)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr " "
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr " : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr " "
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
" .\n"
" "
" "
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr " %s : %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr " "
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr " %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6789,194 +6967,194 @@ msgstr ""
" "
""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr " "
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr " "
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr ""
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr " "
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr " "
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr " CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr " lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr " (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr " "
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr " URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
#, fuzzy
msgid "Pipe job into a command"
msgstr " "
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr " "
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr " "
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr " %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(module %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP CUPS:"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " ( ' )"
@@ -7000,12 +7178,12 @@ msgstr ""
" . , \n"
"IP CUPS ."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr " L"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr " CUPS"
@@ -7035,7 +7213,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr " IP 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr " !"
@@ -7043,7 +7221,7 @@ msgstr " !"
msgid "CUPS server IP"
msgstr "IP CUPS:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr ""
@@ -7052,22 +7230,13 @@ msgstr ""
msgid "Automatic CUPS configuration"
msgstr "Boot "
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr " ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr " "
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr " "
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7080,14 +7249,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr " "
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7105,12 +7274,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr " "
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7124,11 +7293,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7138,35 +7307,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr " "
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr " "
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr " "
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr " %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7174,43 +7347,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr " URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr " "
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7218,7 +7391,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7226,73 +7399,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr " modem ;"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr " URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr " %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr " lpd "
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7303,30 +7486,30 @@ msgstr ""
", \n"
" ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr " :"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr " "
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr " !"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr " !"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr " SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7341,35 +7524,35 @@ msgstr ""
", \n"
", ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr " SMB :"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP SMB :"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr " :"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr " :"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr " IP !"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr " Samba !"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7393,7 +7576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7402,7 +7585,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7410,11 +7593,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr " NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7428,28 +7611,28 @@ msgstr ""
" , \n"
" ."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr " "
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr " "
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr " NCP !"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr " NCP !"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr " socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7460,20 +7643,20 @@ msgstr ""
" socket, \n"
" ."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr " "
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr " !"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr " URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
#, fuzzy
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
@@ -7484,11 +7667,11 @@ msgstr ""
" CUPS Foomatic . "
" URI spoolers."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr " URI !"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7498,29 +7681,25 @@ msgstr ""
" \n"
". ."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr " "
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr ""
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr " "
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7535,26 +7714,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr ";"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr " "
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr " "
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr " ;"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7563,18 +7742,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr " (Internet)"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7584,12 +7763,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr " (Internet)"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7597,7 +7776,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7610,7 +7789,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7620,34 +7799,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr " ;"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7655,44 +7834,44 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr ""
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr " ..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr " ..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr " ..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7708,7 +7887,7 @@ msgstr ""
"\n"
" "
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7718,16 +7897,16 @@ msgstr ""
" .\n"
" ;"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr " "
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7736,15 +7915,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7753,49 +7932,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7805,7 +7984,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7814,30 +7993,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr ""
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr " ."
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr " ."
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr " ."
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr " ."
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr " "
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7845,37 +8035,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr " (Internet)"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7885,51 +8075,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7937,63 +8127,63 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
" , "
" underscore"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr " "
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr " "
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr " "
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8001,12 +8191,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr " "
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8016,34 +8206,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr " ;"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8058,12 +8248,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr " ;"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8077,66 +8267,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr " Spooler E"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr " ;"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr " "
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr " "
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr " "
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr " ;"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr ""
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8147,7 +8337,7 @@ msgstr ""
" .\n"
" ."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8157,139 +8347,143 @@ msgstr ""
" .\n"
" ."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr " "
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr " "
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr " ;"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr " (Internet)"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr " ;"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr " Internet"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr " "
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr " ..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr " ;"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr " "
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr " ;"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr " "
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8374,24 +8568,61 @@ msgstr " . !"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr " __ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr " %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr " mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr " mkraid ( raidtools;)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr " RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+" . \n"
+" , . "
+"\n"
+" Internet LAN. ."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+" \n"
+"Internet . \n"
+" ."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr " L"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr ""
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr " ALSA (Advanced Linux Sound Architecture) "
@@ -8449,7 +8680,7 @@ msgstr ""
" HardDrake \n"
" / ."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8528,7 +8759,7 @@ msgstr ""
"Linux Virtual , \n"
" ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8607,7 +8838,7 @@ msgstr ""
" NFS NIS. \n"
" ."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8709,7 +8940,7 @@ msgstr ""
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr " "
@@ -8833,6 +9064,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr " "
@@ -8936,6 +9168,15 @@ msgstr ""
msgid "Installing packages..."
msgstr " %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr " Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr " %s "
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8944,6 +9185,161 @@ msgstr ""
" , :(\n"
" "
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr " (Internet)"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr " NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr " NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr " DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr " DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr " %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "!"
@@ -8984,6 +9380,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr " "
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8992,47 +9393,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr ""
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr " "
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr " loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9040,15 +9434,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9056,709 +9442,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr " %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr " "
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr " "
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr " Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr " "
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr " "
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr " "
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr " "
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr " LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr " "
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr " ."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr " "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr " "
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr " "
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr " "
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr " "
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr " "
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr " ."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr " "
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr " "
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr " "
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr " "
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr " "
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr ". . ."
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr " : %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr " modem ;"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr " "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr " "
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr " ."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr " LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr " "
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr " ."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr ""
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr " "
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr " "
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr ""
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- "
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr ":"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr " -"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr " "
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr " "
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr " ."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr " ."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr " ."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr " "
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr " "
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr " "
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr " "
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr " "
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr " "
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr " "
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr " L"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr " L"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr ". . ."
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9790,7 +10239,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9799,7 +10248,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9840,7 +10289,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9868,12 +10317,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9890,7 +10344,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9930,7 +10384,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9941,7 +10395,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9954,7 +10408,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9998,103 +10452,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr " %s . :"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr " :"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr " "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr " "
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+" "
+" "
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr " (%d adapters)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr ": "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr " :"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr " : "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr " Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr " :"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr " Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr " LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr " ... "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+" .\n"
+" ''"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr " L"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr " %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr " DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+" internet.\n"
+" ''"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr " (internet)"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr " (internet)"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr " : "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr " Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr " DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ": drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr " (module)"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "' "
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr " DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr " mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr " (module)"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr " (modules) scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr " (modules) raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr " (module)"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr " (Output)"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr " %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+" %s.\n"
+" ."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr " fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+" mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr " "
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr ""
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr " "
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr ""
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10103,122 +10985,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr ". ."
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr " L"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr " "
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr " "
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr ""
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr ""
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr " "
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr " "
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr " "
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr " Init"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr " !"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr ""
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr " !"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr ""
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr " Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr " Internet "
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10230,31 +11111,31 @@ msgstr ""
"\n"
" ;"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr " Internet "
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr " Internet "
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10266,19 +11147,19 @@ msgstr ""
"\n"
" ;"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr " Internet "
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10293,21 +11174,21 @@ msgstr ""
": "
" (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr " %s ( %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr " %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr " !"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10315,11 +11196,11 @@ msgstr ""
" Ethernet . "
" ."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr " "
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10334,7 +11215,7 @@ msgstr ""
"\n"
" ."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10342,12 +11223,12 @@ msgstr ""
" \n"
" ."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr " "
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10357,17 +11238,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Boot "
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr " (Internet)"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10378,7 +11259,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10390,34 +11271,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP CUPS:"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
" LAN %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr " firewall!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10425,20 +11306,20 @@ msgstr ""
"! firewall. "
"\"\" ."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ", , ..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr " %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10449,23 +11330,23 @@ msgstr ""
" , "
"(DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr " , ."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr " , ."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr " Internet ."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr " (internet)"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10480,211 +11361,6 @@ msgstr ""
"\n"
" ."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr " (%d adapters)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr ": "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr " :"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr " : "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr " Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr " :"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr " Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr " LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr " ... "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr ""
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr " "
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-" .\n"
-" ''"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr " L"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr " %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr " "
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr " "
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr " DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-" internet.\n"
-" ''"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr " (internet)"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr " (internet)"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr " : "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr " "
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr " Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr " DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr " "
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr " "
@@ -10693,94 +11369,130 @@ msgstr " "
msgid "Choose the tool you want to use"
msgstr " "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr " ()"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr " :"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10824,7 +11536,7 @@ msgstr " live upgrade!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10842,7 +11554,7 @@ msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr "//_"
+msgstr "//_"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
@@ -10850,7 +11562,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "//_"
+msgstr "/_"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -10870,11 +11582,7 @@ msgstr "/_"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "//"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_"
+msgstr "//"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
@@ -10939,7 +11647,7 @@ msgstr ""
msgid "Content of the file"
msgstr " "
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10948,12 +11656,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr " , : %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr " "
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -10965,68 +11673,99 @@ msgstr ""
", http ftp proxies\n"
" login \n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr " "
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr " NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr " Postfix, Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr " NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr " NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr " "
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr ""
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr ""
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr " "
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr " "
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr " ."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr " serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr " ;"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr " CUPS"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr " ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11070,6 +11809,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr " Firewalling"
@@ -11485,10 +12236,6 @@ msgid "Multimedia - Sound"
msgstr " - "
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr ""
@@ -11592,10 +12339,6 @@ msgstr ""
" Web Browsers"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ", , "
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr " "
@@ -11641,1484 +12384,158 @@ msgstr " - CD"
msgid "Scientific Workstation"
msgstr " "
-#, fuzzy
-#~ msgid "About"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr " ' :"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr " "
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr " %s"
-
-#~ msgid "mount failed"
-#~ msgstr " "
-
-#~ msgid "Low"
-#~ msgstr ""
-
-#~ msgid "Medium"
-#~ msgstr ""
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ " , \n"
-#~ " ."
-
-#~ msgid "Boot mode"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ " GNU/Linux GMT (\"Greenwich Mean Time\" \n"
-#~ "\" \") \n"
-#~ " ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr " (internet)"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr " (internet)"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr " ( )"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr " ;"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr " "
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr " fsck %d %d"
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr ""
+#~ msgid "Choose options for server"
+#~ msgstr " X server"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr " Gnome"
+#~ msgid "Monitor not configured"
+#~ msgstr " "
-#~ msgid "authentification"
-#~ msgstr ""
+#~ msgid "Graphics card not configured yet"
+#~ msgstr " "
-#~ msgid "user"
-#~ msgstr ""
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr " "
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr " ."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr " "
-
-#~ msgid "Active"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr ""
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr " \"%s\" "
-
-#~ msgid "Local Printer Device"
-#~ msgstr " "
-
-#~ msgid "Printer Device"
-#~ msgstr " "
-
-#~ msgid "Device/file name missing!"
-#~ msgstr " !"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr " CUPS"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr " CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr " ."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr ": "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr ""
-
-#~ msgid "Starting your connection..."
-#~ msgstr " ..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr " ..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ " .\n"
-#~ " \n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ " root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr " ."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr " "
-
-#~ msgid "Total size: "
-#~ msgstr " : "
-
-#~ msgid "Please wait, "
-#~ msgstr " , "
-
-#~ msgid "Total time "
-#~ msgstr " "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr " 11;"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ " ;\n"
-#~ "(: /dev/lp0 LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ ", . "
-#~ "."
-
-#~ msgid "New"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr " "
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr " (%s), \n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ; (' %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr " ; (' %s `none' ) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr " /etc/sysconfig/autologin : %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr " ;"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ ";"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr " :\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr " %s. ;"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ " , \n"
-#~ " \"/dev/hda\" ( ), \"/dev/sda\n"
-#~ "( SCSI )."
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr " ' :"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Test the mouse here."
-#~ msgstr " ."
-
-#~ msgid "Press next to continue."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ " "
-#~ ".\n"
#~ "\n"
-#~ "\n"
-#~ " \"\" .\n"
-#~ "\n"
-#~ "\n"
-#~ " \"\" . "
-#~ " \n"
-#~ " ."
+#~ " "
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr ""
-#~ " "
-#~ " "
+#~ msgid "An error occurred:"
+#~ msgstr " :"
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ " ( )\n"
-#~ " ."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr " %d "
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ ":\n"
-#~ "\n"
-#~ " - : Linux, \n"
-#~ " , "
-#~ "\n"
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : GNU/Linux "
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ " . "
-#~ "\n"
-#~ " (\"\") ."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ " \n"
-#~ " :\n"
-#~ "\n"
-#~ "* : "
-#~ "\n"
-#~ " , . \n"
-#~ "\n"
-#~ "* : "
-#~ "\n"
-#~ " . "
-#~ "\n"
-#~ " , , "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "* : "
-#~ "\n"
-#~ " , (NFS SMB), (lp SMB), "
-#~ "\n"
-#~ " (NIS), . , "
-#~ "\n"
-#~ " KDE, Gnome ."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ " "
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " DrakX .\n"
-#~ " , . , "
-#~ "\n"
-#~ " , "
-#~ ".\n"
-#~ " \" "
-#~ "\". \n"
-#~ " 1000 ."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ " \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ "\" \".\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ "\" \". , \n"
-#~ " \n"
-#~ " ."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ " CDs, Ok.\n"
-#~ " CDs, .\n"
-#~ " , Ok."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ " . "
-#~ " \n"
-#~ " . , "
-#~ " \"\"\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " Apple , "
-#~ " \n"
-#~ " "
-#~ " 2 3\n"
-#~ " . "
-#~ "\n"
-#~ " Linux X Window GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ " ADB , USB, "
-#~ "Linux \n"
-#~ " ."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ " "
-#~ " \n"
-#~ ", , "
-#~ " \n"
-#~ " DrakX .\n"
-#~ "\n"
-#~ "\n"
-#~ " , \" "
-#~ "\".\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ " , \"\"."
+#~ msgid "Is this the correct setting?"
+#~ msgstr " ;"
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ " modem. \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ ", ( \"COM1\" Microsoft "
-#~ "Windows),\n"
-#~ " Linux \"ttyS0\"."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr " , "
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ " dial-up. "
-#~ "\n"
-#~ " , "
-#~ " \n"
-#~ " . (DNS), "
-#~ " \n"
-#~ " ."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ " modem , DrakX "
-#~ " ."
+#~ msgid "Show all"
+#~ msgstr " "
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr " modem ."
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr " (X-Window)"
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ " dial-up. "
-#~ "\n"
-#~ " , "
-#~ " \n"
-#~ " . (DNS), "
-#~ " \n"
-#~ " ."
+#~ msgid "What do you want to do?"
+#~ msgstr " ;"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ " ( ). "
-#~ " ,\n"
-#~ " ."
+#~ msgid "Change Monitor"
+#~ msgstr " "
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ " - IP: , \n"
-#~ " .\n"
-#~ " IP \" IP"
-#~ "\"\n"
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : \"255.255.255.0\" . \n"
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP: "
-#~ "\n"
-#~ "BOOTP DHCP, . , "
-#~ "\n"
-#~ " IP. , \n"
-#~ " ."
+#~ msgid "Change Graphics card"
+#~ msgstr " "
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ " . \n"
-#~ " , ."
+#~ msgid "Change Server options"
+#~ msgstr " X server"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ " . \n"
-#~ " , ."
+#~ msgid "Change Resolution"
+#~ msgstr " "
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ " dialup. "
-#~ ",\n"
-#~ " ."
+#~ msgid "Show information"
+#~ msgstr " "
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ " proxies, . "
-#~ ",\n"
-#~ " ."
+#~ msgid "Test again"
+#~ msgstr " "
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ " , \n"
-#~ " . '\n"
-#~ " \n"
-#~ ".\n"
-#~ "\n"
-#~ " \n"
-#~ " ."
+#~ msgid "Setting security level"
+#~ msgstr " "
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr " ."
+#~ msgid "Graphics card"
+#~ msgstr " "
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ " ( "
-#~ ") \n"
-#~ " ( UNIX , Netware \n"
-#~ "Microsoft Windows)."
+#~ msgid "Select a graphics card"
+#~ msgstr " "
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ " , \n"
-#~ "(CUPS LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ " CUPS , UNIX \n"
-#~ ". Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ " LPR .\n"
-#~ "\n"
-#~ " , \"\"."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ": "
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ " GNU/Linux . "
-#~ " \n"
-#~ " .\n"
-#~ "\n"
-#~ " , "
-#~ "\"\n"
-#~ "\".\n"
-#~ "\n"
-#~ " "
-#~ "UNIX\n"
-#~ ", \" \".\n"
-#~ "\n"
-#~ "\n"
-#~ " "
-#~ "Windows\n"
-#~ " ( UNIX SMB ), \"SMB/Windows 95/98/NT\"."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 60 Hz"
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ " DrakX.\n"
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ "...* : print spooler \"lp\" "
-#~ " . , \"lp"
-#~ "\".\n"
-#~ " , "
-#~ " . pipe\n"
-#~ " ( \"|\"). , "
-#~ ", , .: \"My printer|lp\".\n"
-#~ " \"lp\" "
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ "...* : "
-#~ " \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " * : \n"
-#~ " , ( "
-#~ " \n"
-#~ " , \"2 \").\n"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 56 Hz"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " * : print spooler \"lp\" "
-#~ " . , "
-#~ " \"lp\".\n"
-#~ " , "
-#~ " . pipe\n"
-#~ " ( \"|\"). , "
-#~ " , , .: \"My printer|lp\".\n"
-#~ " \"lp\" "
-#~ ".\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool: "
-#~ " . ' \n"
-#~ " \n"
-#~ "\n"
-#~ "\n"
-#~ " * : "
-#~ " , \" \".\n"
-#~ " "
-#~ " Unix , \" lpd \".\n"
-#~ "\n"
-#~ "\n"
-#~ " "
-#~ " Microsoft Windows ( Unix SMB\n"
-#~ " ), \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " "
-#~ "NetWare , \"NetWare\".\n"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatible, 1024x768 87 Hz interlaced (no 800x600)"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ " . \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " . "
-#~ "\n"
-#~ "\"/dev/lp0\" GNU/Linux \"LPT1\" Microsoft Windows."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 87 Hz interlaced, 800x600 56 Hz"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr " "
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ " .\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " "
-#~ " ."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ " - \"root\".\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " root \n"
-#~ " . , \n"
-#~ " ! \n"
-#~ " root \n"
-#~ " , \n"
-#~ " . \n"
-#~ "\n"
-#~ "\n"
-#~ " \n"
-#~ " (8) . ** \n"
-#~ " ."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 70 Hz"
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
#~ msgstr ""
-#~ " LDAP ( NIS) , "
-#~ "\n"
-#~ "\"LDAP\" ( \"NIS\") . , "
-#~ "\n"
-#~ " .\n"
-#~ " , "
-#~ " \n"
-#~ " \" \" ."
+#~ "Multi-frequency 1280x1024 60 Hz"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
#~ msgstr ""
-#~ " \"\" ,\n"
-#~ "( \"\" , root). \n"
-#~ " \n"
-#~ " . \n"
-#~ " ( , ),\n"
-#~ " \"home directory\", \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ "' , ! \n"
-#~ " , \n"
-#~ " root , \n"
-#~ " . \n"
-#~ " root.\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ " root \n"
-#~ " ."
+#~ "Multi-frequency 1280x1024 74 Hz"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
#~ msgstr ""
-#~ " . \n"
-#~ " , \n"
-#~ " ."
+#~ "Multi-frequency 1280x1024 76 Hz"
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ " LILO grub :\n"
-#~ " - : (.. \n"
-#~ ") . \n"
-#~ " , \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : \n"
-#~ " .\n"
-#~ " \n"
-#~ " . \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " - : VGA \n"
-#~ " . : \n"
-#~ "\n"
-#~ " * normal: 8025.\n"
-#~ "\n"
-#~ " * <>: .\n"
-#~ "\n"
-#~ " - \"/tmp\" : "
-#~ " \n"
-#~ " \"/tmp\" , "
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " - RAM : , "
-#~ " \n"
-#~ "BIOS RAM . , Linux "
-#~ "\n"
-#~ " RAM . , \n"
-#~ " . "
-#~ " 2 4\n"
-#~ "MB RAM "
-#~ " ."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr " 1600x1200 70 Hz"
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ " SILO SPARC: \n"
-#~ " GNU/Linux . "
-#~ ", \n"
-#~ " . "
-#~ " \n"
-#~ ", . \n"
-#~ " .\n"
-#~ "\n"
-#~ " "
-#~ "\n"
-#~ " . , "
-#~ " \n"
-#~ " !"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr " 1600x1200 76 Hz"
#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ " SILO :\n"
-#~ " - bootloader: "
-#~ "\n"
-#~ " GNU/Linux . "
-#~ ",\n"
-#~ " \" (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : \n"
-#~ " .\n"
-#~ " \n"
-#~ " . \n"
-#~ " ."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr " %d MB.\n"
#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ " X Window System, \n"
-#~ " (GUI) GNU/Linux. \n"
-#~ " . \n"
-#~ " , \n"
-#~ " \n"
-#~ " :)\n"
-#~ "\n"
+#~ " ,\n"
+#~ " .\n"
#~ "\n"
-#~ " , \n"
-#~ "X Window ( ), \n"
-#~ " . , \n"
-#~ " \n"
-#~ " ."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ " , \n"
-#~ " (X Window System)."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ " \"\". , \n"
-#~ " \"\"."
+#~ " .\n"
+#~ " 100% ."
#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ " . "
-#~ " manual \n"
-#~ " . , , "
-#~ " .\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ " .\n"
+#~ " %d%% .\n"
#~ "\n"
-#~ " , Mandrake Linux \n"
-#~ ". , "
-#~ "\n"
-#~ " ."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr " ()"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr " ()"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr " :"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "' Runlevel"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr " /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr " "
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr " ,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr " "
-
-#~ msgid "Reload"
-#~ msgstr ""
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ " "
-#~ " ;"
-
-#~ msgid "ADSL configuration"
-#~ msgstr " ADSL"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr " !"
-
-#~ msgid ""
-#~ "Here you can specify any arbitrary command line into which the job should "
-#~ "be piped instead of being sent directly to a printer."
-#~ msgstr ""
-#~ " "
-#~ " ."
-
-#~ msgid "Command line"
-#~ msgstr " "
-
-#~ msgid "A command line must be entered!"
-#~ msgstr " !"
-
-#~ msgid "Enter Printer Name and Comments"
-#~ msgstr " "
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr " "
-
-#~ msgid "Unrecognized config file"
-#~ msgstr " "
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#~ msgid "Disable network"
-#~ msgstr " "
-
-#~ msgid "Enable network"
-#~ msgstr " "
-
-#~ msgid "Network Monitoring"
-#~ msgstr " "
-
-#~ msgid "Profile "
-#~ msgstr " "
-
-#~ msgid "Statistics"
-#~ msgstr ""
-
-#~ msgid "Sending Speed:"
-#~ msgstr " : "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr " : "
-
-#~ msgid "Logs"
-#~ msgstr "Logs"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr " (internet)"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr " (internet)"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr " (internet) ."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr " (internet) "
-
-#~ msgid "Connection complete."
-#~ msgstr " "
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ " .\n"
-#~ " Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr ": "
-
-#~ msgid "received: "
-#~ msgstr ": "
-
-#~ msgid "average"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ " . \n"
-#~ " . , \n"
-#~ "\"\" ."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr " DSL ( ADSL)"
-
-#~ msgid "Choose"
-#~ msgstr ""
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ " URI CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr ", ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr ", PostScrip"
-
-#~ msgid "Yes, print both test pages"
-#~ msgstr ", "
-
-#~ msgid "Paper Size"
-#~ msgstr " "
-
-#~ msgid "Eject page after job?"
-#~ msgstr " ;"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr " Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr " "
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr " PostScript;"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr " -;"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr " "
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "/ (1/72 )"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "/ (1/72 )"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr " GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr " "
-
-#~ msgid "Reverse page order"
-#~ msgstr " ;"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected.\n"
-#~ "In case of doubt, select \"Remote CUPS server\"."
-#~ msgstr ""
-#~ " CUPS, \n"
-#~ ". . , "
-#~ "\n"
-#~ "\" CUPS\"."
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ " ( lp). "
-#~ " \n"
-#~ " . \n"
-#~ " ;"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ " ( ) \n"
-#~ " ( lp) . \n"
-#~ " ;"
-
-#~ msgid "Name of queue"
-#~ msgstr " "
+#~ " ,\n"
+#~ " .\n"
+#~ " .\n"
+#~ " %d%% ."
-#~ msgid "Spool directory"
-#~ msgstr ""
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr " ."
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1"
+#~ msgid "Percentage of packages to install"
+#~ msgstr " "
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2"
+#~ msgid "Please choose the desired security level."
+#~ msgstr " "
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 431df175c..148083a67 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -1,78 +1,110 @@
-#
-# MESAOJ DE DrakX
-# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000
+# Esperanto drakbootdisk
+# Copyright (C) 2000, 2001 Mandrakesoft
+# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-02 22:36-0500\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 19:15-0500\n"
"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-3\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB a pli"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Elektu X servilon"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X servilo"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Plur-ekrana konfigurao"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafika karto"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Elektu memorkapaciton de via grafika karto"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Elektu grafikan karton"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree Konfigurado"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Elektu X servilon"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kiun konfiguron de XFree vi deziras havi?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X servilo"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Elektu X servilon"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X servilo"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "ISDN-a Konfiguraon"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kiun konfiguron de XFree vi deziras havi?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s kun 3D aparata akcelado"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -81,32 +113,17 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s kun 3D aparata akcelado"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"NOTU KE I TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -118,31 +135,58 @@ msgstr ""
"KOMPUTILON.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"NOTU KE I TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree Konfigurado"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Elektu memorkapaciton de via grafika karto"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Elektu opciojn por servilo"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"u vi deziras teni la anojn?\n"
+"Nuna konfiguro estas:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Elektu ekranon"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ekrano"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Akomodata"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Genera"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Malfaru"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -164,514 +208,325 @@ msgstr ""
"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikala refreigrapido (vertical refresh rate)"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ekrano ne estas konfigurata"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafika karto ne jam konfigurita"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Vi ne jam elektas distingivojn"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "u vi deziras provi la konfiguraon?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Averto: provado de i tiu grafika karto eble svenigos vian komputilon"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Provu konfiguraon"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 koloroj (8 bitoj)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"penu ani iom da parametroj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil koloroj (15 bitoj)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Eraro okazis:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil koloroj (16 bitoj)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Mi eliros post %d sekundoj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milionoj koloroj (24 bitoj)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "u tio i pravas?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardoj koloroj (32 bitoj)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Eraro okazis, penu ani iom da parametroj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Distingivoj"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Distingivo"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Elektu distingivon kaj kolorprofundon"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 servilo: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Plu"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Nuligu"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Jeso"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Spertula Modalo"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Montru tuton"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "u vi deziras provi la konfiguraon?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Distingivoj"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Provu konfiguraon"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavara arano: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Speco de muso: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Musaparato: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ekrano: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekrana vertikala refreigrapido (vertical refresh rate): %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafika karto: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafika karto: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Graifka memoro: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Kolorprofuneco: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Distingivo: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 servilo: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 pelilo: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparas X-Fenestran konfiguraon"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Kion vi deziras fari?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "anu Ekranon"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "anu Grafika karto"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "anu Servilajn opciojn"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "anu distingivon"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Montru informon"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Provu denove"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "esu"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"u vi deziras teni la anojn?\n"
-"Nuna konfiguro estas:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X Fenestro e komenco"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mi povas konfiguri vian komputilon tiel ke i atomate lanos X kiam i\n"
"ekfunkcias. u vi deziras ke X atomate lanos?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Bonvolu resaluti en %s-n por aktivigi la anojn."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Bonvole adiau kaj sekve uzu Kontrol-Alt-Retropao (Ctrl-Alt-Backspace)."
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 koloroj (8 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil koloroj (15 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil koloroj (16 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milionoj koloroj (24 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardoj koloroj (32 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB a pli"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Normala VGA, 640x480 e 60 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Supera VGA, 800x600 e 56 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr ""
-"8514 kongrua karto, 1024x768 e 87 hercoj (Hz) interplektita (neniu 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr ""
-"Supera VGA, 1024x768 e 87 hercoj (Hz) interplektita, 800x600 e 56 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Etendita Supera VGA, 800x600 e 60 hercoj (Hz), 640x480 e 72 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr ""
-"Neinterplektita Supera VGA, 1024x768 e 60 hercoj (Hz), 640x480 e 72 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Altfrekvenca Supera VGA, 1024x768 e 70 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1024x768 e 60 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1280x1024 e 74 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1280x1024 e 76 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ekrano kiu povas fari 1600x1200 e 70 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ekrano kiu povas fari 1600x1200 e 76 hercoj (Hz)"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Unua sektoro de starta subdisko"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (efStartRikordo)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Instalado"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startargilon?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub Instalado"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr ""
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr ""
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Startargilo efaj opcioj"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Startargilo por uzi"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Startargila instalado"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Starta aparato"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakta"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompakta"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Grafika reimo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo anta starti defaltan sistemon"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limigu komandliniajn opciojn"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limigu"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Purigu /tmp dum iuj startadoj"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Ebligu multoblajn profilojn"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Donu kvanton de memoro en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Defalta Mastruma Sistemo?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -680,83 +535,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli a ani la ekzistantajn."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Finata"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "anu"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linukso"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kerna bildo"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Radiko"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Alfiksu"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lega-skriba"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabelo"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Danera"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etikedo"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Defalta"
@@ -789,53 +644,75 @@ msgstr "Vi devas havi interanan subdiskon"
msgid "This label is already used"
msgstr "i tiu etikedo estas jam uzata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovis %s %s interfacojn"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "u vi havas alian?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "u vi havas iun %s interfacon?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Jes"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Vidu hardvaran informon"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalas pelilon por %s karto %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nun vi povas provizi iajn opciojn al modulo %s.\n"
+"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
+"Ekzemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modulaj opcioj:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kiun %s pelilon devus mi provi?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,37 +729,15 @@ msgstr ""
"por la informo i bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
"i ne devus kazi difekton."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Atomate esploru"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Specifu opciojn"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nun vi povas provizi iajn opciojn al modulo %s.\n"
-"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
-"Ekzemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulaj opcioj:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -891,49 +746,54 @@ msgstr ""
"argado de modulo %s malsukcesis.\n"
"u vi deziras trovi denove kun aliaj parametroj?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "i tiu pasvorto estas tro simpla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "i tiu salutnomo estas jam aldonita"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "i tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -942,32 +802,32 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Vera nomo"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Salutnomo"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "elo"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Piktogramo"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Atomata-enregistrado"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -976,124 +836,104 @@ msgstr ""
"Mi povas konfiguri vian komputilon por atomate enregistri unu uzulon kiam\n"
"i startas. Se vi ne deziras uzi i tion, alklaku la `Nuligu' butonon."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Elektu la defaltan uzulon:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lani:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malanta la instalado"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "iuj"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Aldonu uzulon"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Akomodata"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS startas"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"i tiu pakao devus esti promociata.\n"
"u vi certas ke vi deziras malelekti in?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Nuligu"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Malbona"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Lanorma"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alta"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1103,7 +943,7 @@ msgstr ""
"por uzi, sed delikatega: vi devus neniam uzi i surrete.\n"
"i ne havas pasvortojn."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1111,7 +951,7 @@ msgstr ""
"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankora\n"
"ne rekomendita."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1120,55 +960,56 @@ msgstr ""
"i tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Kun i tiu sekurnivelo, uzado de i tiu komputilo kiel servilo eblias.\n"
"La sekureco nun estas sufie alta por uzi la sistemon kiel servilo kiu\n"
"akceptas konektojn de multaj klientoj."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
"malfermita. Sekurecaj aspektoj estas e iliaj maksimumoj."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Elektu sekurnivelon?"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Elektas sekurnivelon"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Elektu opciojn por servilo"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1185,20 +1026,20 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
@@ -1206,33 +1047,33 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "mankas sufie da spaco en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kie vi deziras instali la startargilon?"
@@ -1246,17 +1087,21 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Post-instala konfigurado"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Dosiero"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Dosiero/_Eliru"
+msgstr "/Dosiero/_Foriru"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>E"
+msgstr "<stir>F"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1289,12 +1134,12 @@ msgstr "Yaboot modalo"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfiguru"
@@ -1304,7 +1149,7 @@ msgid "System mode"
msgstr "Sistema modalo"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1315,14 +1160,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Jes"
@@ -1372,7 +1219,7 @@ msgid "Screenshots will be available after install in %s"
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malanta la instalado"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Franca"
@@ -1381,7 +1228,7 @@ msgstr "Franca"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1410,11 +1257,12 @@ msgstr "Norvega"
msgid "Sweden"
msgstr "Sveda"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itala"
@@ -1424,7 +1272,7 @@ msgstr "Itala"
msgid "Austria"
msgstr "seria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1432,8 +1280,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Bonvolu fari rezervan kopion de via dateno antae"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Legu zorge"
@@ -1447,11 +1295,12 @@ msgstr ""
"sufias)\n"
"e la komenco de la disko"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Eraro"
@@ -1459,11 +1308,11 @@ msgstr "Eraro"
msgid "Wizard"
msgstr "Soristo"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Elektu agon"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1475,78 +1324,78 @@ msgstr ""
"Mi sugestas ke vi unue regrandecigi tiun subdiskon\n"
"(klaku sur in, kaj poste klaku sur \"Regrandecigu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaloj"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "Dosierlokigtabelo (FAT)"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "muntado malsukcesis"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Interana"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Malplena"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Alia"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Specoj de dosiersistemoj:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Kreu"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Uzu ``%s'' anstatae"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Forigu"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Uzu ``Malmuntu'' antae"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1555,72 +1404,77 @@ msgstr ""
"estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Elektu agon"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "anu al Spertula reimo"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "anu al Normala reimo"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Malfaru"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "u mi devus dari malgrae?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "u eliru sen konservi"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "u eliru sen skribi la subdisktabelon?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "u vi deziras provi la konfiguraon?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Atomate disponigu"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Forviu ion"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Plu"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Detektado de fiksdisko(j)"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "iuj el la subdiskoj estas uzata"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1628,35 +1482,35 @@ msgstr ""
"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
"subdiskon"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skribu subdiskotabelon"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Atomata muntado de demetebla medio"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Elektu dosieron"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1664,11 +1518,11 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"u daras tamen?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Averto"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1676,124 +1530,131 @@ msgstr ""
"Enovu disketon en drajvo\n"
"iuj datenoj sur tiu disketo estos perdata"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Provas savi subdisktabelon"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Montru informon"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Surmetingo"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcioj"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Regrandecigu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Movu"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatu"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntu"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Malmuntu"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "anu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Uzu por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Komenca sektoro: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Surmetingo: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Prefero: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "anu subdiskspecon"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kiun dosierosistemo vi deziras uzi?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kie vi deziras munti retrokonektan dosieron %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kie vi deziras munti aparato %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1801,132 +1662,139 @@ msgstr ""
"Ne povas malfiksi surmetingon ar i tiu subdisko estas uzata por\n"
"retrokonektado. Unue forigu la retrokonektadon."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Kalkulas FAT dosiersistemajn limojn"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Regrandecigas"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "i tiu subdisko ne estas regrandecigebla"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "iuj datenoj en i tiu subdisko devus esti rezervata"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Post vi regrandecigas subdiskon %s, iuj datenoj en i tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Elektu la novan grandecon"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Al kiu disko vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektoro"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Al kiu sektoro vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Movante"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Movas subdisko..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nova"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr ""
"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
"aldoni al"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Vi ne povas uzi i tiun subdiskon por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Retrokonekta dosieronomo: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Vera nomo"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Alia retrokonektado jam uzas tiun dosieron, elektu alian"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Dosiero jam ekzistas. u vi deziras uzi in?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Modulaj opcioj:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "aparato"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivelo"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "grandeco de pecoj"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Zorgu: i tiu operacio estas danera."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Kiun specon de subdiskado?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"i tiu pakao devus esti promociata.\n"
+"u vi certas ke vi deziras malelekti in?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1938,7 +1806,7 @@ msgstr ""
"A vi uzos LILO kaj i ne funkcios, a vi ne uzos LILO kaj vi ne bezonas\n"
"/boot."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1950,7 +1818,7 @@ msgstr ""
"subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
"/boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1960,139 +1828,139 @@ msgstr ""
"Neniu startargilo povas trakti tiun sen /boot subdisko.\n"
"Do zorgu aldoni /boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Vi bezonos restarti anta ol la ano povas efektivii"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Post vi formatas la subdiskon %s, iuj datenoj en i tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatas"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatas subdiskon %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid malsukcesis"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Mankas sufian da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Mankas sufian da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Distingivo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Aparato: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Speco: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nomo: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Komenco: sektoro %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Grandeco: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoroj"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "De cilindro %d al cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ne formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Muntita\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Retrokonekta(j) dosiero(j): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2100,27 +1968,27 @@ msgstr ""
"Subdisko startata defalte\n"
" (por MS-DOS starto, ne por \"lilo\")\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivelo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Grandeco de pecoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Retrokonekta dosieronomo: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2128,7 +1996,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2136,65 +2004,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Grandeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informo: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Subdiskotabelospeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "e buso %d identigao %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"i tiu pasvorto ests tro simpla (i devas esti almena %d signoj longa)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2205,36 +2073,66 @@ msgstr "anu subdiskspecon"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Atentikigado"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Interreto"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Salutnomo"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Salutnomo"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domajno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNA servilo"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne scias kiel formati %s kiel speco %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
@@ -2251,68 +2149,322 @@ msgstr ""
msgid "server"
msgstr "servilo"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo e %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "i tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Mankas sufian da libera spaco por disponigi novajn subdiskojn"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
"novajn dosiersistemojn. Bonvolu kontroli vian ekipaon por la kazo de i "
"tiu problemo."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Vi ne havas iujn ajn subdiskojn!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Malproksima printilo"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Genera"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoro de Karto (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatas"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "anu subdiskspecon"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "esu"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Helpo"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Helpo"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Helpo/_Pri..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Muso"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoro de Karto (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Nuligu"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Muso"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Priskribo"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Atentikigado"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Elektu dosieron"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Prokura kluzaparato"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 butonoj"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detektado de fiksdisko(j)"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Vidu hardvaran informon"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Montru informon"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Konfiguru muson"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Duobla surmetingo %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Bonvole atendu"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundoj"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Legas datumbason de CUPS peliloj..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Atomate esploru"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2326,7 +2478,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2397,9 +2549,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2588,7 +2739,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2600,9 +2751,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2648,21 +2798,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2678,9 +2827,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2701,9 +2850,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2813,38 +2961,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2918,11 +3060,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2946,7 +3088,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2961,7 +3103,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2976,7 +3118,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2992,7 +3134,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3001,23 +3143,23 @@ msgstr ""
"Bonvolu elekti la ustan pordon. Ekzemple, la COM1-a\n"
"pordo sub MS Vindozo estas nomata ttyS0 sub GNU/Linukso."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3039,7 +3181,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3061,7 +3203,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3069,7 +3211,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3090,7 +3232,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3114,7 +3256,7 @@ msgstr ""
"al iu ajn. iokaze vi povas forstreki la respondajn enskribojn. Sed\n"
"iokaze, vi bezonos startdiskon por starti ilin!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3130,29 +3272,28 @@ msgstr ""
"Krom se vi scias precize kion vi faras, elektu \"Unua sektoro de\n"
"drajvo (MBR)\""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3161,7 +3302,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3187,7 +3328,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX provos seri PCI-a(j)n SCSI-a(j)n adaptilo(j)n\n"
@@ -3211,7 +3352,7 @@ msgstr ""
"de dokumentao de aparato, a de la TTT-ejo de la fabrikanto\n"
"(se vi havas atingon al la reto)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3221,9 +3362,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3235,7 +3375,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3261,7 +3401,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3288,18 +3428,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3307,12 +3446,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3328,14 +3466,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3346,7 +3484,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3354,12 +3492,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3374,26 +3512,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Enovu disketon en drajvo %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
@@ -3424,7 +3562,7 @@ msgstr "Vi devas havi interanan subdiskon"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3432,61 +3570,61 @@ msgstr ""
"\n"
"u vi deziras dari tamen?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vi devas havi interanan subdiskon"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Uzu liberan spacon"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Mankas sufian da libera spaco por disponigi novajn subdiskojn"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Ne ekzistas subdiskojn por uzi"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Uzu la Vindoza subdiskon por retrokonektado"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kiun subdiskon vi deziras uzi por meti Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Elektu la grandecojn"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Radikosubdiska grandeco en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Interana subdiska grandeco en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kiun subdiskon vi deziras regrandecigi?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3495,12 +3633,15 @@ msgstr ""
"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
"vian subdiskon, la sekvanta eraro okazis: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antae"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3522,56 +3663,56 @@ msgstr ""
"instaladon. Anka vi devus fari rezervan kopion de via dateno.\n"
"Kiam vi estas certa, klaku \"Jeso\"."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kiun grandecon vi deziras teni por Vindozo?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "subdisko: %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Regrandecio de FAT malsukcesis: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ne ekzistas FAT-ajn (Dosiero-Atingo-Tablo) subdiskojn por regrandecigi\n"
"a uzi kiel retrokonektaj subdiskoj (a ne estas sufia da spaco)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Forviu la tutan diskon"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Forigu Vindozon"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"iuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Uzu fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3580,12 +3721,12 @@ msgstr ""
"Nun vi povas dispartigi %s.\n"
"Kiam vi finios, ne forgesu savi kun `w'."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Mi ne povas aldoni plu da subdiskoj"
@@ -3594,16 +3735,16 @@ msgstr "Mi ne povas aldoni plu da subdiskoj"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "La Dispartigsorilo de DrakX trovis i tiujn solvojn:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Dispartigado malsukcesis: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Startado de la reto"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Haltas de la reto"
@@ -3615,12 +3756,12 @@ msgstr ""
"Eraro okazis, sed mi ne scias kiel trakti in bone.\n"
"Dari je via propra risko."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duobla surmetingo %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3632,12 +3773,12 @@ msgstr ""
"Kontrolu la KDROM sur instalata komputilo per\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Neniu disketilo havebla"
@@ -3647,9 +3788,9 @@ msgstr "Neniu disketilo havebla"
msgid "Entering step `%s'\n"
msgstr "Eniras paon `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3659,203 +3800,158 @@ msgstr ""
"instaladon. Por i tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
"tajpu `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Instalklaso"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "La totala grandeco de la grupoj vi elektis estas proksimume %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se vi volas instali malpli ol i tiu grandeco,\n"
-"elektu la procenton el la pakaoj kiuj vi deziras instali.\n"
-"\n"
-"Malalta procento instalos nur la plej gravajn pakaojn;\n"
-"100%% instalos iujn pakaojn."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vi havas spacon e via disko por nur %d%% da i tiuj pakaoj.\n"
-"\n"
-"Se vi deziras instali malpli ol tiom,\n"
-"elektu la procenton el la pakaoj kiun vi deziras instali.\n"
-"Malalta procento instalos nur la plej gravajn pakaojn;\n"
-"%d%% instalos tiom pakaojn kiom eblajn."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vi povos elekti ilin pli precize en la sekvanta pao."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procento da pakaoj por instali"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Elektado de Pakaaj Grupoj"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Elektado de individuaj pakaoj"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tuta grandeco: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Malbona pakao"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nomo: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Grandeco: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Graveco: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Vi ne povas elekti i tiun pakaon ar ne estas sufie da spaco por instali\n"
"in."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "La sekvaj pakaoj estos instalataj"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "La sekvaj pakaoj estos malinstalataj"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Vi ne povas elektu/malelektu i tiun pakaon"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "i tiu estas deviga pakao, vi ne povas malelekti in"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Vi ne povas malelekti i tiun pakaon. i estas jam instalita."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"i tiu pakao devus esti promociata.\n"
"u vi certas ke vi deziras malelekti in?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Vi ne povas malelekti i tiun pakaon. i devus esti promociata."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalu"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "argu/Konservu sur disketo"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Elektado de individuaj pakaoj"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eliru instalprogramon"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Elektu la pakaojn kiuj vi deziras instali"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalanta"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Taksas"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tempo restanta "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr "Preparas instaladon"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakaoj"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalanta pakao %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Akceptu"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Malakceptu"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3871,17 +3967,17 @@ msgstr ""
"kiam vi finos.\n"
"Se vi ne havas in, klaku \"Nuligu\" por eviti la instaladon de i tiu KDROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "u vi deziras dari tamen?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Estis eraro ordigi pakaojn:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de pakaoj:"
@@ -3926,11 +4022,11 @@ msgstr "Eraro okazis"
msgid "Do you really want to leave the installation?"
msgstr "u vi deziras provi la konfiguraon?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3945,7 +4041,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4051,113 +4147,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klavaro"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Bonvole, elektu vian klavaran aranon."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kiun instalklaso deziras vi?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalu/isdatigu"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "u tiu i estas instalado a isdatigado?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Rekomendata"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Spertulo"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "isdatigu"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Elektado de individuaj pakaoj"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muspordo"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfiguras PCMCIA kartojn..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfiguras IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "neniuj haveblaj subdiskoj"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Elektu surmetingojn"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4169,7 +4269,7 @@ msgstr ""
"\n"
"u vi konsentas perdi iujn subdiskojn?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4177,134 +4277,137 @@ msgstr ""
"DiskDrake malsukcesis uste legi la subdisktabelon.\n"
"Dari je via propra risko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Radikosubdisko"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Kiu estas la radikosubdisko (/) e via sistemo?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Vi bezonas restarti por la anoj al la subdisktabelo efektivigi"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "u kontrolas malbonajn blokojn?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatas subdiskojn"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreas kaj formatas dosieron %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nesufia interanospaco por plenumi instalado, bonvolu aldoni iom"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Seras haveblajn pakaojn"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Seras haveblajn pakaojn"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Trovadas pakaojn por promocii"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Vi ne povas malelekti i tiun pakaon. i estas jam instalita."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Via komputilo ne havas sufie da spaco por instalado a promocio (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompleta (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimuma (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Rekomendata (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "argu de disketo"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "argas de disketo"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Elektado de Pakaoj"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Enovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Konservu sur disketo"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4315,16 +4418,16 @@ msgstr ""
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
"\"."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparas instaladon"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4333,23 +4436,23 @@ msgstr ""
"Instalas pakao %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Enovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Enovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4414,161 +4517,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaoj"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la pakaojn"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaoj"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "u via hardvara horloo estas ustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Servilo"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Neniu printilo"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "u vi havas alian?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Muso"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printilo"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-karto"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Sonkarto"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Forigu Vindozon"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokaj dosieroj"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"i tiu pasvorto ests tro simpla (i devas esti almena %d signoj longa)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Atentikigado"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Atentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Servilo"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Atentikiga NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Servilo"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Atentikiga LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS Domajno"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Servilo"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4596,19 +4730,19 @@ msgstr ""
"Se vi deziras krei startdisketon por via sistemo, enovu disketon en la\n"
"unua drajvo kaj klaku \"JES\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4632,7 +4766,7 @@ msgstr ""
"sistemaj paneoj. u vi deziras krei startdisketo por via sistemo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4641,28 +4775,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bedarinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Enovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparas startargilon"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4670,11 +4804,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "u vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4682,16 +4816,16 @@ msgstr ""
"Eraro dare mi instalis \"aboot\",\n"
"u mi devus provi perforte instali e se tio detruas la unuan subdiskon?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalu restart-argilon"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalado de startargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4702,25 +4836,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Enovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Kreas atoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4731,18 +4865,22 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Kreu atoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4751,15 +4889,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Atomata"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reludu"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Elektado de individuaj pakaoj"
@@ -4787,418 +4925,402 @@ msgstr ""
msgid "Choose a file"
msgstr "Elektu agon"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Bonvole atendu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informo"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Etendu Arbon"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maletendu Arbon"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "anu inter ebena kaj ordigita je grupoj"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Malbona elektao, provu denove\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Via elektao? (defalo estas %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Via elektao? (defalo estas %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcioj: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "u vi deziras uzi aboot-on?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Via elektao? (defalo estas %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "ea (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Germana"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak-a"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Hispana"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finna"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Franca"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvega"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusa"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sveda"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Unuiinta Regna klavaro"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Usona klavaro"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albana"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armena (malnova)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armena (skribmaina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbajana (latina)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgara"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazila (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusa"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Svisa (germana arano)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Svisa (franca arano)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "ea (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Germana (neniom da mortaj klavoj)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dana"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak-a (Norvega)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estona"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Kartvela (\"Rusa\" arano)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Kartvela (\"Latina\" arano)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Greka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungara"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israela"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israela (fonetika)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Irana"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islanda"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itala"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japana 106 klavoj"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea klavaro"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinamerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litova AZERTY-a (malnova)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litova AZERTY-a (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litova \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litova \"fonetika\" QWERTY-a"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Loko"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedona"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nederlanda"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pola (qwerty arano)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pola (qwertz arano)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugala"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Kebeka)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumana (qwertz-a)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumana (qwerty-a)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusa (Yawerty-a)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbajana (cirila)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabelo"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turka (tradicia \"F\" modelo)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turka (moderna \"Q\" modelo)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajna"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Usona klavaro (internacia)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslava (latina/cirila)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5211,7 +5333,31 @@ msgstr "Cirklaj surmetingoj %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonnumero"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatu subdiskojn"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5252,10 +5398,6 @@ msgstr "1 butona"
msgid "Generic 2 Button Mouse"
msgstr "Nespecifa 2 Butona Muso"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Genera"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rado"
@@ -5321,39 +5463,55 @@ msgstr "neniu"
msgid "No mouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVU VIAN RADON!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finu"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sekvanta ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Antaa"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "u tio i pravas?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informo"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Etendu Arbon"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Maletendu Arbon"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "anu inter ebena kaj ordigita je grupoj"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konektu al la Interreto"
@@ -5402,7 +5560,7 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanu la\n"
"aparatokonfigurilon."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Elektu la retan interfacon"
@@ -5416,7 +5574,7 @@ msgstr ""
msgid "no network card found"
msgstr "neniu retkarto trovita"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfiguras reto"
@@ -5432,15 +5590,15 @@ msgstr ""
"Via potejo devus esti plene specifita potejo,\n"
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Potejo"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "ISDN-a Konfiguraon"
@@ -5490,7 +5648,7 @@ msgstr "ISDN-a Konfiguraon"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Elektu vian interretprovizanton.\n"
" Se in ne estas en la listo, elektu Nelistiitan"
@@ -5513,14 +5671,14 @@ msgstr "La cetero de la mondo"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"La cetero de la mondo \n"
" neniom da D-Kanelo (lukontraktataj lineoj)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Kiun protokolon vi deziras uzi?"
#: ../../network/isdn.pm_.c:199
@@ -5544,7 +5702,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Se via havas ISA-an karton, la valoro sur la sekvanta ekrano devus esti "
@@ -5562,13 +5721,13 @@ msgid "Continue"
msgstr "u mi devus dari?"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kiu estas via ISDN-a karto?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Mi detektis ISDN-an PCI-an Karton, sed mi ne scias la specon. Bonvole "
"elektu\n"
@@ -5589,99 +5748,99 @@ msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
msgid "Dialup options"
msgstr "Telefon-konektaj opcioj"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nomo de konekto"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnumero"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Salutnomo"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP (Pasvorta Atentikigada Protokolo)"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Programeto-bazata"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Finaparato-bazata"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domajna nomo"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Unu DNS-a Servilo (nedeviga)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Du DNS-a Servilo (nedeviga)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konektu"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Malkonektu"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Konfiguru retumon"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Interreta konektao kaj konfiguro"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5693,12 +5852,12 @@ msgid ""
"Press OK to continue."
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Reta Konfigurao"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5706,105 +5865,111 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Elektu la defaltan uzulon:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Spertuloreimo"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Duobla surmetingo %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "LAN Konfigurao"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Reta interfaco"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Konfiguru interretan konektaon"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN Konfigurao"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Disdividado de Interreta Konekto"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "u vi deziras starti vian konektaon je startado de la sistemo?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Reta Konfigurao"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5812,30 +5977,30 @@ msgid ""
"%s"
msgstr "u vi deziras provi la konfiguraon?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
#, fuzzy
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -5845,7 +6010,7 @@ msgstr ""
"Simple klaki JES por teni la konfiguron de i tiu aparato.\n"
"Se vi modifos la subajn kampojn, vi anos i tiun konfiguron."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5855,38 +6020,43 @@ msgstr ""
"iu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
"(ekzemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfiguras retan aparaton %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 pelilo: %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-adreso"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Retmasko"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Atomata IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Kreu praargdisketon"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5898,373 +6068,378 @@ msgstr ""
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
"Vi anka povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNA servilo"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Prokura kluzaparato"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfigurado de prokuraj serviloj"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP prokura servilo"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP prokura servilo"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Prokura servilo devus esti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Prokura servilo devus esti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interreta Konfigurado"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "u vi deziras provi konekti al la interreto nun?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Konfiguru interretan konektaon"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konfigurado de Konekto"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Bonvole plenigu a marku la suban kampon"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ de Karto"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoro de Karto (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "I/O (Eneligo) de Karto"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "I/O 0 (Eneligo 0) de Karto"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "I/O 1 (Eneligo 1) de Karto"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Via persona telefonnumero"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonnumero de interretprovizanto"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provizanto DNS 1 (nedeviga)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provizanto DNS 2 (nedeviga)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Elektu vian klavaron"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Diskuma modalo"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Speco de konekto"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Speco de konekto"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Konta Salutnomo (uzula nomo)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Konta Pasvorto"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "muntado malsukcesis: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "i tiu platformo ne subtenas etendatajn subdiskojn"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Vi havas truon en via subdisktabelo sed mi ne povas uzi in.\n"
"La sola solvo estas movi viajn efajn subdiskojn por situigi la truon\n"
"apud la etendataj subdiskoj."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaris el dosiero %s malsukcesis: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Malbona rezerva dosiero"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "havenda"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "grava(j)"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "tre agrabla(j)"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "agrabla(j)"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "elbe"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Malproksimaj lpd servilo"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Reta Printilo (TCP/ingo)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Vindozo 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printservilo"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printila Aparato URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulo %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP de SMB servilo"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Defalta)"
@@ -6287,12 +6462,12 @@ msgstr ""
"i tie; printiloj estos atomate dektektataj. Se vi havas dubojn,\n"
"elektu \"Malproksima CUPS servilo\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN Konfigurao"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Malproksima CUPS-a servilo"
@@ -6323,7 +6498,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6332,7 +6507,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Pordo"
@@ -6341,22 +6516,13 @@ msgstr "Pordo"
msgid "Automatic CUPS configuration"
msgstr "Post-instala konfigurado"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detektas aparatojn..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Provu pordojn"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6369,14 +6535,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6394,12 +6560,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6413,11 +6579,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6427,35 +6593,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Provu pordojn"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Duobla surmetingo %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6463,43 +6633,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6507,7 +6677,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6515,73 +6685,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalanta pakao %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Instalanta pakao %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalanta pakao %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6591,31 +6771,31 @@ msgstr ""
"printservilo kaj la printviconomon e tiu servilo en kiun taskoj devus\n"
"esti metata."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Malproksima potejo"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Malproksima potejo"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Malproksima potejo"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6630,35 +6810,35 @@ msgstr ""
"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
"tagan salutnomon, pasvorton, kaj laborgrupan informon."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Potejo de SMB servilo"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Opuza nomo"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Laborgrupo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6682,7 +6862,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6691,7 +6871,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6699,11 +6879,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6716,28 +6896,28 @@ msgstr ""
"printvican nomon por la printilo vi deziras atingi kaj iun ajn tagan\n"
"salutnomon kaj pasvorton."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printservilo"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Printvica Nomo"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Ing-Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6748,60 +6928,56 @@ msgstr ""
"Por printi al inga printilo, vi bezonas provizi la\n"
"potejon de la printilo kaj opcie la pordnumeron."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Printilaj Potejo"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Printilaj Potejo"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nomo de printilo"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Priskribo"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Loko"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6816,28 +6992,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "u tio i pravas?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kiun specon de printilo vi havas?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6846,18 +7022,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6867,12 +7043,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6880,7 +7056,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6893,7 +7069,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6903,34 +7079,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "u vi deziras provi printado?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Provu pordojn"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6938,45 +7114,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Jes, printu amba de la provpaojn"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Lanorma"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Printas provpao(j)n..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Printas provpao(j)n..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Printas provpao(j)n..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Printas provpao(j)n..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6992,7 +7168,7 @@ msgstr ""
"\n"
"u i uste funkcias?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7002,16 +7178,16 @@ msgstr ""
"i tiu eble postulas iom da tempo anta ol la printilo komencas.\n"
"u i uste funkcias?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7020,15 +7196,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7037,49 +7213,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7089,7 +7265,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7098,30 +7274,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Malfermu"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Haltas de la reto"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Malfermu"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7129,38 +7316,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7170,51 +7357,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7222,61 +7409,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Startas vian konektaon..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7284,12 +7471,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfiguras reto"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7299,34 +7486,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoja"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7341,12 +7528,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7360,70 +7547,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Elektu Printilan Konekton"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalanta pakao %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "u vi deziras konfiguri printilon?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7434,7 +7621,7 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli a ani la ekzistantajn."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7444,139 +7631,143 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli a ani la ekzistantajn."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normala Modalo"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "esu"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "u vi deziras provi la konfiguraon?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "u vi deziras provi la konfiguraon?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Disdividado de Interreta Konekto"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Printas provpao(j)n..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "u vi deziras provi la konfiguraon?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "u vi deziras provi la konfiguraon?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7656,24 +7847,60 @@ msgstr "La pasvortoj ne egalas. Provu denove!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne povas aldoni subdiskon al _formatita_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne povas skribi dosieron %s."
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid malsukcesis"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid malsukcesis (eble raidtools mankas)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufiaj subdiskoj por RAID nivelo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"vi devus uzi i tiun nivelon zorge. i faras vian komputilon pli facila\n"
+"por uzi, sed delikatega: vi devus neniam uzi i surrete.\n"
+"i ne havas pasvortojn."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Kun i tiu sekurnivelo, uzado de i tiu komputilo kiel servilo eblias.\n"
+"La sekureco nun estas sufie alta por uzi la sistemon kiel servilo kiu\n"
+"akceptas konektojn de multaj klientoj."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN Konfigurao"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcioj"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7729,7 +7956,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7796,7 +8023,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7872,7 +8099,7 @@ msgstr ""
"La pordmapservilo devas esti uzata e komputiloj kiuj agas kiel serviloj\n"
"por protokoloj kiuj uzas la RPC mekanismon."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -7969,7 +8196,7 @@ msgstr "Interreto"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistema modalo"
@@ -8094,6 +8321,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Konekti al la interreto"
@@ -8197,6 +8425,16 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalanta pakao %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Bonvole adiau kaj sekve uzu Kontrol-Alt-Retropao (Ctrl-Alt-Backspace)."
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Bonvolu resaluti en %s-n por aktivigi la anojn."
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8205,6 +8443,159 @@ msgstr ""
"Mi ne povas legi vian subdisktabelon, i estas tro difektita por mi :(\n"
"Mi penos dari per blankigi difektitajn subdiskojn"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interreta Konfigurado"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Aldonu uzanto"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Helpo"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ne konektita"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Forigu"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Elektu dosieron"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Aldonu uzanto"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Mi konfiguras..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguru"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Enovu disketon en drajvo %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Neniu disketilo havebla"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8246,6 +8637,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Kreas atoinstalan disketon"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8254,47 +8650,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratulojn!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalu"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Aldonu uzulon"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8302,15 +8691,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8318,709 +8699,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Eraro legante dosiero %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Elektado de Pakaoj"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Forigu Vindozon"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN Konfigurao"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Elektu Printilan Konekton"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Bonvole, elektu vian klavaran aranon."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Reta interfaco"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Detektado de fiksdisko(j)"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Modulaj opcioj:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Reta Konfigurao"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Musaparato: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcioj"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Reta Konfigurao"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Bonvole, provu la muson"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN Konfigurao"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Elektu Printilan Konekton"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaru de disketo"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Alia"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Akomodata"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Helpo"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Antaa"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Stato:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaru de dosiero"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Sekvanta ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Elektu pakaojn"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "La sekvaj pakaoj estos instalataj"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Reta Konfigurao"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Reta Konfigurao"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfigurao"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfigurao"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9052,7 +9496,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9061,7 +9505,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9102,7 +9546,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9130,12 +9574,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9152,7 +9601,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9192,7 +9641,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9203,7 +9652,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9216,7 +9665,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9260,104 +9709,536 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalado de %s malsukcesis. La sekvanta eraro okazis:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Konekti al la interreto"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Spertulo"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muso"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Malproksima printilo"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Opuza nomo"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printilo"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "ISDN-a Konfiguraon"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Atentikigado"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Elektado de Pakaoj"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Bonvole atendu"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Eliru instalprogramon"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "porto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malanta la instalado"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "ISDN-a Konfiguraon"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "muntado malsukcesis: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Potejo: "
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "Interreto"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Speco:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Kluzo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "Interreto"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Stato:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Konfiguru servojn"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN Konfigurao"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Pelilo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfaco"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokolo"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Stato:"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Konfiguru lokan reton"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Soristo..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Apliku"
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Provu konfiguraon"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Konektita"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ne konektita"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konektu..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Malkonektu..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN Konfigurao"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptilo %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Aktiva"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktiva"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Interreta konektao kaj konfiguro"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Interreta konektao kaj konfiguro"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Speco de konekto"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Kluzo"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uzado: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-3,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulonomo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Grandeco"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Startdiskokreado"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "defalta"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Eraro DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kerna versio"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "enerala"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Spertulejo"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opciaj argumentoj"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Aldonu modulon"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "devigu"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "se bezonata"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "forlasu SCSI-ajn modulojn"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "forlasu RAID-ajn modulojn"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Forprenu modulon"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Skribu"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Konstruu la diskon"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Kontrolu ke medio estas en la aparato %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Ne estas medio en aparato %s.\n"
+"Bonvole enovu in."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne povis forki: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne povis uste fermi mkbootdisk-on: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "neniu retkarto trovita"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Finata"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparas instaladon"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "limigu"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "limigu"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9366,121 +10247,120 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatu subdiskojn"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN Konfigurao"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Surmetingo"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oficejo"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "esigu"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printilo"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalu sistemon"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Elektu dosieron"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Malproksima printilo"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalu"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -9490,33 +10370,33 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "malebligu"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "forsendu"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "rekonfiguru"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Detektas aparatojn..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -9526,20 +10406,20 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ebligu"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9555,21 +10435,21 @@ msgstr ""
"\n"
"u vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfaco %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9577,11 +10457,11 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanu la\n"
"aparatokonfigurilon."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Reta interfaco"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9596,19 +10476,19 @@ msgstr ""
"\n"
"u vi deziras konfiguri vian Lokan Reton (LAN) kun i tiu adaptilo?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9618,17 +10498,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Post-instala konfigurado"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9639,7 +10519,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9651,33 +10531,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP de SMB servilo"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Konfigurao de barilo detektata!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9685,50 +10565,50 @@ msgstr ""
"Averto. Ekzistanta konfigurao de barilo detektata. Vi eble devas permane\n"
"fiksi in poste de la instalado."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemoj instalante pakaon %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interreta konektao kaj konfiguro"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9738,217 +10618,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ISDN-a Konfiguraon"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "muntado malsukcesis: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Potejo: "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "Interreto"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Speco:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Kluzo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "Interreto"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Stato:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Konfiguru servojn"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN Konfigurao"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Pelilo"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaco"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokolo"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Stato:"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Konfiguru lokan reton"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Soristo..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Apliku"
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Provu konfiguraon"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektita"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ne konektita"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Malkonektu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfigurao"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptilo %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktiva"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktiva"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Interreta konektao kaj konfiguro"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Interreta konektao kaj konfiguro"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Speco de konekto"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Kluzo"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Elektas sekurnivelon"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -9958,94 +10627,130 @@ msgstr "Konekti al la interreto"
msgid "Choose the tool you want to use"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanada (Kebeka)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Eropo"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Franca"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islanda"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Eropo"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seria"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Estis eraro dum instalado de pakaoj:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10094,7 +10799,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10109,7 +10814,7 @@ msgstr "/Dosiero/_Nova"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>N"
+msgstr "<stir>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10117,7 +10822,7 @@ msgstr "/Dosiero/_Malfermu"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>M"
+msgstr "<stir>M"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10125,7 +10830,7 @@ msgstr "/Dosiero/_Savu"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>S"
+msgstr "<stir>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
@@ -10143,10 +10848,6 @@ msgstr "/_Opcioj"
msgid "/Options/Test"
msgstr "/Opcioj/Provu"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Helpo"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Helpo/_Pri..."
@@ -10210,7 +10911,7 @@ msgstr "Kalendaro"
msgid "Content of the file"
msgstr "Enhavoj de la dosiero"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10219,79 +10920,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "bonvole atendu, mi vortanalizas la dosieron: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Konfiguraon"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domajna nomo"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "2a Etendata (Ext2)"
+msgid "Ftp Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Servilo"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servilo"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printservilo"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "Servilo"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatas"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Savu Kiel..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "neniu serial_usb (seria USB) trovita\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "u vi deziras emuli trian musbutonon?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Legas datumbason de CUPS peliloj..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detektas aparatojn..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10335,6 +11068,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Konfigurao de barilo"
@@ -10679,10 +11424,6 @@ msgid "Multimedia - Sound"
msgstr "Plurmedia - Sono"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentaro"
@@ -10789,10 +11530,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -10840,931 +11577,160 @@ msgstr "Plurmedia - KD-ROM Kreado"
msgid "Scientific Workstation"
msgstr "Laborstacio"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "esigu"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Finata"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Elektu la defaltan uzulon:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Malproksima printilo"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Nun vi povas provizi iajn opciojn al modulo %s."
+#~ msgid "Choose options for server"
+#~ msgstr "Elektu opciojn por servilo"
-#~ msgid "mount failed"
-#~ msgstr "muntado malsukcesis"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ekrano ne estas konfigurata"
-#~ msgid "Low"
-#~ msgstr "Malalta"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafika karto ne jam konfigurita"
-#~ msgid "Medium"
-#~ msgstr "Meza"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Vi ne jam elektas distingivojn"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Malmultaj plibonigoj e i tiu sekurnivelo, la efa estas ke i havas "
-#~ "pli\n"
-#~ "multajn sekurecajn avertojn kaj kontrolojn."
-
-#~ msgid "Boot mode"
-#~ msgstr "Starta modalo"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Spertulo"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linukso administras tempon en GMT a \"Grenvia Meza Tempo\" kaj "
-#~ "tradukas in\n"
-#~ "en lokan tempon la la horzono vi elektis."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konektu al la Interreto"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Malkonektu el la Interreto"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfiguru interretan konektaon"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Al kiu disko vi deziras movi?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Bonvole, elektu la pakaojn kiujn vi deziras instali."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informo"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnoma Laborstacio"
-
-#~ msgid "authentification"
-#~ msgstr "atentikigado"
-
-#~ msgid "user"
-#~ msgstr "uzanto"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Bonvole, elektu la specon de via muso."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "esu"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Atomata muntado de demetebla medio"
-
-#~ msgid "Active"
-#~ msgstr "Aktiva"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ne"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Printilo, tipo \"%s\", estas detektita e "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Loka Printila Aparato"
-
-#~ msgid "Printer Device"
-#~ msgstr "Printila Aparato"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Malproksima CUPS-a servilo"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Malproksima CUPS-a servilo"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linukso"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistema modalo"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Alia"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Bonvole, elektu vian klavaran aranon."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Bonvolu klaki sur subdiskon"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Speco: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Malbona rezerva dosiero"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Konfiguru X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printila Aparato"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Nuligu"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Jeso"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Malfermu"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Startas vian konektaon..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Fermas vian konektaon..."
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Kiel vi deziras konekti al la Interreto?"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Elektu la grandecon kiu vi deziras instali"
-
-#~ msgid "Total size: "
-#~ msgstr "Tuta grandeco: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Bonvolu atendi"
-
-#~ msgid "Total time "
-#~ msgstr "Tuta tempo "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Uzu ekzistantan konfiguron de X11 (X-fenestroj)?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Al kiu aparato estas via printilo konektata\n"
-#~ "(notu ke /dev/lp0 egalas LPT1:)?\n"
+#~ "\n"
+#~ "penu ani iom da parametroj"
-#~ msgid "$_"
-#~ msgstr "$_"
+#~ msgid "An error occurred:"
+#~ msgstr "Eraro okazis:"
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Averto, la retadaptilo estas jam konfigurata.\n"
-#~ "u vi deziras rekonfiguri in?"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Mi eliros post %d sekundoj"
-#~ msgid "New"
-#~ msgstr "Nova"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "u tio i pravas?"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Malproksima printvico"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Eraro okazis, penu ani iom da parametroj"
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Bonvolu klaki sur subdiskon"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 servilo: %s"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigueco (%s), esti pli preciza\n"
+#~ msgid "Show all"
+#~ msgstr "Montru tuton"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (defalto estas %s) "
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparas X-Fenestran konfiguraon"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Via elektao (defalto estas %s enigu `neniu' por elekti neniu) "
+#~ msgid "What do you want to do?"
+#~ msgstr "Kion vi deziras fari?"
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "u vi deziras provi la konfiguraon?"
+#~ msgid "Change Monitor"
+#~ msgstr "anu Ekranon"
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "u vi konsentas?"
+#~ msgid "Change Graphics card"
+#~ msgstr "anu Grafika karto"
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "u vi deziras provi la konfiguraon?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "u vi deziras provi la konfiguraon?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Krom se vi scias precize alie, la kutima elekto estas \"/dev/hda\"\n"
-#~ " (unua efa IDE-a disko) a \"/dev/sda\" (unua SCSI-a disko)."
+#~ msgid "Change Server options"
+#~ msgstr "anu Servilajn opciojn"
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Speco de konekto"
+#~ msgid "Change Resolution"
+#~ msgstr "anu distingivon"
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Elektu la defaltan uzulon:"
+#~ msgid "Show information"
+#~ msgstr "Montru informon"
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Bonvole, provu la muson"
+#~ msgid "Test again"
+#~ msgstr "Provu denove"
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Bonvole elektu vian preferatan lingvon por instalado kaj sistema uzado."
+#~ msgid "Setting security level"
+#~ msgstr "Elektas sekurnivelon"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Elektu la aranon de via klavaro el la listo supre"
+#~ msgid "Graphics card"
+#~ msgstr "Grafika karto"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Elektu:\n"
-#~ "\n"
-#~ " - Akomodata: Se vi sufie konas GNU/Linukson, vi povas elektu la efan\n"
-#~ " uzadon por via komputilo. Vidu malantae por detaloj.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Spertulo: i tio supoza ke vi flue konas GNU/Linukson kaj deziras "
-#~ "fari\n"
-#~ " treege akomodatan instaladon. Simile kiel \"Akomodata\" instalado, "
-#~ "vi povos\n"
-#~ " elekti la uzado por via komputilo.\n"
-#~ " Sed bonvolege, NE ELEKTU I TION KROM SE VI SCIAS KION VI FARAS!"
+#~ msgid "Select a graphics card"
+#~ msgstr "Elektu grafikan karton"
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Nun vi devas elekti la uzadon por via komputilo. Jen la elektoj:\n"
-#~ "\n"
-#~ "* Laborstacio: i tio estas la ideala opcio se vi intencas uzi vian\n"
-#~ " komputilon efe por iutaga uzado e la oficejo a hejme.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Programado: se vi intencas uzi vian komputilon efe por programado,\n"
-#~ " i tio estas bona opcio. Vi havos plenan aron de programiloj por\n"
-#~ " kompili, erarseri, formati programfontojn, kaj krei\n"
-#~ " programpakaojn.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servilo: se vi intencas uzi i tiun komputilon kiel servilo, i tio\n"
-#~ " estas bona opcio. A dosierservilo (NFS a SMB), printservilo\n"
-#~ " (Uniksa stilo a Mikrosofta Vindoza stilo), atentikada servilo\n"
-#~ " (NIS), a datumbaza servilo, ktp. Kiel tia, ne atendu umojn (KDE,\n"
-#~ " GNOME, ktp.) estas instalotaj."
+#~ "Averto: provado de i tiu grafika karto eble svenigos vian komputilon"
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Nun vi povas elekti la pakaaron kiun vi deziras instali a promocii.\n"
-#~ "\n"
-#~ "Tiam DrakX kontrolos u vi havas sufie da spaco por instali iujn de "
-#~ "ili.\n"
-#~ "Se ne, i informas vin pir i. Se vi deziras antaeniri malgrae, i\n"
-#~ "antaeniros je la instalado de iuj de la elektitaj pakaaroj sed lasos\n"
-#~ "fali iujn pakaojn kiujn estas malpli interesaj. Suben de la listo vi\n"
-#~ "povas elekti la opcion \"Elektado de apartaj pakaoj\"; iokaze vi devus\n"
-#~ "foliumi tra pli ol 1000 pakaoj..."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Normala VGA, 640x480 e 60 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Se vi havas iujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
-#~ "Se vi havas neniujn de i tiuj KDROM-oj, klaku \"Nuligu\".\n"
-#~ "Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku "
-#~ "\"Jes\"."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Supera VGA, 800x600 e 56 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
#~ msgstr ""
-#~ "Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
-#~ "enigi,\n"
-#~ "vi povas havigi la ustan informon de via interretprovizanto."
+#~ "8514 kongrua karto, 1024x768 e 87 hercoj (Hz) interplektita (neniu "
+#~ "800x600)"
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
#~ msgstr ""
-#~ "Enigu:\n"
-#~ "\n"
-#~ " - IP-adreson: Se vi ne scias, demandu al via retadministranto.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retmaskon: \"255.255.255.0\" enerale estas bona elektao. Se vi ne\n"
-#~ "estas certa, demandu al via retadministranto a interretprovizanto.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Atomata IP-adreson: Se via reto uzas BOOTP-an a DHCP-an "
-#~ "protokolon,\n"
-#~ "elektu i tiun opcion. Se elektita, neniu valoro estas bezonata en\n"
-#~ "\"IP-adreson\". Se vi ne estas certa, demandu al via retadministranto\n"
-#~ "a interretprovizanto.\n"
+#~ "Supera VGA, 1024x768 e 87 hercoj (Hz) interplektita, 800x600 e 56 hercoj"
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
#~ msgstr ""
-#~ "Se via reto uzas NIS, elektu \"Uzu NIS\". Se vi ne scias, demandu al "
-#~ "via\n"
-#~ "retadministranto."
+#~ "Etendita Supera VGA, 800x600 e 60 hercoj (Hz), 640x480 e 72 hercoj"
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
#~ msgstr ""
-#~ "Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
-#~ "enigi,\n"
-#~ "vi povas havigi la ustan informon de via interretprovizanto."
+#~ "Neinterplektita Supera VGA, 1024x768 e 60 hercoj (Hz), 640x480 e 72 "
+#~ "hercoj"
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Se vi uzos prokurajn servilojn, bonvolu konfiguri ilin nune. Se vi ne\n"
-#~ "scias u vi uzos prokurajn servilojn, demandu al via retadministranto a\n"
-#~ "interretprovizanto."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Altfrekvenca Supera VGA, 1024x768 e 70 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Vi povas instali kriptografian pakaon se via interreta konekto estas "
-#~ "uste\n"
-#~ "pretigita. Unue elektu spegulon de kie vi deziras eluti pakaojn kaj "
-#~ "poste\n"
-#~ "elektu la pakaojn por instali.\n"
-#~ "\n"
-#~ "Notu ke vi devas elekti spegulon kaj kriptografiajn pakaojn la la "
-#~ "ledonoj\n"
-#~ "de via lando."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1024x768 e 60 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Nun vi povas enigi la \"root\" (radiko) pasvorto por via Linuks-"
-#~ "Mandrejka\n"
-#~ "sistemo. Vi devas enigi la pasvorton dufoje por konfirmi ke amba fojoj\n"
-#~ "estas identaj.\n"
-#~ "\n"
-#~ "\n"
-#~ "La \"root\"-a uzanto estas la administranto de la sistemo, kaj estas la "
-#~ "sola\n"
-#~ "uzanto permesata ani la sisteman konfiguraon. Tial, elektu i tiun\n"
-#~ "pasvorton zorge! Nepermesata uzado de la \"root\"-a uzanto povas esti\n"
-#~ "treege danera al la sistema integreco kaj dateno, kaj al aliaj sistemoj\n"
-#~ "konektata al i. La pasvorto devus esti miksao de literciferaj signoj "
-#~ "kaj\n"
-#~ "almena 8 signoj longa. *Neniam* surpaperigu in. Tamen, ne elektu tro\n"
-#~ "longan a komplikan pasvorton: vi devas povi memori in sen tro multe da\n"
-#~ "peno."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1280x1024 e 74 hercoj (Hz)"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Nun vi povas krei unu a pli \"ordinara(j)\" uzanto(j), male al la\n"
-#~ "\"privilegia\" uzanto, \"root\". Vi povas krei unu a pli uzanto(j) por\n"
-#~ "iu persono vi deziras permesi uzi la komputilon. Notu ke iu uzanto\n"
-#~ "havos viajn proprajn preferojn (grafikan medion, programajn aranojn,\n"
-#~ "ktp.) kaj ian propran \"hejman dosierujon\", kie i tiuj preferoj estas\n"
-#~ "konservata.\n"
-#~ "\n"
-#~ "\n"
-#~ "Anta io, krei uzanton por vi mem! E se vi estos la sola uzulo e la\n"
-#~ "komputilo, vi ne devus konekti kiel \"root\" por iutaga uzado de la\n"
-#~ "sistemo: i estas tre alta sekureca risko. Fari la sistemon neuzebla\n"
-#~ "estas oftege nur unu misklavo fora.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tial, vi devus konekti al la sistemo per ordinara uzanto vi kreos i "
-#~ "tie,\n"
-#~ "kaj saluti kiel \"root\" nur por administraj kaj flegadaj kialoj."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1280x1024 e 76 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO kaj Grub efaj opcioj estas:\n"
-#~ " - Startaparato: Fiksas la nomon de la aparato (ekz-e subdisko de "
-#~ "fiksdisko)\n"
-#~ "tiu enhavas la startsektoron. Krom se vi scias specife alie, elektu\n"
-#~ "\"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Prokrastoperiodo anta starti defaltan sistemon: Elektas la nombron\n"
-#~ "da dekonoj de sekundo ke la startargilo devus atendi anta starti la\n"
-#~ "unuan sistemon. i tiu utilas e sistemoj kiuj tuj startas de la\n"
-#~ "fiksdisko malanta ili ebligas la klavaron. La startargilo ne atendas "
-#~ "se\n"
-#~ "\"delay\" (prokrastoperiodo) estas ellasita a estas fiksita al nul.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Grafika reimo: i tiu specifas la VGA tekstan reimon por uzi dum\n"
-#~ "start. La sekvantaj valoroj estas uzeblaj:\n"
-#~ " * normala: elektu normalan 80 per 25 tekstan reimon.\n"
-#~ " * <numero>: uzu la respondan tekstan reimon."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ekrano kiu povas fari 1600x1200 e 70 hercoj (Hz)"
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO estas startargilo por Sparc: i povas starti a Linukson a iun "
-#~ "ajn\n"
-#~ "mastruman sistemon eestanta e via komputilo. Normale, i tiuj aliaj\n"
-#~ "mastrumaj sistemoj estas uste detektata kaj instalada. Se tiel ne "
-#~ "estas,\n"
-#~ "vi povas aldoni enskribon mane per i tiu ekrano. Zorgu elekti la "
-#~ "ustajn\n"
-#~ "parametrojn.\n"
-#~ "\n"
-#~ "\n"
-#~ "Eble vi anka ne deziras doni atingon al i tiuj aliaj mastrumaj "
-#~ "sistemoj\n"
-#~ "al iu ajn. iokaze vi povas forstreki la respondajn enskribojn. Sed\n"
-#~ "iokaze, vi bezonos startdiskon por starti ilin!"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ekrano kiu povas fari 1600x1200 e 76 hercoj (Hz)"
#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "SILO efaj opcioj estas:\n"
-#~ " - Instalado de Startargilo: Indiki kie vi deziras meti la informon\n"
-#~ "bezonata por start GNU/Linukso. Krom se vi scias specife kion vi faras,\n"
-#~ "elektu \"Unua sektoro de drajvo (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Prokrastoperiodo anta starti defaltan sistemon: Elektas la nombron\n"
-#~ "da dekonoj de sekundo ke la startargilo devus atendi anta starti la\n"
-#~ "unuan sistemon. i tiu utilas e sistemoj kiuj tuj startas de la\n"
-#~ "fiksdisko malanta ili ebligas la klavaron. La startargilo ne atendas "
-#~ "se\n"
-#~ "\"delay\" (prokrastoperiodo) estas ellasita a estas fiksita al nul."
+#~ "La totala grandeco de la grupoj vi elektis estas proksimume %d MB.\n"
#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Nun estas tempo por konfiguri la X Fenestra Sistemo, kiu estas la kerno\n"
-#~ "de la GNU/Linuksa GUI (Grafika UzulInterfaco). Por tiu celo, vi devas\n"
-#~ "konfiguri vian grafikan karton kaj ekranon. La plejparto de i tiuj "
-#~ "paoj\n"
-#~ "estas atomatitaj, tamen, do via laboro eble konsistos en konfirmi kion\n"
-#~ "estis farata kaj akcepti la aranojn. :)\n"
-#~ "\n"
+#~ "Se vi volas instali malpli ol i tiu grandeco,\n"
+#~ "elektu la procenton el la pakaoj kiuj vi deziras instali.\n"
#~ "\n"
-#~ "Kiam la konfigurado estas kompleta, X lanios (krom se vi demandas al\n"
-#~ "DrakX ne fari tion) pro ke vi kontrolu in la observu se la aranojn\n"
-#~ "tagas por vi. Se ne, vi povas reveni kaj ani ilin, tiom da tempoj "
-#~ "kiom\n"
-#~ "estas necesa."
+#~ "Malalta procento instalos nur la plej gravajn pakaojn;\n"
+#~ "100%% instalos iujn pakaojn."
#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Se iu misas en la X-a konfigurao, uzu i tiujn opciojn por uste "
-#~ "konfiguri\n"
-#~ "la X Fenestran Sistemon."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Se vi preferas uzi grafikan saluton, elektu \"Jes\". Aliokaze, elektu "
-#~ "\"Ne\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Via sistemo restartos.\n"
+#~ "Vi havas spacon e via disko por nur %d%% da i tiuj pakaoj.\n"
#~ "\n"
-#~ "Post restartado, via nova Linuks-Mandrejka sistemo argios atomate. Se "
-#~ "vi\n"
-#~ "deziras starti en alian ekzistanta mastruman sistemon, bonvole legu la\n"
-#~ "pluan instrukcion."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "ea (Programistoj)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovaka (Programistoj)"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skribu /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatu ion"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Post formatado de iuj subdisko,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "iuj datenoj sur tiuj subdisko estos perdata"
-
-#~ msgid "Reload"
-#~ msgstr "Reargu"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "u vi deziras krei atoinstalan disketon por replikado de Linukso?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL Konfigurao"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
-#~ "i tie; printiloj estos atomate dektektataj. Se vi havas dubojn,\n"
-#~ "elektu \"Malproksima CUPS servilo\"."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Malproksima printvico"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domajna nomo"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Neniu printilo"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "ISDN-a Konfiguraon"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "muntado malsukcesis: "
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Sendrapideco: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ricevrapideco: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Speco de konekto"
+#~ "Se vi deziras instali malpli ol tiom,\n"
+#~ "elektu la procenton el la pakaoj kiun vi deziras instali.\n"
+#~ "Malalta procento instalos nur la plej gravajn pakaojn;\n"
+#~ "%d%% instalos tiom pakaojn kiom eblajn."
-#~ msgid "Connecting to Internet "
-#~ msgstr "Konektas al la Interreto"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Malkonektas el la Interreto"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Malkonektado el la Interreto malsukcesis."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Malkonektado el la Interreto finis."
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Nomo de konekto"
-
-#~ msgid "sent: "
-#~ msgstr "sendita(j): "
-
-#~ msgid "received: "
-#~ msgstr "ricevita(j): "
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Defalta"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Mi ne povas kompreni la enhavon de la konfigurodosiero."
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptilo"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Malebligu"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Ebligu"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Konfiguru interretan konektaon"
-
-#~ msgid "Choose"
-#~ msgstr "Elektu"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Vi povas specifi rekte la URI por atingi la printilon per CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Jes, printu Askian provpaon"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Jes, printu PostSkriban provpaon"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papergrandeco"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Eletu paon post tasko?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-aj pelilaj opcioj"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kolorprofunecaj opcioj"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Printu tekston kiel PostScripto?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Riparu tuparan tekston?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombro de paoj en eliga pao"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr ""
-#~ "Dekstra/Maldrekstra marenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr ""
-#~ "Supra/Malsupra marenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Aldonaj GhostScript-aj opcioj"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Aldonaj Tekstaj opcioj"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inversigu ordon de paoj"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Elektu Malproksiman Printilan Konekton"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "iuj printilo bezonas nomon (ekzemple lp).\n"
-#~ "Aliaj parametroj, ekzemple la priskribon de la printilo a ian lokon\n"
-#~ "vi povas difini. Kiu nomo devus uzata por i tiu printilo kaj kiel\n"
-#~ "i estas konektata?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "iuj printvico (al kiu printajn taskojn estas direktata) bezonas nomon\n"
-#~ "(ofte lp) kaj fonan eneligan dosierujon asociata kun i. Kiu nomo kaj\n"
-#~ "dosierujo devus uzata por i tiu printvico?"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Vi povos elekti ilin pli precize en la sekvanta pao."
-#~ msgid "Name of queue"
-#~ msgstr "Nomo de printvico"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procento da pakaoj por instali"
-#~ msgid "Spool directory"
-#~ msgstr "Fona eneliga dosierujo"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Elektu sekurnivelon?"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index fb6f837b3..6c00f2078 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -1,40 +1,67 @@
-# Translation file (spanish) of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# Pablo Saratxaga <pablo@mandrakesoft.com>, 1999-2000
-# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001, 2002
-# Juan Manuel García Molina <juanma_gm@wanadoo.es>, 2000-2002
-# Carlos Sánchez <vcbsaorc@vc.ehu.es>, 2002
+# spanish translation of drakfloppy
+# Copyright (C) 2000, 2001 MandrakeSoft S.A.
+# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-15 10:34-0300\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 10:38-0300\n"
"Last-Translator: Fabian Mandelbaum <fabman@mandrakesoft.com>\n"
-"Language-Team: Spanish <cooker-i18n@linux-mandrake.com>\n"
+"Language-Team: SPANISH <es@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurar los monitores independientemente"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usar extensión Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurar sólo la tarjeta \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o más"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Elija un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuración multi-monitor"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -42,41 +69,44 @@ msgstr ""
"Su sistema soporta configuración multi-monitor.\n"
"¿Qué desea hacer?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Tarjeta gráfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccione la cantidad de memoria de su tarjeta gráfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione una tarjeta gráfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuración de XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Elija un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "¿Qué tipo de configuración de XFree desea tener?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configurar los monitores independientemente"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Elija un controlador X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Usar extensión Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Controlador X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurar sólo la tarjeta \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "¿Qué tipo de configuración de XFree desea tener?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s con aceleración 3D por hardware"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +115,17 @@ msgstr ""
"Su tarjeta puede admitir aceleración 3D pero sólo con XFree %s.\n"
"XFree %s admite su tarjeta y puede tener mejor comportamiento en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Su tarjeta puede admitir aceleración 3D por hardware con XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleración 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Su tarjeta puede admitir aceleración 3D por hardware con XFree %s,\n"
-"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleración 3D EXPERIMENTAL por hardware"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +136,58 @@ msgstr ""
"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR.\n"
"XFree %s admite su tarjeta y puede tener un mejor comportamiento en 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Su tarjeta puede admitir aceleración 3D por hardware con XFree %s,\n"
+"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalación del controlador de la pantalla)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuración de XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione la cantidad de memoria de su tarjeta gráfica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Elija las opciones para el servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"¿Conservar los cambios?\n"
+"La configuración actual es:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Elija un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalizada"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Genérico"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Deshacer"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,513 +211,327 @@ msgstr ""
"puede dañar su monitor.\n"
" En caso de duda, elija una configuración conservadora."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frecuencia de barrido horizontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frecuencia de barrido vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no está configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La tarjeta gráfica todavía no está configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Aún no ha elegido las resoluciones"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "¿Desea probar la configuración?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Advertencia: probar con esta tarjeta de vídeo puede colgar su ordenador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Probar la configuración"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colores (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intente cambiar algunos parámetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil colores (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ocurrió un error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil colores (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saliendo en %d segundos"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millones de colores (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "¿Es ésta la configuración correcta?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 billones de colores (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ocurrió un error, intente cambiar algunos parámetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resoluciones"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolución"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Elija la resolución y la profundidad de colores"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Tarjeta gráfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Más"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelar"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Aceptar"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostrar todo"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "¿Desea probar la configuración?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluciones"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Probar la configuración"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Distribución del teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo de ratón: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo del ratón: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecuencia horizontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecuencia vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Tarjeta gráfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identificación de la tarjeta gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memoria de la tarjeta gráfica: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profundidad de color: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolución: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando la configuración de X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "¿Qué desea hacer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Cambiar el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Cambiar la tarjeta gráfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Cambiar las opciones del servidor X"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Cambiar la resolución"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar información"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probar de nuevo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Salir"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"¿Conservar los cambios?\n"
-"La configuración actual es:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X al arrancar"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Puede configurar su computadora para que inicie X automáticamente\n"
"al arrancar. ¿Desea que se lance X cuando reinicie?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Abra de nuevo una sesión %s para activar los cambios"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Por favor salga de la sesión y luego pulse Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil colores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil colores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millones de colores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 billones de colores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB o más"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estándar, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (sin 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA no-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que soporta 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que soporta 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primer sector de la partición de arranque"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primer sector del disco (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalación de SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "¿Dónde quiere instalar el cargador de arranque?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalación de LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO con menú gráfico"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrancar desde DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opciones principales del cargador de arranque"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Cargador de arranque a usar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalación del cargador de arranque"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositivo de arranque"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona con BIOS antiguos)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modo de vídeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Demora antes de arrancar la imagen predeterminada"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Contraseña"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Contraseña (de nuevo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Restringir las opciones de la línea de comandos"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "restringir"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Limpiar /tmp en cada inicio del equipo"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precise el tamaño de la RAM si es necesario (se encontraron %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Activar perfiles múltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Proporcione el tamaño de la RAM en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"La opción \"Restringir las opciones de la línea de comandos\"\n"
"no tiene sentido sin contraseña"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Vuelva a intentarlo, por favor"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Las contraseñas no coinciden"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Mensaje de inicio"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Demora de open firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Tiempo de espera de arranque del núcleo"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "¿Habilitar el arranque desde CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "¿Habilitar el arranque de OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "¿SO predeterminado?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -689,83 +545,83 @@ msgstr ""
"\n"
"¿Desde qué disco arranca?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Aquí están las diferentes entradas.\n"
"Puede añadir otras o cambiar las que ya existen."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
-msgstr "Añadir"
+msgstr "Agregar"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Hecho"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desea añadir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Otro SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Otro SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Otro SO (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imagen"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Raíz"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Añadir"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura/Escritura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabla"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Por defecto"
@@ -797,53 +653,77 @@ msgstr "Debe especificar una partición raíz"
msgid "This label is already used"
msgstr "Esta etiqueta ya está en uso"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s encontradas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "¿Tiene alguna otra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¿Tiene alguna interfaz %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Sí"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ver información sobre el hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando controlador para la tarjeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(módulo %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Ahora puede proporcionar las opciones al módulo %s.\n"
+"Note que cualquier dirección debe ingresarse con el prefijo 0x como '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Aquí deben ir las diferentes opciones para el módulo %s.\n"
+"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
+"Por ejemplo, \"io=0x300 irq=7\""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opciones de los módulos:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "¿Qué controlador de %s debo probar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,39 +742,15 @@ msgstr ""
"el probar el equipo puede provocar que éste se cuelgue, pero no debería\n"
"causar ningún daño."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Autodetección"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especificar las opciones"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Ahora puede proporcionar las opciones al módulo %s.\n"
-"Note que cualquier dirección debe ingresarse con el prefijo 0x como '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Aquí deben ir las diferentes opciones para el módulo %s.\n"
-"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
-"Por ejemplo, \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opciones de los módulos:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +759,55 @@ msgstr ""
"Error al cargar el módulo %s.\n"
"¿Desea intentarlo de nuevo con otros parámetros?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "acceso a programas X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "acceso a herramientas rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue añadido)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Esta contraseña es demasiado sencilla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nombre de usuario (login) sólo debe contener letras, números, `-' y `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Este nombre de usuario ya fue añadido"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Este nombre de usuario ya fue añadido"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Añadir un usuario"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +816,32 @@ msgstr ""
"Introduzca un usuario\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aceptar el usuario"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nombre y apellidos"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nombre del usuario"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icono"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Entrada automática"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -988,92 +849,73 @@ msgstr ""
"Puede configurar su computadora para que entre automáticamente\n"
"en sesión con un usuario dado al arrancar. ¿Desea esa funcionalidad?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Por favor, elija el idioma a usar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Puede elegir otros idiomas, que estarán disponibles después de la instalación"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Todo"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizada"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "No compartir"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Se necesita instalar el paquete %s. ¿Quiere instalarlo?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Puede exportar usando NFS o Samba. ¿Cuál elige"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Falta el paquete obligatorio %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"¿Desea permitir a los usuarios exportar algunos directorios personales?\n"
-"Si lo hace, los usuarios podrán simplemente hacer clic sobre \"Compartir\" en konqueror y nautilus.\n"
+"Si lo hace, los usuarios podrán simplemente hacer clic sobre \"Compartir\" "
+"en konqueror y nautilus.\n"
"\n"
"\"Personalizar\" permite una granularidad por usuario.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Lanzar userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1081,31 +923,31 @@ msgstr ""
"La compartición por usuario utiliza el grupo \"fileshare\". \n"
"Puede utilizar userdrake para añadir un usuario a este grupo."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bienvenidos, crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Estándar"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Más alta"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoica"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1115,7 +957,7 @@ msgstr ""
"usar, pero también mucho más vulnerable: no debe usarse para una máquina\n"
"conectada en red con otras o a Internet. No hay contraseñas de acceso."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +965,7 @@ msgstr ""
"Las contraseñas están activadas, pero tampoco se recomienda usar este\n"
"nivel para un ordenador conectado a una red."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,7 +973,7 @@ msgstr ""
"Éste es el nivel de seguridad estándar recomendado para una máquina que se\n"
"utilizará para conectarse a la Internet como cliente."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1139,13 +981,14 @@ msgstr ""
"Ya hay algunas restricciones, y todas las noches se corren más "
"verificaciones automáticas."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Con este nivel de seguridad, es posible utilizar el sistema como un "
"servidor.\n"
@@ -1153,35 +996,35 @@ msgstr ""
"servidor que acepte conexiones de múltiples clientes. Nota: si su máquina "
"sólo es un cliente en la Internet, mejor debería elegir un nivel inferior."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Basado en el nivel anterior, pero el sistema está completamente cerrado.\n"
"Las características de seguridad están al máximo."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Elegir el nivel de seguridad"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Nivel de seguridad"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Utilizar libsafe para los servidores"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una biblioteca que le defiende ante ataques de desbordamiento de búfer y "
"ataques con cadenas de formato."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1198,52 +1041,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "¡Bienvenido a GRUB, el selector de SO de arranque!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use las teclas %c y %c para seleccionar una entrada."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pulse intro para iniciar el SO elegido, pulse 'e' para editar"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "los comandos antes de iniciar, o pulse 'c' para una linea de comandos."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Se va a iniciar la entrada resaltada en %d segundos."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escritorio"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menú inicio"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "No puede instalar el cargador de arranque en una partición %s\n"
@@ -1256,15 +1099,19 @@ msgstr "todavía no está implementada la ayuda.\n"
msgid "Boot Style Configuration"
msgstr "Configuración del estilo de arranque"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Archivo"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Archivo/_Salir"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>S"
@@ -1299,14 +1146,14 @@ msgstr "Modo de Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"En este momento está usando %s como gestor de arranque.\n"
"Haga click sobre configurar para lanzar el asistente de configuración."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configurar"
@@ -1316,7 +1163,7 @@ msgid "System mode"
msgstr "Modo del sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar el sistema X-Window al comenzar"
#: ../../bootlook.pm_.c:148
@@ -1327,14 +1174,16 @@ msgstr "No, no deseo entrada automática"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sí, deseo entrada automática con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Aceptar"
@@ -1384,7 +1233,7 @@ msgstr ""
"Luego de la instalación estarán disponibles las instantáneas de pantalla en %"
"s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
@@ -1392,7 +1241,7 @@ msgstr "Francia"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Bélgica"
@@ -1416,11 +1265,12 @@ msgstr "Noruega"
msgid "Sweden"
msgstr "Suecia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italia"
@@ -1428,7 +1278,7 @@ msgstr "Italia"
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Estados Unidos"
@@ -1436,8 +1286,8 @@ msgstr "Estados Unidos"
msgid "Please make a backup of your data first"
msgstr "Por favor, haga primero una copia de seguridad de sus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "¡Lea con cuidado!"
@@ -1450,11 +1300,12 @@ msgstr ""
"Si piensa usar aboot, no olvide dejar espacio libre (2048 sectores es\n"
"suficiente) al principio del disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Error"
@@ -1462,11 +1313,11 @@ msgstr "Error"
msgid "Wizard"
msgstr "Asistente"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Elija una acción"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1478,144 +1329,149 @@ msgstr ""
"Le sugiero que primero cambie el tamaño de la misma\n"
"(para eso haga clic sobre ella, y luego sobre \"Redimensionar\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Por favor, haga clic sobre una partición"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalles"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Sistema de. archivos. con journal"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Vacío"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Otros"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipos de sistemas de archivos:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use \"%s\" en su lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Borrar"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Use \"Desmontar\" primero"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Se perderán todos los datos de la partición %s después de cambiar su tipo"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Elija una partición"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Elija otra partición"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Salir"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Cambiar al modo experto"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Cambiar al modo normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Deshacer"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "¿Seguir adelante?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Salir sin grabar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "¿Salir del programa sin grabar la tabla de particiones?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "¿Desea guardar las modificaciones en /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Asignación automática"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Más"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Información del disco rígido"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Todas las particiones primarias están usadas"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "No se pueden agregar más particiones"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1623,31 +1479,31 @@ msgstr ""
"Por favor, para tener más particiones borre alguna para poder crear una "
"partición extendida"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Guardar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Restaurar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Rescatar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Volver a cargar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Montaje automático de dispositivos extraíbles"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Elija un archivo"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1655,11 +1511,11 @@ msgstr ""
"La tabla de particiones de respaldo no tiene\n"
"el mismo tamaño. ¿Desea continuar de todas formas?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1667,122 +1523,129 @@ msgstr ""
"Inserte un disquete en la unidad\n"
"Se perderán todos los datos del disquete"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tratando de rescatar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Información detallada"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaje"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opciones"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Desplazar"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatear"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Añadir al RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Añadir al LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Quitar del RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Quitar del LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificar el RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crear una partición nueva"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector de comienzo: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Tamaño en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipo de sistema de. archivos: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punto de montaje: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "¿Borrar el archivo de loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Cambiar el tipo de partición"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "¿Qué sistema de archivos desea?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Cambiando de ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "¿Donde desea montar el archivo de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "¿Dónde desea montar el dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1791,128 +1654,133 @@ msgstr ""
"se usa para un montaje en loopback.\n"
"Quite el montaje de loopback primero"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calculando los límites del sistema de archivos FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Esta partición no es redimensionable"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"Debería hacer una copia de seguridad de todos los datos de esta partición"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Se perderán todos los datos de la partición %s tras cambiar su tamaño"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Eligiendo el tamaño nuevo"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Tamaño nuevo en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "¿A qué disco desea desplazarla?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "¿A qué sector desea desplazarla?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Desplazando"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Desplazando una partición..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Elegir un RAID existente al que añadir"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nuevo"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Elegir un LVM existente al que añadir"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "¿nombre de LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Esta partición no puede usarse para el loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nombre del archivo de loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Indique el nombre de un archivo"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"El archivo ya lo utiliza otro dispositivo loopback.\n"
"Elija otro archivo, por favor"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "El archivo ya existe. ¿Desea usarlo?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opciones de montaje"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Varios"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "tamaño de los bloques"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Cuidado: esta operación es peligrosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "¿Qué tipo de particionamiento?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Se necesita instalar el paquete %s. ¿Quiere instalarlo?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1924,7 +1792,7 @@ msgstr ""
"que\n"
"no funcione), o bien no utiliza LILO (y entonces no necesita /boot)"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1936,7 +1804,7 @@ msgstr ""
"Si piensa usar el cargador de arranque LILO, tenga en cuenta que tiene\n"
"que añadir una partición /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1946,129 +1814,129 @@ msgstr ""
"Ningún cargador de arranque es capaz de manejarlo sin una partición /boot.\n"
"Así que tenga en cuenta que tiene que añadir una partición /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "¡Se escribirá al disco la tabla de particiones de la unidad %s!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Necesita reiniciar el equipo para que la modificación tenga efecto"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Se perderán todos los datos de la partición %s después de formatearla"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formateando"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formateando el archivo de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formateando la partición %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Ocultar archivos"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Mover los archivos a la nueva partición"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"El directorio %s ya tiene algunos datos\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Moviendo los archivos a la nueva partición"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Borrando %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partición %s ahora se conoce como %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra DOS: %s (simplemente una adivinanza)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nombre: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Comienzo: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Tamaño: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindros %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formateado\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "No formateado\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2077,7 +1945,7 @@ msgstr ""
"Archivo(s) de loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2085,27 +1953,27 @@ msgstr ""
"Partición predeterminada de arranque\n"
" (para arranque de MS-DOS, no para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamaño de los bloques %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos-RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nombre del archivo de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2117,7 +1985,7 @@ msgstr ""
"una partición de Controlador, probablemente\n"
"debería dejarla como está.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2129,64 +1997,64 @@ msgstr ""
"es para el arranque\n"
"dual de su sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Tamaño: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometría: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos-LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de la tabla de particiones: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "en el bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opciones: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Clave de cifrado del sistema de archivos"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Elija la clave de cifrado de su sistema de archivos"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Esta clave de cifrado es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Las claves de cifrado no coinciden"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Clave de cifrado"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Clave de cifrado (otra vez)"
@@ -2195,35 +2063,65 @@ msgid "Change type"
msgstr "Cambiar tipo"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Por favor, haga clic sobre un medio"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentificación"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nombre del usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nombre del usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Dominio NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Buscar servidores"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formateo de %s falló"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "No sé cómo formatear %s en el tipo %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "falló el montaje de la partición %s en el directorio %s"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck falló con código de salida %d o señal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "error desmontando %s: %s"
@@ -2240,70 +2138,323 @@ msgstr "con /usr"
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No se puede usar JFS para particiones menores de 32MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Los puntos de montaje deben comenzar con una /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ya existe una partición con el punto de montaje %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No puede usar un Volumen Lógico LVM para el punto de montaje %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debería permanecer dentro del sistema de archivos raíz"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necesita un sistema de archivos verdadero (ext2, reiserfs) para este punto "
"de montaje\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "No hay espacio libre suficiente para la asignación automática"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nada para hacer"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Error al abrir %s para escribir: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ocurrió un error - no se encontró ningún dispositivo válido para crear los "
"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
"razón de este fallo"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "¡No tiene ninguna partición!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Realizar detección automática"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Genérico"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoria (DMA) de la tarjeta"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "configuración de la carga"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Cambiar tipo"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Salir"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/A_yuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/A_yuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ayuda/_Acerca..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Módulo"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoria (DMA) de la tarjeta"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelar"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Módulo"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descripción"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentificación"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Elija un archivo"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositivo de pasarela de red"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botones"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detección del disco rígido"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Ver información sobre el hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostrar información"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configuración del ratón"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectada en el puerto %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Espere, por favor"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segundos"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Borrando la impresora \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Autodetección"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2319,7 +2470,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2342,19 +2493,19 @@ msgstr ""
"aquí no podrán cambiar nada excepto su configuración y sus archivos\n"
"propios. Tendrá que crear al menos un usuario no privilegiado para Usted\n"
"mismo. Esa cuenta es donde debería conectarse para el uso diario. Aunque es\n"
-"muy práctico ingresar como \"root\" diariamente, ¡también puede ser muy\n"
+"muy práctico ingresar como \"root\" diariamente, ¡tambien puede ser muy\n"
"peligroso! El error más leve podría significar que su sistema deje de\n"
"funcionar. Si comete un error serio como usuario no privilegiado, sólo\n"
"puede llegar a perder algo de información, pero no todo el sistema.\n"
"\n"
"Primero tendrá que ingresar su nombre real. Esto no es obligatorio, por\n"
-"supuesto ya que, en realidad, puede ingresar lo que desee. DrakX tomará\n"
+"supuesto - ya que, en realidad, puede ingresar lo que desee. DrakX tomará\n"
"entonces la primer palabra que ingresó y la copiará al campo \"Nombre de\n"
"usuario\". Este es el nombre que este usuario en particular usará para\n"
"ingresar al sistema. Lo puede cambiar. Luego tendrá que ingresar una\n"
"contraseña aquí. La contraseña de un usuario no privilegiado (regular) no\n"
"es tan crucial como la de \"root\" desde el punto de vista de la seguridad,\n"
-"pero esto no es razón alguna para obviarla - después de todo, son sus\n"
+"pero esto no es razón alguna para obviarla - despues de todo, son sus\n"
"archivos los que están en riesgo.\n"
"\n"
"Si hace clic sobre \"Aceptar usuario\", entonces puede agregar tantos como\n"
@@ -2404,7 +2555,7 @@ msgstr ""
"mismas son buenas para las instalaciones más comunes. Si hace cambios, al\n"
"menos debe definir una partición raíz (\"/\"). No elija una partición muy\n"
"pequeña o no podrá instalar software suficiente. Si desea almacenar sus\n"
-"datos en una partición separada, también puede necesitar crear una\n"
+"datos en una partición separada, tambien puede necesitar crear una\n"
"partición para \"/home\" (sólo es posible si tiene más de una partición\n"
"Linux disponible).\n"
"\n"
@@ -2419,11 +2570,11 @@ msgstr ""
"\"Número de disco rígido\" siempre es una letra que sigue a \"hd\" o a\n"
"\"sd\". Para los discos IDE:\n"
"\n"
-" * \"a\" significa \"disco rígido maestro en la controladora IDE primaria"
-"\",\n"
+" * \"a\" significa \"disco rígido maestro en la controladora IDE\n"
+"primaria\",\n"
"\n"
-" * \"b\" significa \"disco rígido esclavo en la controladora IDE primaria"
-"\",\n"
+" * \"b\" significa \"disco rígido esclavo en la controladora IDE\n"
+"primaria\",\n"
"\n"
" * \"c\" significa \"disco rígido maestro en la controladora IDE\n"
"secundaria\",\n"
@@ -2462,9 +2613,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2509,7 +2659,7 @@ msgstr ""
"pedirá que especifique los CDs que tiene (sólo en modo Experto). Verifique\n"
"las etiquetas de los CDs y marque las casillas que corresponden a los que\n"
"tiene disponibles para la instalación. Haga clic sobre \"Aceptar\" cuando\n"
-"esté listo para continuar.\n"
+"este listo para continuar.\n"
"\n"
"Los paquetes se ordenan en grupos que corresponden a un uso particular de\n"
"su máquina. Los grupos en sí mismos están clasificados en cuatro secciones:\n"
@@ -2520,10 +2670,9 @@ msgstr ""
" * \"Desarrollo\": si la máquina se utilizará para programación, elija\n"
"el(los) grupo(s) deseado(s).\n"
"\n"
-" * \"Servidor\": finalmente, si se pretende usar la máquina como un "
-"servidor\n"
-"aquí puede seleccionar los servicios más comunes que desea que se instalen\n"
-"en la misma.\n"
+" * \"Servidor\": finalmente, si se pretende usar la máquina como un\n"
+"servidor aquí puede seleccionar los servicios más comunes que desea que se\n"
+"instalen en la misma.\n"
"\n"
" * \"Entorno gráfico\": seleccione aquí su entorno gráfico preferido. Si\n"
"desea tener una estación de trabajo gráfica, ¡seleccione al menos uno!\n"
@@ -2605,7 +2754,7 @@ msgstr ""
"se deben instalar, el proceso puede tardar un rato en completarse. En la\n"
"pantalla se muestra una estimación del tiempo necesario para completar la\n"
"instalación para ayudarlo a considerar si tiene tiempo suficiente par\n"
-"disfrutar una taza de café.\n"
+"disfrutar una taza de cafe.\n"
"\n"
"!! Si ha sido seleccionado un paquete de servidor ya sea intencionalmente o\n"
"porque era parte de un grupo completo, se le pedirá que confirme que\n"
@@ -2660,7 +2809,7 @@ msgstr ""
"conectar su computadora a la Internet o a una red de área local, haga clic\n"
"sobre \"Aceptar\". Se lanzará la detección automática de dispositivos de\n"
"red y módems. Si esta detección falla, quite la marca de la casilla \"Usar\n"
-"detección automática\" la próxima vez. También puede elegir no configurar\n"
+"detección automática\" la próxima vez. Tambien puede elegir no configurar\n"
"la red, o hacerlo más tarde; en ese caso simplemente haga clic sobre el\n"
"botón \"Cancelar\".\n"
"\n"
@@ -2674,7 +2823,7 @@ msgstr ""
"\n"
"Puede consultar el capítulo de \"Guía del Usuario\" sobre las conexiones a\n"
"la Internet para detalles acerca de la configuración, o simplemente esperar\n"
-"hasta que su sistema esté instalado y usar el programa que se describe aquí\n"
+"hasta que su sistema este instalado y usar el programa que se describe aquí\n"
"para configurar su conexión.\n"
"\n"
"Si desea configurar la red más tarde, luego de la instalación, o si ha\n"
@@ -2809,7 +2958,7 @@ msgstr ""
"La primera vez que intenta la configuración de X Usted puede no estar muy\n"
"satisfecho con el resultado (la pantalla es muy pequeña, está corrida hacia\n"
"la izquierda o hacia la derecha...). Es por esto que, incluso si X arranca\n"
-"correctamente, DrakX le preguntará si la configuración le conviene. También\n"
+"correctamente, DrakX le preguntará si la configuración le conviene. Tambien\n"
"propondrá cambiarla mostrando una lista de modos válidos que pudo\n"
"encontrar, y le pedirá que seleccione alguno.\n"
"\n"
@@ -2832,14 +2981,14 @@ msgstr ""
"Finalmente, se le preguntará si desea ver la interfaz gráfica en el\n"
"arranque. Note que esta pregunta se le formula incluso si eligió no probar\n"
"la configuración. Obviamente, querrá responder \"No\" si su máquina va a\n"
-"actuar como un servidor, o si no tuvo éxito con la configuración de la\n"
+"actuar como un servidor, o si no tuvo exito con la configuración de la\n"
"pantalla."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2851,9 +3000,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2869,9 +3017,8 @@ msgstr ""
"caso que su computadora no pueda arrancar desde el CD-ROM, Usted debería\n"
"recurrir a este paso al menos en dos situaciones:\n"
"\n"
-" * cuando instala el cargador de arranque, DrakX sobreescribirá el sector "
-"de\n"
-"arranque (MBR) de su disco principal (a menos que esté utilizando otro\n"
+" * cuando instala el cargador de arranque, DrakX sobreescribirá el sector\n"
+"de arranque (MBR) de su disco principal (a menos que este utilizando otro\n"
"administrador de arranque) de forma tal que pueda iniciar o bien Windows o\n"
"bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
"volver a instalar Windows, el proceso de instalación de Microsoft\n"
@@ -2926,21 +3073,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2956,9 +3102,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ahora necesita elegir el lugar de su disco rígido donde se instalará su\n"
"sistema operativo Mandrake Linux. Si su disco rígido está vacío o si un\n"
@@ -2987,41 +3133,40 @@ msgstr ""
"Dependiendo de la configuración de su disco rígido, están disponibles\n"
"varias opciones:\n"
"\n"
-" * \"Usar espacio libre\": esta opción simplemente llevará a un "
-"particionado\n"
-"automático de su(s) disco(s) vacío(s). No se le pedirán más detalles ni se\n"
-"le formularán más preguntas.\n"
+" * \"Usar espacio libre\": esta opción simplemente llevará a un\n"
+"particionado automático de su(s) disco(s) vacío(s). No se le pedirán más\n"
+"detalles ni se le formularán más preguntas.\n"
"\n"
" * \"Usar partición existente\": el asistente ha detectado una o más\n"
"particiones Linux existentes en su disco rígido. Si desea utilizarlas,\n"
"elija esta opción.\n"
"\n"
-" * \"Usar el espacio libre en la partición Windows\": si MicrosoftWindows\n"
+" * \"Usar el espacio libre en la partición Windows\": si Microsoft Windows\n"
"está instalado en su disco rígido y ocupa todo el espacio disponible en el\n"
"mismo, Usted tiene que liberar espacio para los datos de Linux. Para\n"
-"hacerlo, puede borrar su partición y datos MicrosoftWindows (vea las\n"
+"hacerlo, puede borrar su partición y datos Microsoft Windows (vea las\n"
"soluciones \"Borrar el disco completo\" o \"Modo experto\") o cambie el\n"
"tamaño de su partición Windows. El cambio de tamaño se puede realizar sin\n"
-"la pérdida de datos, siempre y cuando Usted ha desfragmentado con\n"
-"anterioridad la partición Windows. También se recomienda hacer una copia de\n"
+"la perdida de datos, siempre y cuando Usted ha desfragmentado con\n"
+"anterioridad la partición Windows. Tambien se recomienda hacer una copia de\n"
"respaldo de sus datos.. Se recomienda esta solución si desea utilizar tanto\n"
-"Mandrake Linux como MicrosoftWindows en la misma computadora.\n"
+"Mandrake Linux como Microsoft Windows en la misma computadora.\n"
"\n"
-" Antes de elegir esta opción, por favor comprenda que después de este\n"
-"procedimiento, el tamaño de su partición MicrosoftWindows será más pequeño\n"
-"que ahora. Tendrá menos espacio bajo MicrosoftWindows para almacenar sus\n"
+" Antes de elegir esta opción, por favor comprenda que despues de este\n"
+"procedimiento, el tamaño de su partición Microsoft Windows será más pequeño\n"
+"que ahora. Tendrá menos espacio bajo Microsoft Windows para almacenar sus\n"
"datos o instalar software nuevo.\n"
"\n"
" * \"Borrar el disco entero\": si desea borrar todos los datos y todas las\n"
"particiones presentes en su disco rígido y reemplazarlas con su nuevo\n"
"sistema Mandrake Linux, elija esta opción. Tenga cuidado con esta solución\n"
-"ya que no podrá revertir su elección después de confirmarla.\n"
+"ya que no podrá revertir su elección despues de confirmarla.\n"
"\n"
" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
"\n"
-" * \"Quitar Windows\": simplemente esto borrará todo en el disco y "
-"comenzará\n"
-"particionando todo desde cero. Se perderán todos los datos en su disco.\n"
+" * \"Quitar Windows\": simplemente esto borrará todo en el disco y\n"
+"comenzará particionando todo desde cero. Se perderán todos los datos en su\n"
+"disco.\n"
"\n"
" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
"\n"
@@ -3050,9 +3195,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3074,24 +3218,22 @@ msgstr ""
"El botón \"Avanzadas\" (sólo en modo Experto) le muestra dos botones más\n"
"para:\n"
"\n"
-" * \"Generar un disquete de instalación automática\": para crear un "
-"disquete\n"
-"de instalación que realizará una instalación completa sin la asistencia de\n"
-"un operador, similar a la instalación que ha configurado recién.\n"
+" * \"Generar un disquete de instalación automática\": para crear un\n"
+"disquete de instalación que realizará una instalación completa sin la\n"
+"asistencia de un operador, similar a la instalación que ha configurado\n"
+"recien.\n"
"\n"
-" Note que hay dos opciones diferentes disponibles después de hacer clic\n"
+" Note que hay dos opciones diferentes disponibles despues de hacer clic\n"
"sobre el botón:\n"
"\n"
-" * \"Reproducir\". Esta es una instalación parcialmente automatizada ya "
-"que\n"
-"la etapa de particionado (y sólo esta etapa) permanece interactiva.\n"
+" * \"Reproducir\" . Esta es una instalación parcialmente automatizada ya\n"
+"que la etapa de particionado (y sólo esta etapa) permanece interactiva.\n"
"\n"
-" * \"Automatizada\". Instalación completamente automatizada: el disco "
-"rígido\n"
-"se sobreescribe por completo, y se pierden todos los datos.\n"
+" * \"Automatizada\" . Instalación completamente automatizada: el disco\n"
+"rígido se sobreescribe por completo, y se pierden todos los datos.\n"
"\n"
" Esta característica es muy útil cuando se instala una cantidad grande de\n"
-"máquinas similares. Vea la sección Auto install (en inglés) en nuestro\n"
+"máquinas similares. Vea la sección Auto install (en ingles) en nuestro\n"
"sitio web.\n"
"\n"
" * \"Guardar selección de paquetes\"(*): guarda la selección de paquetes\n"
@@ -3136,7 +3278,7 @@ msgstr ""
"\n"
"Puede desear volver a formatear algunas particiones ya existentes para\n"
"borrar cualquier dato que pudieran contener. Si así lo desea, por favor\n"
-"seleccione también dichas particiones.\n"
+"seleccione tambien dichas particiones.\n"
"\n"
"Por favor note que no es necesario volver a formatear todas las particiones\n"
"pre-existentes. Debe volver a formatear las particiones que contienen el\n"
@@ -3144,11 +3286,11 @@ msgstr ""
"volver a formatear particiones que contienen datos que desea preservar\n"
"(típicamente \"/home\").\n"
"\n"
-"Tenga sumo cuidado cuando selecciona las particiones. Después de formatear,\n"
+"Tenga sumo cuidado cuando selecciona las particiones. Despues de formatear,\n"
"se borrarán todos los datos en las particiones seleccionadas y no podrá\n"
"recuperarlos en absoluto.\n"
"\n"
-"Haga clic sobre \"Aceptar\" cuando esté listo para formatear las\n"
+"Haga clic sobre \"Aceptar\" cuando este listo para formatear las\n"
"particiones.\n"
"\n"
"Haga clic sobre \"Cancelar\" si desea elegir otra partición para la\n"
@@ -3215,9 +3357,9 @@ msgid ""
"terminate the installation. To continue with the installation, click on the\n"
"\"Accept\" button."
msgstr ""
-"Antes de continuar, debería leer cuidadosamente los términos de la\n"
+"Antes de continuar, debería leer cuidadosamente los terminos de la\n"
"licencia. Los mismos cubren a toda la distribución Mandrake Linux, y si\n"
-"Usted no está de acuerdo con todos los términos en la misma, haga clic\n"
+"Usted no está de acuerdo con todos los terminos en la misma, haga clic\n"
"sobre el botón \"Rechazar\". Esto terminará la instalación inmediatamente.\n"
"Para continuar con la instalación, haga clic sobre el botón \"Aceptar\"."
@@ -3268,38 +3410,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3324,7 +3460,7 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Ahora necesita elegir qué particiones se utilizarán para la instalación de\n"
+"Ahora necesita elegir que particiones se utilizarán para la instalación de\n"
"su sistema Mandrake Linux. Si las particiones ya han sido definidas, ya sea\n"
"por una instalación previa de GNU/Linux o con otra herramienta de\n"
"particionado, puede utilizarlas. En caso contrario se deben definir\n"
@@ -3350,27 +3486,23 @@ msgstr ""
"\n"
" * \"Más\": le da acceso a características adicionales:\n"
"\n"
-" * \"Guardar tabla de particiones\": guarda la tabla de particiones en "
-"un\n"
-"disquete. Útil para recuperar la tabla de particiones más adelante en caso\n"
-"que sea necesario. Es altamente recomendable realizar este paso.\n"
+" * \"Guardar tabla de particiones\": guarda la tabla de particiones en\n"
+"un disquete. Útil para recuperar la tabla de particiones más adelante en\n"
+"caso que sea necesario. Es altamente recomendable realizar este paso.\n"
"\n"
-" * \"Recuperar tabla de particiones\": esta opción le permitirá "
-"restaurar\n"
-"una tabla de particiones guardada previamente en un disquete.\n"
+" * \"Recuperar tabla de particiones\": esta opción le permitirá\n"
+"restaurar una tabla de particiones guardada previamente en un disquete.\n"
"\n"
-" * \"Rescatar tabla de particiones\": si su tabla de particiones está "
-"dañada\n"
-"puede intentar recuperarla utilizando esta opción. Por favor, tenga cuidado\n"
-"y recuerde que puede fallar.\n"
+" * \"Rescatar tabla de particiones\": si su tabla de particiones está\n"
+"dañada puede intentar recuperarla utilizando esta opción. Por favor, tenga\n"
+"cuidado y recuerde que puede fallar.\n"
"\n"
" * \"Volver a cargar\": descarta todos los cambios y carga su tabla de\n"
"particiones inicial.\n"
"\n"
-" * \"Montaje automático de soportes removibles\": si desmarca esta "
-"opción\n"
-"los usuarios estarán forzados a montar y desmontar manualmente los soportes\n"
-"removibles como los disquetes y los CD-ROMs.\n"
+" * \"Montaje automático de soportes removibles\": si desmarca esta\n"
+"opción los usuarios estarán forzados a montar y desmontar manualmente los\n"
+"soportes removibles como los disquetes y los CD-ROMs.\n"
"\n"
" * \"Asistente\": use esta opción si desea utilizar un asistente para\n"
"particionar su disco rígido. Se recomienda esto si no tiene un buen\n"
@@ -3385,7 +3517,7 @@ msgstr ""
"guardará sus cambios en el disco.\n"
"\n"
"Nota: todas las opciones son accesibles por medio del teclado. Navegue a\n"
-"través de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
+"traves de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
"\n"
"Cuando se selecciona una partición, puede utilizar:\n"
"\n"
@@ -3440,7 +3572,7 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Se ha detectado más de una partición MicrosoftWindows en su disco rígido.\n"
+"Se ha detectado más de una partición Microsoft Windows en su disco rígido.\n"
"Por favor, elija aquella a la cual desea cambiarle el tamaño para poder\n"
"instalar su sistema operativo Mandrake Linux nuevo.\n"
"\n"
@@ -3456,11 +3588,11 @@ msgstr ""
"\"Número de disco rígido\" siempre es una letra que sigue a \"hd\" o a\n"
"\"sd\". Para los discos IDE:\n"
"\n"
-" * \"a\" significa \"disco rígido maestro en la controladora IDE primaria"
-"\",\n"
+" * \"a\" significa \"disco rígido maestro en la controladora IDE\n"
+"primaria\",\n"
"\n"
-" * \"b\" significa \"disco rígido esclavo en la controladora IDE primaria"
-"\",\n"
+" * \"b\" significa \"disco rígido esclavo en la controladora IDE\n"
+"primaria\",\n"
"\n"
" * \"c\" significa \"disco rígido maestro en la controladora IDE\n"
"secundaria\",\n"
@@ -3493,11 +3625,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3521,7 +3653,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
"DrakX ahora necesita saber si desea realizar una instalación por defecto\n"
-"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). También\n"
+"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). Tambien\n"
"puede elegir realizar una instalación nueva o una actualización de un\n"
"sistema Mandrake Linux existente:\n"
"\n"
@@ -3532,12 +3664,12 @@ msgstr ""
" * \"Actualización\": esta clase de instalación le permite simplemente\n"
"actualizar los paquetes que en este momento están instalados en su sistema\n"
"Mandrake Linux. La misma mantiene las particiones corrientes de sus discos\n"
-"así como también las configuraciones de usuarios. Todos los otros pasos de\n"
+"así como tambien las configuraciones de usuarios. Todos los otros pasos de\n"
"instalación permanecen disponibles con respecto a la instalación simple;\n"
"\n"
" * \"Sólo actualizar paquetes\": esta clase completamente nueva le permite\n"
"actualizar un sistema Mandrake Linux existente a la vez que mantiene todas\n"
-"las configuraciones del sistema sin cambios. También es posible añadir\n"
+"las configuraciones del sistema sin cambios. Tambien es posible añadir\n"
"paquetes nuevos a la instalación corriente.\n"
"\n"
"Las actualizaciones deberían funcionar sin problemas para los sistemas\n"
@@ -3558,7 +3690,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3576,7 +3708,7 @@ msgstr ""
"del idioma que eligió) y Usted ni siquiera verá este paso. Sin embargo,\n"
"podría no tener un teclado que se corresponde exactamente con su idioma:\n"
"por ejemplo, si Usted es una persona hispano-parlante que está en Argentina\n"
-"o Méjico, su teclado será un teclado Latinoamericano, pero si está en\n"
+"o Mejico, su teclado será un teclado Latinoamericano, pero si está en\n"
"España será uno Español. En ambos casos, Usted tendrá que volver a este\n"
"paso de la instalación y elegir un teclado apropiado de la lista.\n"
"\n"
@@ -3585,7 +3717,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3608,7 +3740,7 @@ msgstr ""
"aplicaciones. Por ejemplo, si albergará a gente de Francia en su máquina,\n"
"seleccione Español como idioma principal en la vista de árbol y en la\n"
"sección avanzada haga clic sobre la estrella gris que corresponde a\n"
-"\"Francés|Francia\".\n"
+"\"Frances|Francia\".\n"
"\n"
"Note que se pueden instalar múltiples idiomas. Una vez que ha seleccionado\n"
"cualquier idioma adicional haga clic sobre el botón \"Aceptar\" para\n"
@@ -3616,7 +3748,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3646,7 +3778,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3656,23 +3788,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3698,7 +3830,7 @@ msgstr ""
"administrador del sistema y es el único autorizado a hacer actualizaciones,\n"
"agregar usuarios, cambiar la configuración general del sistema, etc.\n"
"Resumiendo, ¡\"root\" puede hacer de todo!. Es por esto que deberá elegir\n"
-"una contraseña que sea difícil de adivinar DrakX le dirá si la que eligió\n"
+"una contraseña que sea difícil de adivinar - DrakX le dirá si la que eligió\n"
"es demasiado fácil. Como puede ver, puede optar por no ingresar una\n"
"contraseña, pero le recomendamos encarecidamente que ingrese una, aunque\n"
"sea sólo por una razón: no piense que debido a que Usted arrancó GNU/Linux,\n"
@@ -3708,9 +3840,9 @@ msgstr ""
"accediendo a las mismas sin el cuidado suficiente. Es por esto que es\n"
"importante que sea difícil convertirse en \"root\".\n"
"\n"
-"La contraseña debería ser una mezcla de caracteres alfanuméricos y tener al\n"
+"La contraseña debería ser una mezcla de caracteres alfanumericos y tener al\n"
"menos una longitud de 8 caracteres. Nunca escriba la contraseña de \"root\"\n"
-"eso hace que sea muy fácil comprometer a un sistema.\n"
+"- eso hace que sea muy fácil comprometer a un sistema.\n"
"\n"
"Sin embargo, por favor no haga la contraseña muy larga o complicada debido\n"
"a que Usted debe poder recordarla sin realizar mucho esfuerzo.\n"
@@ -3733,7 +3865,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3755,7 +3887,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3763,7 +3895,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3791,20 +3923,19 @@ msgstr ""
"sector de arranque de grub/LILO de forma tal que Usted pueda arrancar\n"
"GNU/Linux u otro sistema operativo;\n"
"\n"
-" * si encuentra un sector de arranque de grub o LILO, lo reemplazará con "
-"uno\n"
-"nuevo;\n"
+" * si encuentra un sector de arranque de grub o LILO, lo reemplazará con\n"
+"uno nuevo;\n"
"\n"
"En caso de duda, DrakX mostrará un diálogo con varias opciones.\n"
"\n"
" * \"Cargador de arranque a usar\": tiene tres opciones:\n"
"\n"
-" * \"LILO con menú gráfico\": si prefiere a LILO con su interfaz "
+" * \"LILO con menú gráfico\": si prefiere a LILO con su interfaz\n"
"gráfica.\n"
"\n"
" * \"GRUB\": si prefiere a grub (menú de texto).\n"
"\n"
-" * \"LILO con menú de texto\": si prefiere a LILO con su interfaz de "
+" * \"LILO con menú de texto\": si prefiere a LILO con su interfaz de\n"
"texto.\n"
"\n"
" * \"Dispositivo de arranque\": en la mayoría de los casos, no cambiará lo\n"
@@ -3814,12 +3945,12 @@ msgstr ""
"\n"
" * \"Demora antes de arrancar la imagen predeterminada\": cuando vuelve a\n"
"arrancar la computadora, esta es la demora que se garantiza al usuario para\n"
-"elegir en el menú del cargador de arranque, una entrada distinta a la\n"
+"elegir - en el menú del cargador de arranque, una entrada distinta a la\n"
"predeterminada.\n"
"\n"
"!! Tenga presente que si no elige instalar un cargador de arranque\n"
"(seleccionando \"Cancelar\"), ¡Debe asegurarse que tiene una forma de\n"
-"arrancar a su sistema Mandrake Linux! También debe asegurarse que sabe lo\n"
+"arrancar a su sistema Mandrake Linux! Tambien debe asegurarse que sabe lo\n"
"que hace antes de cambiar cualquier opción. !!\n"
"\n"
"Haciendo clic sobre el botón \"Avanzadas\" en este diálogo se le ofrecerán\n"
@@ -3837,7 +3968,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3855,14 +3986,14 @@ msgstr ""
"instalan correctamente. Si este no es el caso, puede añadir una entrada a\n"
"mano en esta pantalla. Tenga cuidado de elegir los parámetros correctos.\n"
"\n"
-"También puede no desear dar acceso a estos otros sistemas operativos a\n"
+"Tambien puede no desear dar acceso a estos otros sistemas operativos a\n"
"cualquiera. En ese caso, puede borrar las entradas correspondientes. Pero\n"
"entonces, ¡necesitará un disquete de arranque para poder arrancar esos\n"
"otros sistemas operativos!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3878,29 +4009,28 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3912,35 +4042,35 @@ msgstr ""
"Otros sistemas operativos pueden ofrecerle uno, pero Mandrake Linux le\n"
"ofrece tres.\n"
"\n"
-" * \"pdq\"\"print, don't queue\" (imprimir sin poner en cola), es la\n"
+" * \"pdq\" - \"print, don't queue\" (imprimir sin poner en cola), es la\n"
"elección si Usted tiene una conexión directa a su impresora y desea evitar\n"
"el pánico de los papeles trabados, y no tiene impresora en red alguna.\n"
"Manejará sólo casos de red muy simples y es algo lento para las redes.\n"
-"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. Después de la\n"
+"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. Despues de la\n"
"instalación puede cambiar sus elecciones ejecutando PrinterDrake desde el\n"
"Centro de Control Mandrake y eligiendo el modo experto.\n"
"\n"
-" * \"CUPS\"\"Common Unix Printing System\" (Sistema de Impresión Común de\n"
-"Unix) es excelente imprimiendo en su impresora local y también en la otra\n"
-"punta del planeta. Es simple y puede actuar como servidor o cliente para el\n"
-"sistema de impresión antiguo \"lpd\", por lo que es compatible con los\n"
-"sistemas anteriores. Puede hacer muchas cosas, pero la configuración básica\n"
-"es tan simple como la de \"pdq\". Si necesita que emule a un servidor\n"
-"\"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces gráficas\n"
-"para imprimir o elegir las opciones de la impresora.\n"
-"\n"
-" * \"lprNG\"\"line printer daemon New Generation\" (servidor de impresora "
-"de\n"
-"líneas Nueva Generación). Este sistema puede hacer aproximadamente las\n"
-"mismas cosas que los otros, pero imprimirá en impresoras montadas sobre una\n"
-"red Novell, debido a que soporta el protocolo IPX, y puede imprimir\n"
-"directamente a comandos del shell. Si necesita Novell o imprimir a comandos\n"
-"de sin utilizar tuberías, utilice lprNG. De no ser así, se prefiere a CUPS\n"
-"ya que es más simple y es mejor al trabajar sobre redes."
+" * \"CUPS\" - \"Common Unix Printing System\" (Sistema de Impresión Común\n"
+"de Unix) es excelente imprimiendo en su impresora local y tambien en la\n"
+"otra punta del planeta. Es simple y puede actuar como servidor o cliente\n"
+"para el sistema de impresión antiguo \"lpd\", por lo que es compatible con\n"
+"los sistemas anteriores. Puede hacer muchas cosas, pero la configuración\n"
+"básica es tan simple como la de \"pdq\". Si necesita que emule a un\n"
+"servidor \"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces\n"
+"gráficas para imprimir o elegir las opciones de la impresora.\n"
+"\n"
+" * \"lprNG\" - \"line printer daemon New Generation\" (servidor de\n"
+"impresora de líneas Nueva Generación). Este sistema puede hacer\n"
+"aproximadamente las mismas cosas que los otros, pero imprimirá en\n"
+"impresoras montadas sobre una red Novell, debido a que soporta el protocolo\n"
+"IPX, y puede imprimir directamente a comandos del shell. Si necesita Novell\n"
+"o imprimir a comandos de sin utilizar tuberías, utilice lprNG. De no ser\n"
+"así, se prefiere a CUPS ya que es más simple y es mejor al trabajar sobre\n"
+"redes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3965,11 +4095,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX ahora detecta cualquier dispositivo IDE presente en su computadora.\n"
-"También buscará una o más tarjetas SCSI PCI en su sistema. Si se encuentra\n"
+"Tambien buscará una o más tarjetas SCSI PCI en su sistema. Si se encuentra\n"
"una tarjeta SCSI DrakX instalará el controlador apropiado automáticamente.\n"
"\n"
"Debido a que la detección de hardware a veces no detectará alguna pieza de\n"
@@ -3992,12 +4122,12 @@ msgstr ""
"\"Guía del Usuario\" (capítulo 3, sección \"Recopilando información acerca\n"
"de su hardware\") en busca de consejos para recopilar los parámetros\n"
"necesarios a partir de la documentación del hardware, desde el sitio web\n"
-"del fabricante (si tiene acceso a la Internet) o desde MicrosoftWindows (si\n"
-"utilizaba este hardware con Windows en su sistema)."
+"del fabricante (si tiene acceso a la Internet) o desde Microsoft Windows\n"
+"(si utilizaba este hardware con Windows en su sistema)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4007,9 +4137,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4021,7 +4150,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4069,13 +4198,13 @@ msgstr ""
"botones 2do y 3ro del ratón que por lo general no tienen los ratones\n"
"estándar de Apple. Algunos ejemplos son los siguientes:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: esta opción se puede usar o bien para cargar los módulos\n"
-"iniciales, antes que esté disponible el dispositivo de arranque, o bien\n"
+"iniciales, antes que este disponible el dispositivo de arranque, o bien\n"
"cargar una imagen de ramdisk para una situación de arranque de emergencia.\n"
"\n"
" * Tamaño de Initrd: generalmente el tamaño por defecto del ramdisk es 4096\n"
@@ -4092,12 +4221,12 @@ msgstr ""
"\n"
" * Predeterminada: selecciona a esta entrada como la opción Linux por\n"
"defecto, que se puede elegir simplemente presionando [Intro] en el prompt\n"
-"de Yaboot. Esta entrada también se marcará con un \"*\", si presiona [Tab]\n"
+"de Yaboot. Esta entrada tambien se marcará con un \"*\", si presiona [Tab]\n"
"para ver las selecciones del arranque."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4124,9 +4253,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4151,26 +4279,25 @@ msgstr ""
"entre CD, arranque OF, MacOS o Linux.\n"
"\n"
" * Demora de arranque del núcleo: esta demora es similar a la demora de\n"
-"arranque de LILO. Luego de seleccionar Linux, tendrá esta demora en décimas\n"
+"arranque de LILO. Luego de seleccionar Linux, tendrá esta demora en decimas\n"
"de segundo antes que se seleccione su descripción del núcleo\n"
"predeterminada.\n"
"\n"
-" * ¿Habilitar arranque desde el CD?: marcando esta opción Usted puede "
-"elegir\n"
-"\"C\" para el CD en el primer prompt de arranque.\n"
+" * ¿Habilitar arranque desde el CD?: marcando esta opción Usted puede\n"
+"elegir \"C\" para el CD en el primer prompt de arranque.\n"
"\n"
" * ¿Habilitar arranque OF?: marcando esta opción Usted puede elegir \"N\"\n"
"para Open Firmware en el primer prompt de arranque.\n"
"\n"
-" * SO predeterminado: puede seleccionar qué sistema operativo arrancará por\n"
+" * SO predeterminado: puede seleccionar que sistema operativo arrancará por\n"
"defecto cuando expira la demora de Open Firmware."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4178,12 +4305,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4199,7 +4325,7 @@ msgid ""
"associated with it."
msgstr ""
"Aquí se le presentan varios parámetros que conciernen a su máquina.\n"
-"Dependiendo de su hardware instalado, puede o no, ver las entradas\n"
+"Dependiendo de su hardware instalado, puede - o no, ver las entradas\n"
"siguientes:\n"
"\n"
" * \"Ratón\": verifique la configuración del ratón y haga clic sobre el\n"
@@ -4218,10 +4344,9 @@ msgstr ""
" * \"Impresora\": al hacer clic sobre el botón \"Sin impresora\" se abrirá\n"
"el asistente de configuración de la impresora.\n"
"\n"
-" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su "
-"sistema,\n"
-"la misma se muestra aquí. Durante la instalación no es posible modificación\n"
-"alguna.\n"
+" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su\n"
+"sistema, la misma se muestra aquí. Durante la instalación no es posible\n"
+"modificación alguna.\n"
"\n"
" * \"Tarjeta de TV\": si se detecta una tarjeta de TV en su sistema, la\n"
"misma se muestra aquí. Durante la instalación no es posible modificación\n"
@@ -4233,7 +4358,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4245,7 +4370,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4263,7 +4388,7 @@ msgstr ""
"Haga clic sobre \"Cancelar\" para cancelar esta operación sin perder los\n"
"datos y las particiones presentes en esta unidad de disco."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4275,12 +4400,12 @@ msgstr ""
"disquete de arranque no contiene un núcleo de misma versión que el soporte "
"de instalación (haga un nuevo disquete de arranque por favor)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Tú también debes formatear %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4305,20 +4430,20 @@ msgstr ""
"\n"
"¿Realmente desea instalar estos servidores?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "No se puede usar difusión sin un dominio NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserte un disquete formateado con FAT en la disquetera %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Este disquete no está formateado con FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4326,7 +4451,7 @@ msgstr ""
"Para utilizar esta selección de paquetes salvada, arranque la instalación "
"con \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Error al leer el archivo %s"
@@ -4357,7 +4482,7 @@ msgstr "Debe tener una partición de intercambio"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4365,59 +4490,59 @@ msgstr ""
"\n"
"¿Desea continuar de todas formas?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe tener una partición FAT montada en /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Usar el espacio libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Usar la partición existente"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "No hay ninguna partición existente para usar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Usar la partición de Windows para loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "¿Qué partición desea usar para Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Elija los tamaños"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Tamaño de la partición raíz en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Tamaño de la partición de intercambio en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Usar el espacio libre de la partición Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "¿A qué partición desea cambiarle el tamaño?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calculando los límites del sistema de archivos Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4426,13 +4551,16 @@ msgstr ""
"El redimensionador de tamaño de la FAT no puede gestionar su partición, \n"
"ocurrió el error siguiente: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Su partición Windows está muy fragmentada, por favor primero ejecute \"defrag"
"\""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4454,54 +4582,54 @@ msgstr ""
" seguridad de sus datos.\n"
"Cuando esté seguro, pulse sobre Aceptar."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "¿Qué tamaño desea conservar para windows en la"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partición %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Falló el redimensionado de la FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"No hay particiones FAT para redimensionar o para usar como loopback (o no "
"queda espacio suficiente)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Borrar el disco entero"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Quitar Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Tiene más de un disco rígido, ¿sobre cuál desea instalar Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Se perderán TODAS las particiones y sus datos en la unidad %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionamiento de disco personalizado"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4510,11 +4638,11 @@ msgstr ""
"Ahora puede particionar %s.\n"
"Cuando haya terminado, no se olvide de guardar usando 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "No queda espacio libre suficiente en la partición de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "No se puede encontrar nada de espacio para instalar"
@@ -4523,16 +4651,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"El asistente de particionamiento de DrakX encontró las siguientes soluciones:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Falló el particionamiento: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Levantando la red"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Bajando la red"
@@ -4544,12 +4672,12 @@ msgstr ""
"Ocurrió un error y no se puede gestionar de forma adecuada.\n"
"Continúe bajo su propio riesgo."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaje %s duplicado"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4561,12 +4689,12 @@ msgstr ""
"Compruebe el CD de instalación en un sistema ya existente con el comando:\n"
" rpm -qpl Mandrake/RPMS/*.rpm\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ninguna disquetera disponible"
@@ -4576,9 +4704,9 @@ msgstr "Ninguna disquetera disponible"
msgid "Entering step `%s'\n"
msgstr "Entrando en la etapa '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4587,200 +4715,154 @@ msgstr ""
"Mandrake Linux. Si eso ocurre, puede intentar una instalación tipo texto.\n"
"Para ello, presione 'F1' cuando arranque desde el CDROM, e introduzca 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Tipo de instalación"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Por favor, elija uno de los siguentes tipos de instalación:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"El tamaño total para los grupos que seleccionó es de aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si desea instalar un tamaño total inferior,\n"
-"elija el porcentaje de paquetes que desea instalar.\n"
-"\n"
-"Un porcentaje bajo instalará sólo los paquetes más importantes;\n"
-"un porcentaje de 100%% instalará todos los paquetes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Tiene espacio en disco para sólo %d%% de esos paquetes.\n"
-"\n"
-"Si desea instalar menos de esto,\n"
-"elija el porcentaje de paquetes que desea instalar.\n"
-"Un porcentaje bajo instalará sólo los paquetes más importantes;\n"
-"un porcentaje de %d%% instalará todos los que sea posible."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Podrá elegirlos más detalladamente en la etapa siguiente"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Porcentaje de paquetes a instalar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selección de grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selección de paquetes individuales"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamaño total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquete incorrecto"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nombre: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versión: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamaño: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No puede seleccionar este paquete porque no hay espacio suficiente para "
"instalarlo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Se van a instalar los siguientes paquetes"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Se van a quitar los siguientes paquetes"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "No puede seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este es un paquete obligatorio, no puede desmarcarlo"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "No puede desmarcar este paquete. Ya está instalado"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Se debe actualizar este paquete\n"
"¿Está seguro que quiere desmarcarlo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "No puede desmarcar este paquete. Debe ser actualizado"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostrar los paquetes seleccionados automáticamente"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Cargar/Guardar en un disquete"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Actualizando la selección de paquetes"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Instalación mínima"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Elija los paquetes que desea instalar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tiempo restante "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Preparando la instalación. Espere, por favor"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalando el paquete %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rechazar"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4796,17 +4878,17 @@ msgstr ""
"Si no lo posee, pulse Cancelar para cancelar la instalación desde este CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "¿Seguir adelante?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Hubo un error al ordenar los paquetes:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Hubo un error al instalar los paquetes:"
@@ -4885,11 +4967,11 @@ msgstr "Ocurrió un error"
msgid "Do you really want to leave the installation?"
msgstr "¿Realmente desea salir de la instalación?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acuerdo de licencia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4904,7 +4986,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -5123,109 +5205,113 @@ msgstr ""
"competentes de París, Francia. Para cualquier pregunta relacionada con\n"
"este documento, por favor, póngase en contacto con MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Seleccione la distribución de su teclado."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Aquí tiene la lista completa de teclados disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "¿Qué tipo de instalación desea?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalación/Actualización"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "¿Es una instalación o una actualización?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomendada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experto"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Actualización"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Sólo actualizar los paquetes."
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Por favor, seleccione el tipo de su ratón."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Puerto del ratón"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Seleccione el puerto serie al que está conectado el ratón, por favor."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulación de los botones"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulación del botón 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulación del botón 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configurando tarjetas PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configurando dispositivos IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "no hay particiones disponibles"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Rastreando las particiones para encontrar los puntos de montaje"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Seleccione los puntos de montaje"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5239,7 +5325,7 @@ msgstr ""
"\n"
"¿Está de acuerdo en perder todas las particiones?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5247,7 +5333,7 @@ msgstr ""
"DiskDrake no pudo leer correctamente la tabla de particiones.\n"
"¡Continúe bajo su propio riesgo!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5255,78 +5341,81 @@ msgstr ""
"¡No hay 1MB de espacio para bootstrap! La instalación continuará, pero para "
"arrancar su sistema, necesitará crear la partición bootstrap en DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "No se encontró partición raíz para efectuar la actualización"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partición raíz"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "¿Cual es la partición raíz (/) de su sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar el equipo para que se efectúe la modificación de la tabla "
"de particiones"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elija las particiones que desea formatear"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "¿Verificar el disco en busca de bloques malos?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formateando las particiones"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando y formateando el archivo %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Espacio de intercambio insuficiente para completar la instalación, añada un "
"poco más"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Buscando los paquetes disponibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Buscando los paquetes disponibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Encontrando los paquetes a actualizar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "No puede desmarcar este paquete. Ya está instalado"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Su sistema no tiene espacio suficiente para instalar o actualizar (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínima (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5336,35 +5425,35 @@ msgstr ""
"El formato es el mismo que los disquetes generados para la instalación "
"automática."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Cargar desde un disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Cargando desde un disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Selección de paquetes"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Introduzca un disquete que contenga la selección de paquetes"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Guardar en un disquete"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "El tamaño seleccionado es mayor que el disponible"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tipo de instalación."
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5372,19 +5461,19 @@ msgstr ""
"No ha seleccionado ningún grupo de paquetes\n"
"Elija por favor la mínima instalación que quiera."
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Con documentación básica (¡recomendado!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instalación mínima \"en serio\" (especialmente sin urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5394,16 +5483,16 @@ msgstr ""
"Si no tiene ningún CD, haga clic sobre \"Cancelar\".\n"
"Si sólo le faltan algunos CDs, desmárquelos y haga clic sobre \"Aceptar\"."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetado como \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparando la instalación"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5412,23 +5501,23 @@ msgstr ""
"Instalando el paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuración posterior a la instalación"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Por favor, inserte el disquete de módulos actualizados en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5501,13 +5590,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5519,155 +5610,185 @@ msgstr ""
"\n"
"¿Desea instalar las actualizaciones?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Contactando con el sitio web de Mandrake Linux para obtener la lista de las "
"réplicas disponibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Elija un sitio de réplica del que bajar los paquetes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Contactando con el sitio de réplica para obtener la lista de los paquetes "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "¿Cuál es su huso horario?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Reloj interno puesto a GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática de hora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Servidor NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Sin impresora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "¿Tiene una tarjeta de sonido ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Use \"sndconfig\" luego de la instalación para configurar su tarjeta de "
"sonido"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No se detectó tarjeta de sonido. Pruebe \"harddrake\" luego de la instalación"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resumen"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Ratón"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Huso horario"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Tarjeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Tarjeta de sonido"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Tarjeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Archivos locales"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contraseña de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sin contraseña"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Esta contraseña es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentificación"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentificación LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Servidor LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentificación NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentificación LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Obtener tipografías de Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5698,19 +5819,19 @@ msgstr ""
"Si desea crear un disquete de arranque para su sistema, inserte un disquete\n"
"en la primer disquetera y presione \"Aceptar\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primera disquetera"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segunda disquetera"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5737,7 +5858,7 @@ msgstr ""
"grave del sistema. ¿Desea crear un disquete de arranque para su sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5752,28 +5873,28 @@ msgstr ""
"fallar\n"
"porque XFS necesita un controlador muy grande)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Disculpe, pero no hay ninguna disquetera disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elija la disquetera que desea usar para crear el disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserte un disquete en %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creando el disquete de arranque"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparando el cargador de arranque"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5785,11 +5906,11 @@ msgstr ""
"La instalación continuará, pero necesitará\n"
"utilizar BootX para arrancar su máquina."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "¿Desea usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5798,16 +5919,16 @@ msgstr ""
"¿desea forzar la instalación incluso si ello implicara la destrucción de la "
"primera partición?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instalando cargador de arranque"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Falló la instalación del cargador de arranque. Ocurrió el siguiente error:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5825,18 +5946,17 @@ msgstr ""
" Luego escriba: shut-down\n"
"La próxima vez que arranque debería ver el prompt del cargador de arranque."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserte un disquete en blanco en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creando el disquete de instalación automática"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5846,7 +5966,8 @@ msgstr ""
"\n"
"¿Realmente desea salir ahora?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5857,7 +5978,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5869,7 +5990,7 @@ msgstr ""
"Para obtener información sobre correcciones disponibles para esta versión\n"
"de Mandrake Linux, consulte el archivo de erratas disponible en\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Hay información disponible sobre cómo configurar su sistema en el capítulo "
@@ -5877,11 +5998,16 @@ msgstr ""
"configuración tras la instalación de la guía de usuario oficial de Mandrake "
"Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Generar un disquete de instalación automática"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5895,15 +6021,15 @@ msgstr ""
"\n"
"Puede preferir reproducir la instalación.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Guardar la selección de paquetes"
@@ -5931,44 +6057,24 @@ msgstr "falta \"consolehelper\""
msgid "Choose a file"
msgstr "Elija un archivo"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanzada"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Básico"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Espere, por favor"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir el árbol"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Contraer el árbol"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Cambiar entre vista plana y ordenada por grupos"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Elección incorrecta, inténtelo de nuevo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "¿Su elección? (por defecto %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5977,31 +6083,35 @@ msgstr ""
"Entradas que tendrá que rellenar:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "¿Su elección? (0/1, por defecto '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Botón `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "¿Desea pulsar este botón?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "¿Su elección? (por defecto %s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Hay muchas cosas para seleccionar (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6011,7 +6121,7 @@ msgstr ""
"editar, o pulse Intro para continuar.\n"
"¿Su elección?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6020,327 +6130,327 @@ msgstr ""
"=> Aviso, una etiqueta cambió:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Reenviar"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemán"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Español"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finlandés"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francés"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruego"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Británico"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albano"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenio (antiguo)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenio (nuevo)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbadján (latín)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Búlgaro (fonético)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Búlgaro (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasileño (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suizo (germánico)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suizo (francés)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemán (sin teclas muertas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danés"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruego)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Sueco)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiano (estilo \"ruso\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (estilo \"latín\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Griego"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Húngaro"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelí"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelí (fonético)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraní"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandés"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japonés de 106 teclas"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Coreano"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antiguo)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (nuevo)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"numérico\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Letón"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandés"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polaco (distribución qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polaco (distribución qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugués"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadiense (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumano (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumano (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbio (cirílico)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado tailandés"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Teclado tajik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo \"Q\" moderno)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"numérico\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslavo (latín)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Tecla Alt derecha"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Ambas teclas Shift simultáneamente"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Las teclas Control y Shift simultáneamente"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Tecla CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Las teclas Ctrl y Alt simultáneamente"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Las teclas Alt y Shift simultáneamente"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "La tecla \"Menú\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Tecla \"Windows\" de la izquierda"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Tecla \"Windows\" de la derecha"
@@ -6353,7 +6463,31 @@ msgstr "Montajes circulares %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Quite los volúmenes lógicos primero\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Número de teléfono"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formateo de particiones"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6396,10 +6530,6 @@ msgstr "1 botón"
msgid "Generic 2 Button Mouse"
msgstr "Ratón de 2 botones genérico"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Genérico"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rueda"
@@ -6464,38 +6594,54 @@ msgstr "ninguno"
msgid "No mouse"
msgstr "Sin ratón"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Pruebe su ratón, por favor."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Para activar el ratón,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "¡MUEVA SU RUEDA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Siguiente ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "¿Es correcto?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandir el árbol"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Contraer el árbol"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Cambiar entre vista plana y ordenada por grupos"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar a Internet"
@@ -6542,7 +6688,7 @@ msgstr ""
"No se ha detectado ningún adaptador de red ethernet en su sistema.\n"
"No se puede configurar este tipo de conexión."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Elija la interfaz de red"
@@ -6557,7 +6703,7 @@ msgstr ""
msgid "no network card found"
msgstr "no se encontró ninguna tarjeta de red"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configurando la red"
@@ -6574,15 +6720,15 @@ msgstr ""
"completamente,\n"
"como \"mimaquina.milabo.micompa.com\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nombre de la máquina"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Asistente para la configuración de la red"
@@ -6637,7 +6783,7 @@ msgstr "Configuración de RDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccione su proveedor.\n"
" Si no está en la lista, elija No listado"
@@ -6656,14 +6802,14 @@ msgstr "Protocolo para el resto del mundo"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocolo para el resto del mundo \n"
" sin canal D (líneas alquiladas)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "¿Qué protocolo desea utilizar?"
#: ../../network/isdn.pm_.c:199
@@ -6687,7 +6833,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si tiene una tarjeta ISA, los valores de la próxima pantalla deberían ser "
@@ -6704,13 +6851,13 @@ msgid "Continue"
msgstr "Continuar"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "¿Cuál es su tarjeta RDSI?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Se ha detectado una tarjeta RDSI PCI, pero no se conoce el tipo. Por favor, "
"seleccione una tarjeta PCI en la pantalla siguiente."
@@ -6729,47 +6876,47 @@ msgstr "Seleccione el puerto serie al que está conectado su módem."
msgid "Dialup options"
msgstr "Opciones de llamada por módem"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nombre de la conexión"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Número de teléfono"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID de conexión"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Por script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Por terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nombre de dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primer servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segundo servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6777,7 +6924,7 @@ msgstr ""
"\n"
"Puede desconectarse o volver a configurar su conexión."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6785,11 +6932,11 @@ msgstr ""
"\n"
"Puede volver a configurar su conexión."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Ahora está conectado a Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6797,32 +6944,32 @@ msgstr ""
"\n"
"Se puede conectar a Internet o volver a configurar su conexión."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Ahora no está conectado a Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Desconectar"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Configurar la conexión"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Configuración y conexión a Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ahora vamos a configurar la conexión %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6841,12 +6988,12 @@ msgstr ""
"\n"
"Pulse siguiente para continuar."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuración de la red"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6859,9 +7006,9 @@ msgstr ""
"para\n"
"volver a configurar sus conexiones de red y a Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6871,66 +7018,72 @@ msgstr ""
"Estamos a punto de configurar su conexión de red/Internet.\n"
"Si no desea usar la detección automática, desmarque la casilla.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Elija el perfil a configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Usar detección automática"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modo experto"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detectando los dispositivos..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Conexión normal por módem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectada en el puerto %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Conexión RDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detectada %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Conexión ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectada en la interfaz %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Conexión por cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detectada conexión por cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Conexión a la red local"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "tarjeta(s) de red detectada(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Elija la conexión que desea configurar"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6940,23 +7093,23 @@ msgstr ""
"Seleccione la que quiere utilizar.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Conexión a Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "¿Desea iniciar su conexión al arrancar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuración de la red"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "La red necesita ser reiniciada"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6967,7 +7120,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6977,7 +7130,7 @@ msgstr ""
"\n"
"Ahora se aplicará la configuración a su sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6985,19 +7138,19 @@ msgstr ""
"Después de esto, se recomienda que reinicie su entorno X\n"
"para evitar el problema del cambio del nombre de la máquina."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Ocurrieron problemas durante la configuración.\n"
"Verifique su conexión con net_monitor o mcc. Si su conexión no funciona, "
"puede que desee volver a iniciar la configuración"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -7007,7 +7160,7 @@ msgstr ""
"Simplemente acepte para mantener la configuración del dispositivo.\n"
"Al modificar los campos de abajo se ignorará esta configuración."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7017,38 +7170,43 @@ msgstr ""
"Cada valor tiene que introducirse como una dirección IP en notación\n"
"decimal con puntos (por ejemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configurando el dispositivo de red %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Dirección IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Máscara de red"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Dirección IP automática"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciado al arranque"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Las direcciones IP deben estar en el formato 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7061,64 +7219,64 @@ msgstr ""
"como \"mimaquina.milabo.micompa.com\".También puede introducir la dirección "
"IP de la pasarela si tiene una"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Pasarela de red (ej %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositivo de pasarela de red"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuración de los proxies"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Id tarjeta de red (útil para portátiles)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "El nombre del proxy debe ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "El nombre del proxy debe ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuración de Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "¿Desea intentar conectarse a Internet ahora?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probando su conexión..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ahora no está conectado a Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Por motivos de seguridad, ahora será desconectado."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7126,111 +7284,116 @@ msgstr ""
"El sistema no parece estar conectado al Internet.\n"
"Intente volver a configurar su conexión."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuración de la conexión"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Por favor, complete o verifique el campo de abajo"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ de la tarjeta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoria (DMA) de la tarjeta"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S de la tarjeta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_0 de la tarjeta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 de la tarjeta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Su número de teléfono personal"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nombre del proveedor (ej proveedor.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Número de teléfono del proveedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 del proveedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 del proveedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Elija su país"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modo de marcación"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Velocidad de la conexión"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Demora de la conexión (en seg)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Usuario de la cuenta (nombre de usuario)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Contraseña de la cuenta"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "mount falló: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "La partición extendida no está disponible en esta plataforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Tiene un hueco en la tabla de particiones, pero no se puede usar.\n"
"La única solución es desplazar sus particiones primarias para que el hueco "
"esté después de las particiones extendidas"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Falló la restauración a partir del archivo %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Archivo de respaldo incorrecto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Error al escribir en el archivo %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7241,187 +7404,187 @@ msgstr ""
"Esto significa que escribir cualquier cosa en el disco terminará produciendo "
"basura al azar"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "necesario"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importante"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "muy bueno"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bueno"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "quizás"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
"CUPS - Common Unix Printing System (Sistema de impresión común de Unix)"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR de nueva generación"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon (Demonio de impresora de líneas)"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue (Imprimir, no encolar)"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Impresora en un servidor CUPS remoto"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Impresora en un servidor lpd remoto"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impresora de red (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impresora en un servidor SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Impresora en un servidor NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Introduzca el URI del dispositivo de impresión"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Filtrar el trabajo en un comando"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Modelo desconocido"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Impresoras locales"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Impresoras remotas"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " en el puerto paralelo \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", impresora USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositivo multifunción en puerto paralelo \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", dispositivo multi-función en USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multifunción en HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", dispositivo multifunción"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", imprimiendo en %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr " en servidor LDP \"%s\", impresora \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", puerto \"%s\""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr " en servidor Windows \"%s\", compartida como \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "en servidor Novell \"%s\", impresora \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", usando comando %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Impresora \"en crudo\" (sin controlador)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(en %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(en esta máquina)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "En servidor CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Por defecto)"
@@ -7443,11 +7606,11 @@ msgstr ""
"Aquí no tiene que configurar las impresoras en los servidores CUPS remotos; "
"las mismas se detectarán automáticamente."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Configuración de CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Especificar servidor CUPS"
@@ -7491,7 +7654,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Las direcciones IP deberían parecerse a 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "¡El número de puerto debe ser un número entero!"
@@ -7499,7 +7662,7 @@ msgstr "¡El número de puerto debe ser un número entero!"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Puerto"
@@ -7507,20 +7670,12 @@ msgstr "Puerto"
msgid "Automatic CUPS configuration"
msgstr "Configuración automática de CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detectando dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar puertos"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Añadir una impresora nueva"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7542,13 +7697,13 @@ msgstr ""
"darle acceso a los controladores de todas las impresoras disponibles, "
"opciones del controlador y tipos de conexión de impresoras."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7582,11 +7737,11 @@ msgstr ""
"impresión en una impresora remota si printerdrake no la lista "
"automáticamente."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Detección automática de impresoras"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7610,11 +7765,11 @@ msgstr ""
"de impresión, ...), seleccione \"Impresora\" en la sección de \"Hardware\" "
"del Centro de control de Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Autodetección de impresoras."
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7630,33 +7785,37 @@ msgstr ""
"\n"
"¿Seguro que desea detectar automáticamente sus impresoras?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Realizar detección automática"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Configurar la impresora manualmente"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Probar puertos"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detectada %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Impresora en puerto paralelo \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Impresora USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7668,11 +7827,11 @@ msgstr ""
"(Puertos paralelos: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
"1ª impresora USB: /dev/usb/lp0, 2ª impresora USB: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Debe introducir un dispositivo un un nombre de archivo"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7680,7 +7839,7 @@ msgstr ""
"¡No se encontraró ninguna impresora local!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7688,7 +7847,7 @@ msgstr ""
"Las impresoras en red sólo se pueden instalar tras la inslación. Seleccione "
"\"Hardware\" y luego \"Impresora\" en el Centro de control de Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7696,7 +7855,7 @@ msgstr ""
"Para instalar impresoras en red, haga clic en \"Cancelar\", cambie al \"Modo "
"experto\", y haga clic en \"Añadir una nueva impresora\" de nuevo."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7705,7 +7864,7 @@ msgstr ""
"quiere configurar, introduzca en la línea de entrada un nombre de "
"dispositivo/nombre de archivo en la línea de entrada"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7714,7 +7873,7 @@ msgstr ""
"favor, seleccione la impresora que quiere configurar o introduzca un nombre "
"de dispositivo/nombre de archivo en la línea de entrada"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7726,7 +7885,7 @@ msgstr ""
"detectó correctamente o si prefiere una configuración personalizada, active "
"la \"Configuración manual\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7739,7 +7898,7 @@ msgstr ""
"detectó correctamente o si prefiere una configuración personalizada, active "
"la \"Configuración manual\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7747,11 +7906,11 @@ msgstr ""
"Por favor, elija el puerto donde está conectada su impresora o ingrese el "
"nombre de un dispositivo o archivo en la línea de entrada"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Por favor, elija el puerto al que está conectado su impresora."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7759,52 +7918,65 @@ msgstr ""
"(Puertos paralelo: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
"1er impresora USB: /dev/usb/lp0, 2da impresora USB: /dev/usb/lp1, ...) "
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "¡Debe elegir/ingresar una impresora o un dispositivo!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Configuración manual"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"¿Es su impresora un dispositivo multifunción de HP (OfficeJet, PSC, "
"PhotoSmart LaserJet 1100/1200/1220/3200/3300 con escáner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instalando el paquete HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Verificando el dispositivo y configurando HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instalando el paquete SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalando paquetes..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Escaneando en su dispositivo multifunción de HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Escaneando en su dispositivo multifunción de HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Haciendo que el puerto de impresora esté disponible para CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Leyendo base de datos de impresoras ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opciones de la impresora remota lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7812,27 +7984,27 @@ msgstr ""
"Para utilizar impresora LPD remota, necesita proporcionar el nombre de host "
"del servidor de impresión y el nombre de la impresora en ese servidor."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nombre de host del servidor remoto"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nombre de la impresora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "¡Falta el nombre del host remoto!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "¡Falta el nombre de la impresora remota!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opciones de la impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7846,35 +8018,35 @@ msgstr ""
"cualquier otra información del nombre de usuario, contraseña y grupo de "
"trabajo que haga falta."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Máquina del servidor SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nombre del recurso compartido"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupo de trabajo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "¡Debe indicar el nombre o la dirección IP del servidor!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "¡No se encuentra el nombre del recurso compartido de Samba!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "¡ADVERTENCIA DE SEGURIDAD!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7897,40 +8069,57 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
-"Está a punto de configurar la impresión a una cuenta Windows con contraseña. Debido a una falla en la arquitectura del cliente Samba la contraseña se pone como texto plano en la línea de comandos del cliente Samba que se usa para transmitir el trabajo de impresión al servidor Windows. Por lo tanto, es posible que cada usuario de esta máquina vea la clave en pantalla ejecutando \"ps auxwww\".\n"
+"Está a punto de configurar la impresión a una cuenta Windows con contraseña. "
+"Debido a una falla en la arquitectura del cliente Samba la contraseña se "
+"pone como texto plano en la línea de comandos del cliente Samba que se usa "
+"para transmitir el trabajo de impresión al servidor Windows. Por lo tanto, "
+"es posible que cada usuario de esta máquina vea la clave en pantalla "
+"ejecutando \"ps auxwww\".\n"
"\n"
-"Recomendamos utilizar alguna de las alternativas siguientes (en todos los casos tiene que asegurarse que sólo las máquinas de su red local tienen acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
+"Recomendamos utilizar alguna de las alternativas siguientes (en todos los "
+"casos tiene que asegurarse que sólo las máquinas de su red local tienen "
+"acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
"\n"
-"Usar una cuenta sin contraseña en su servidor Windows, por ej. la cuenta \"GUEST\" o una cuenta especial dedicada a la impresión. No quite la protección con contraseña de una cuenta personal o de la cuenta del administrador.\n"
+"Usar una cuenta sin contraseña en su servidor Windows, por ej. la cuenta "
+"\"GUEST\" o una cuenta especial dedicada a la impresión. No quite la "
+"protección con contraseña de una cuenta personal o de la cuenta del "
+"administrador.\n"
"\n"
-"Configure a su servidor Windows para que la impresión esté disponible bajo el protocolo LPD y configure la impresión desde esta máquina bajo el tipo de conexión \"%s\" en PrinterDrake.\n"
+"Configure a su servidor Windows para que la impresión esté disponible bajo "
+"el protocolo LPD y configure la impresión desde esta máquina bajo el tipo de "
+"conexión \"%s\" en PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
"protocol and set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
-msgstr "Configure a su servidor Windows para que la impresión esté disponible bajo el protocolo IPP y configure la impresión desde esta máquina bajo el tipo de conexión \"%s\" en PrinterDrake.\n\n"
+msgstr ""
+"Configure a su servidor Windows para que la impresión esté disponible bajo "
+"el protocolo IPP y configure la impresión desde esta máquina bajo el tipo de "
+"conexión \"%s\" en PrinterDrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"Conecte su impresora a un servidor Linux y permita que su(s) máquina(s) Windows se conecten al mismo como un cliente.\n"
+"Conecte su impresora a un servidor Linux y permita que su(s) máquina(s) "
+"Windows se conecten al mismo como un cliente.\n"
"\n"
"¿Realmente desea continuar configurando esta impresora como lo está haciendo?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opciones de la impresora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7942,27 +8131,27 @@ msgstr ""
"de la máquina en TCP/IP) así como el nombre de la cola de impresión que "
"desea usar y el nombre de usuario y la contraseña apropiados."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nombre de la cola de impresión"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "¡No se encuentra el nombre del servidor NCP!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "¡No se encuentra la cola del servidor NCP!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Opciones de la impresora por socket/TCP"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7974,19 +8163,19 @@ msgstr ""
"servidores HP JetDirect el número de puerto por lo general es 9100, en otros "
"servidores puede variar. Consulte el manual de su hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nombre de host de la impresora"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "¡No se encuentra el nombre de la máquina de la impresora!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI del dispositivo de impresión"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7996,11 +8185,11 @@ msgstr ""
"debe cumplir con las especificaciones Foomatic o CUPS. Recuerde que no todos "
"los sistemas de impresión admiten URIs."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "¡Debe introducir un URI válido!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8009,27 +8198,23 @@ msgstr ""
"qué rellenar los campos Descripción ni Ubicación. Son comentarios para los "
"usuarios."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nombre de la impresora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descripción"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ubicación"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Preparando base de datos de impresoras ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "El modelo de su impresora"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8056,24 +8241,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "El modelo es correcto"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Seleccionar el modelo manualmente"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Selección del modelo de impresora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "¿Qué modelo de impresora tiene?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8088,7 +8273,7 @@ msgstr ""
"si el cursor está sobre un modelo equivocado o si está en \"Impresora en "
"crudo\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8096,11 +8281,11 @@ msgstr ""
"Si no se lista su impresora, elija una compatible (vea el manual de la "
"misma) o una simliar."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Configuración de impresora de windows OKI"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8117,11 +8302,11 @@ msgstr ""
"impresora no funcionará. El controlador ignorará la configuración del tipo "
"de conexión."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Configuración de impresora de inyección de tinta Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8133,7 +8318,7 @@ msgstr ""
"de impresión. Por favor, conecte su impresora a un puerto local o "
"configúrelo en la máquina a la que está conectada."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8156,7 +8341,7 @@ msgstr ""
"páginas alineadas con la cabeza de impresión \"lexmarkmaintain\" y ajuste la "
"configuración de la alineación de la cabeza con este programa."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8173,22 +8358,22 @@ msgstr ""
"configurados correctamente. Note que una calidad de impresión o resolución "
"extremadamente alta puede ser bastante lenta."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "¡La opción %s debe ser un número entero!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "¡La opción %s debe ser un número!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "¡La opción %s está fuera de rango"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8197,11 +8382,11 @@ msgstr ""
"¿Quiere configurar esta impresora (\"%s\")\n"
"como la impresora predeterminada?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Páginas de prueba"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8213,39 +8398,39 @@ msgstr ""
"incluso en impresoras láser con muy poca memoria puede que no salga. En la "
"mayoría de los casos, basta con imprimir la página de prueba estándar."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "No hay páginas de prueba"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Imprimir"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Página de prueba estándar"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Página de prueba alternativa (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Página de prueba alternativa (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Página de prueba de foto"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "No imprimir ninguna página de prueba"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Imprimir la(s) página(s) de prueba..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8260,7 +8445,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8268,15 +8453,15 @@ msgstr ""
"La(s) página(s) de prueba se enviaron al demonio de impresión.\n"
"Puede que pase algo de tiempo antes de que comience la impresión.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "¿Funcionó adecuadamente?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Impresora en crudo"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8290,7 +8475,7 @@ msgstr ""
"permiten seleccionar la impresora y modificar las opciones de configuración "
"fácilmente.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8301,8 +8486,8 @@ msgstr ""
"nombre del archivo porque el archivo a imprimir lo proporciona la "
"aplicación.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8316,11 +8501,11 @@ msgstr ""
"configuraciones deseadas a la línea de comando, por ejemplo \"%s <archivo>"
"\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Para obtener una lista con las opciones disponibles para la impresora actual "
@@ -8328,7 +8513,7 @@ msgstr ""
"de opciones\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8336,7 +8521,7 @@ msgstr ""
"Aquí tiene una lista de las opciones disponibles para la impresora actual:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8345,8 +8530,8 @@ msgstr ""
"Para imprimir un archivo desde la línea de comando (ventana de terminal) use "
"el comando \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8357,7 +8542,7 @@ msgstr ""
"del archivo porque el nombre del archivo a imprimir lo proporciona la "
"aplicación.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8365,7 +8550,7 @@ msgstr ""
"Para obtener una lista de las opciones disponibles para la impresora actual, "
"haga clic en el botón \"Imprimir lista de opciones\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8374,7 +8559,7 @@ msgstr ""
"Para imprimir un archivo desde la línea de comando (ventana de terminal) use "
"el comando \"%s <archivo>\" o \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8390,7 +8575,7 @@ msgstr ""
"detiene todos los trabajos de impresión inmediatamente cuando hace clic en "
"él. Esto es útil, por ejemplo, para atascos de papel.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8403,38 +8588,49 @@ msgstr ""
"configuración para un trabajo de impresión particular. Simplemente añada las "
"opciones deseadas a la línea de comando, por ejemplo \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Cerrar"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Imprimiendo/Escaneando en \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Imprimiendo/Escaneando en \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Imprimiendo/Escaneando en \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Imprimiendo en la impresora \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Cerrar"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Imprimir lista de opciones"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8448,38 +8644,30 @@ msgstr ""
"\n"
"No use \"scannerdrake\" para este dispositivo."
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Su dispositivo multifunción HP se configuró automáticamente para ser capaz "
-"de escanear. Ahora puede escanear desde la línea comandos con \"ptal-hp %s "
-"scan ...\". No se soporta aún el escaneo por medio de un interfaz gráfico e "
-"desde el GIMP para su dispositivo. Encontrará más información en el archivo "
-"de su sistema \"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\". Si tiene una HP "
-"LaserJet 1100 o 1200 puede escanear cuando tenga la opción del escáner "
-"instalada.\n"
-"No use \"scannerdrake\" para este dispositivo."
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Leyendo los datos de la impresora ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Transferir configuración de la impresora"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8495,7 +8683,7 @@ msgstr ""
"transfieren.\n"
"Debido a las siguientes razones no todas las colas se pueden transferir:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8503,7 +8691,7 @@ msgstr ""
"CUPS no soporta impresoras en servidores Novell o impresoras que envían los "
"datos en un comando formado libremente.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8511,11 +8699,11 @@ msgstr ""
"PDQ sólo soporta impresoras locales, impresoras LPD remotas, e impresoras "
"Socket/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD y LPRng no soportan impresoras IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8523,7 +8711,7 @@ msgstr ""
"Además, las colas no creadas con este programa o con \"foomatic-configure\" "
"no se pueden transferir."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8533,7 +8721,7 @@ msgstr ""
"Tampoco se pueden transferir las impresoras configuradas con los archivos "
"PPD provistos por sus fabricantes o con controladores CUPS nativos."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8543,15 +8731,15 @@ msgstr ""
"Marque las impresoras que desea transferir y haga clic \n"
"sobre \"Transferir\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "No transferir impresoras"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Transferir"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8562,13 +8750,13 @@ msgstr ""
"Haga clic sobre \"Transferir\" para sobre-escribirla.\n"
"También puede ingresar un nombre nuevo o saltear esta impresora."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nombre de la impresora sólo debería contener letras, números y el guión "
"bajo"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8577,16 +8765,16 @@ msgstr ""
"La impresora \"%s\" ya existe,\n"
"¿realmente desea sobre-escribir la configuración de la misma?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nuevo nombre de la impresora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Transfiriendo %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8595,29 +8783,29 @@ msgstr ""
"Ha transferido su impresora por defecto anterior (\"%s\"), ¿Debería ser "
"también la impresora por defecto bajo el nuevo sistema de impresión %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Refrescando datos de impresora ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Configuración de una impresora remota"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Iniciando la red ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Configurar la red ahora"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Funcionalidad de red no configurada"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8629,11 +8817,11 @@ msgstr ""
"configuración de red, no podrá utilizar la impresoara que está configurando "
"ahora. ¿Cómo desea proceder?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Continuar sin configurar la red"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8649,7 +8837,7 @@ msgstr ""
"impresora, también utilizando el Centro de Control de Mandrake, sección "
"\"Hardware\"/\"Impresora\"."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8659,24 +8847,24 @@ msgstr ""
"verifique su configuración y su hardware. Luego, intente configurar su "
"impresora remota de nuevo."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Reiniciando el sistema de impresión ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoica"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalando un sistema de impresión en el nivel de seguridad %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8701,11 +8889,11 @@ msgstr ""
"\n"
"¿Seguro que desea configurar la impresión para esta máquina?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Iniciar el sistema de impresión al arrancar"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8728,63 +8916,63 @@ msgstr ""
"¿Desea volver a activar el inicio automático de la impresión cuando el "
"sistema se vuelva a encender?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Verificando software instalado..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Quitando LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Quitando LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Seleccione sistema de impresión (spooler)"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "¿Qué sistema de impresión (spooler) desea usar?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Configuración la impresora \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instalando Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opciones de impresión"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Preparando PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Configurando las aplicaciones..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "¿Desea configurar la impresión?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistema de impresión: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8796,7 +8984,7 @@ msgstr ""
"acerca de la misma o para hacer que una impresora en un servidor CUPS remoto "
"esté disponible para Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8806,30 +8994,34 @@ msgstr ""
"ellas para modificarla, para configurarla como predeterminada, o para "
"obtener información sobre la misma."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Refrescar la lista de impresoras (para visualizar todas las impresoras CUPS "
"remotas)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Cambiar el sistema de impresión"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modo normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Salir"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "¿Desea configurar otra impresora?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modificar configuración de la impresora"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8838,69 +9030,69 @@ msgstr ""
"Impresora %s\n"
"¿Qué desea modificar de esta impresora?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "¡Hacerlo!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tipo de conexión de la impresora"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nombre de la impresora, descripción, ubicación"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Fabricante de la impresora, modelo, controlador"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Fabricante de la impresora, modelo"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Poner esta impresora como predeterminada"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Agregar esta impresora a Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Quitar esta impresora de Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Imprimir la(s) página(s) de prueba"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Se sabe cómo usar esta impresora"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Borrar impresora"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Borrando la impresora antigua \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Impresora predeterminada"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "La impresora \"%s\" ahora es la impresora predeterminada."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Agregando impresora a Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
@@ -8908,16 +9100,16 @@ msgstr ""
"La impresora \"%s\" se agregó satisfactoriamente a Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "No se pudo agregar la impresora \"%s\" a Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Quitando la impresora de Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
@@ -8925,19 +9117,19 @@ msgstr ""
"La impresora \"%s\" se quitó satisfactoriamnete de Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "No se pudo quitar la impresora \"%s\" de Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "¿Seguro que quiere borrar la impresora \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Borrando la impresora \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9022,24 +9214,61 @@ msgstr "Las contraseñas no coinciden. ¡Inténtelo de nuevo!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No se puede añadir una partición al RAID md%d _ya formateado_"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "No se puede escribir el archivo %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "Falló mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "Falló mkraid (¿quizás no estén las herramientas de raid (raidtools)?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hay suficientes particiones para un RAID de nivel %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Este nivel se debe usar con mucho cuidado. Hace su sistema más simple de\n"
+"usar, pero también mucho más vulnerable: no debe usarse para una máquina\n"
+"conectada en red con otras o a Internet. No hay contraseñas de acceso."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Con este nivel de seguridad, es posible utilizar el sistema como un "
+"servidor.\n"
+"La seguridad es lo suficientemente alta como para usar el sistema como un\n"
+"servidor que acepte conexiones de múltiples clientes. Nota: si su máquina "
+"sólo es un cliente en la Internet, mejor debería elegir un nivel inferior."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Opciones avanzadas"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opciones"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9100,7 +9329,7 @@ msgstr ""
"HardDrake lanza una prueba del hardware, y opcionalmente configura\n"
"el hardware nuevo/cambiado."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9179,7 +9408,7 @@ msgstr ""
"El servidor virtual de Linux (LVS) se usa para construir servidores de alto\n"
"rendimiento y alta disponibilidad."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9259,7 +9488,7 @@ msgstr ""
"actúan\n"
"como servidores para protocolos que usan el mecanismo RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9359,7 +9588,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Compartir archivos"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistema"
@@ -9490,6 +9719,7 @@ msgstr ""
"desarrollo de Código Abierto"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Centro de control de Mandrake"
@@ -9615,6 +9845,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instalando paquetes..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Por favor salga de la sesión y luego pulse Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Abra de nuevo una sesión %s para activar los cambios"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9623,6 +9862,161 @@ msgstr ""
"No se puede leer su tabla de particiones, está demasiado deteriorada :-(\n"
"Se intentará ir poniendo en blanco las particiones malas"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Transferir configuración de la impresora"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Servidor de base de datos"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Servidor de base de datos"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Añadir un usuario"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Ayuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "¡No se detectó tarjeta de TV!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "No conectado"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Borrar"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccionar todas."
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Añadir un usuario"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Configurando..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "reconfigurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ninguna disquetera disponible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "¡Error!"
@@ -9675,6 +10069,11 @@ msgstr ""
"Por favor, elija para cada paso si desea que se repita como su instalación, "
"o el mismo será manual"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creando el disquete de instalación automática"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9688,12 +10087,12 @@ msgstr ""
"Los parámetros de la instalación automáticas están disponibles en las "
"secciones de la izquierda"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "¡Felicidades!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9701,28 +10100,19 @@ msgstr ""
"El disquete ha sido generado satisfactoriamente.\n"
"Ahora puede repetir su instalación."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Instalación automática"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Añadir un elemento"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Borrar el último elemento"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9732,7 +10122,7 @@ msgstr ""
" Reporte de DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9744,19 +10134,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9768,63 +10146,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "progreso total"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Respaldar archivos del sistema..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Respaldar archivos del disco rígido..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Respaldar archivos de usuario..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Progreso de respaldo del disco rígido..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Respaldar otros archivos..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"Lista de archivos envíada por FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) Problema en la conexión FTP. No fue posible enviar sus archivos de copia "
"de seguridad por FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Error durante el envío de correo. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Selección de archivos."
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccione los archivos o directorios y haga clic sobre 'Agregar'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9832,26 +10234,26 @@ msgstr ""
"\n"
"Por favor, verifique todas las opciones que necesita.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Estas opciones pueden respaldar y restaurar todos los archivos en el "
"directorio /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Respaldar archivos del sistema. (directorio /etc)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usar repaldo incremental (no reemplazar respaldos antiguos)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incluir archivos críticos (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9859,85 +10261,79 @@ msgstr ""
"Con esta opción podrá restaurar cualquier versión de su\n"
"directorio /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Por favor, marque a todos los usuarios que desa incluir en la copia de "
"respaldo"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "No incluir el cache del navegador"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usar respaldos incrementales (no reemplazar respaldos antiguos)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Quitar los seleccionados."
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Usar conexión FTP para realizar copia de respaldo"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Por favor, ingrese el nombre o la IP del host"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Por favor, ingrese el directorio en este host para\n"
" guardar la copia de respaldo."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Por favor, ingrese su nombre de usuario (login)"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Por favor, ingrese su contraseña"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Recordar esta contraseña"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Conexión FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Conexión segura"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Usar CD/DVDROM para la copia de respaldo"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Por favor, elija el espacio de su CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Por favor, verifique que está utilizando un soporte CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Por favor, verifique si desea borrar su CDRW primero"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9945,7 +10341,7 @@ msgstr ""
"Por favor verifique si desea hacer que su\n"
" CD arranque."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9953,17 +10349,22 @@ msgstr ""
"Por favor, ingrese el nombre del dispositivo de\n"
" su grabadora de CD, ej: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Usar cinta para realizar respaldo"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
"Por favor, ingrese el nombre del dispositivo a utilizar para el respaldo"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Por favor, verifique si desea borrar su CDRW primero"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9971,51 +10372,57 @@ msgstr ""
"Por favor, ingrese el tamaño máximo\n"
" permitido para Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Por favor, ingrese el directorio a guardar:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Usar cuota para archivos de respaldo"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Red"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Disco rígido / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "Cada hora."
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "Cada día."
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "Cada semana."
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "Cada mes."
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Usar servidor"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10023,7 +10430,7 @@ msgstr ""
"Por favor, elija el intervalo de\n"
" tiempo entre cada copia de respaldo"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -10031,72 +10438,68 @@ msgstr ""
"Por favor, elija el soporte\n"
"para la copia de respaldo."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Usar el disco rígido con servidor"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Usar FTP con servidor"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
"Por favor, asegúrese que el servidor cron está incluído entre sus servicios."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Enviar reporte por correo-e luego de cada respaldo a :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Qué"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Dónde"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Cuándo"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Más opciones"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Configuración de Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Por favor, elija dónde desea realizar la copia de respaldo"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "en disco rígido"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "a través de la red"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Por favor, elija qué desea respaldar"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Respaldar el sistema"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Respaldar usuarios"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Seleccionar manualmente el usuario"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10104,7 +10507,7 @@ msgstr ""
"\n"
"Fuentes de respaldo: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10112,7 +10515,7 @@ msgstr ""
"\n"
"- Archivos del sistema:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10120,7 +10523,7 @@ msgstr ""
"\n"
"- Archivos de usuario:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -10128,7 +10531,7 @@ msgstr ""
"\n"
"- Otros archivos:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -10137,16 +10540,45 @@ msgstr ""
"\n"
"- Guardar en el disco en la ruta : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositivo del ratón: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Guardar por FTP en el host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Guardar por FTP en el host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10155,7 +10587,7 @@ msgstr ""
"\t\t nombre de usuario: %s\n"
"\t\t en ruta: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10163,19 +10595,19 @@ msgstr ""
"\n"
"- Opciones:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNo incluir archivos del sistema\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tRespaldar usando tar y bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tRespaldar usando tar y gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10184,28 +10616,42 @@ msgstr ""
"\n"
"- Servidor (%s) incluye :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rígido.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Red por FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Red por SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Red por FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Red por FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Sin configuración, por favor haga clic sobre el Asistente o Avanzado.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10213,7 +10659,7 @@ msgstr ""
"Lista de datos a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10221,135 +10667,138 @@ msgstr ""
"Lista de datos corruptos:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Por favor, desmarque o quítelo la próxima vez."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Los archivos de respaldo están corruptos"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Todos los datos seleccionados han sido "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Recuperados satisfactoriamente en %s"
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Configuración de la restauración"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Se pueden restaurar los otros archivos."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista de usuarios a restaurar (sólo importa la fecha más reciente por "
"usuario)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Respaldar los archivos del sistema anteriores a:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Por favor, elija la fecha para restaurar"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Usar el disco rígido para copia de respaldo"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Por favor, ingrese el directorio a guardar:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "Conexión FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Conexión segura"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Restaurar desde el disco rígido."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
"Por favor, ingrese el directorio donde se almacenan las copias de respaldo"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Elija otro soporte desde el cual restaurar"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Otros soportes"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Restaurar archivos del sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Restaurar usuarios"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Restaurar otros"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "seleccione la ruta para restaurar (en vez de /)"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Realizar respaldo nuevo antes de restaurar (sólo para respaldos "
"incrementales)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Borrar directorios de los usuarios antes de restaurar."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Restaurar todas las copias de respaldo"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Restauración personalizada"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Ayuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Guardar"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Realizar copia de respaldo"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Siguiente"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10357,7 +10806,7 @@ msgstr ""
"Por favor, realize la copia de respaldo antes de restaurarla...\n"
" o verifique que la ruta para almacenar es correcta."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10367,31 +10816,35 @@ msgstr ""
" su correo-e de reporte no se envió\n"
" Por favor, configure a sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista de paquetes a instalar"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Se van a instalar los siguientes paquetes"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Error enviando el archivo por FTP.\n"
" Por favor, corrija su configuración de FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Por favor, seleccione los datos a restaurar..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Por favor, seleccione el soporte para la copia de respaldo..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Por favor, elija los datos a respaldar..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10399,77 +10852,77 @@ msgstr ""
"No se econtró el archivo de configuración,\n"
" por favor haga clic sobre Asistente o Avanzado."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "En desarrollo ... por favor, espere."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Respaldar archivos del sistema"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Respaldar archivos de usuarios"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Respaldar otros archivos"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Progreso total"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "Envío de archivos por FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Enviando archivos..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista de datos a incluir en el CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Por favor, ingrese la velocidad de la grabadora de CDs"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
"Por favor, ingrese el nombre del dispositivo de su grabadora de CDs (ej: "
"0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Por favor, verifique si desea hacer que su CD arranque."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Respaldar Ahora desde archivo de configuración"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Ver configuración del respaldo"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Configuración del Asistente"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Configuración avanzada"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Respaldar Ahora"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10529,7 +10982,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10543,7 +10996,7 @@ msgstr ""
" que configurar myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10620,7 +11073,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10670,13 +11123,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10706,7 +11164,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10800,7 +11258,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10818,7 +11276,7 @@ msgstr ""
"antes de enviarlo al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10840,7 +11298,7 @@ msgstr ""
"Es importante ser cuidadoso y no modificar los archivos de\n"
"datos de respaldo a mano.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10920,99 +11378,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Falló la instalación de %s. Ocurrió el siguiente error:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Herramientas para la consola"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "en disco rígido"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ratón"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impresora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nombre del recurso compartido"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Asistente para la configuración de la red"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentificación"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Selección de paquetes"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Espere, por favor"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post-desinstalación"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "puerto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Luego de la instalación estarán disponibles las instantáneas de pantalla en %"
+"s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuración de la red (%d adaptadores)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Borrar perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil a borrar:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nuevo perfil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nombre de la máquina: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Acceso a Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Pasarela:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfaz:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estado:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Por favor, espere"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurar el acceso a Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuración de la red local"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Controlador"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfaz"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Estado"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurar la red de área local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Haga clic aquí para lanzar el asistente ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Asistente..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplicar"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Espere, por favor... Aplicando la configuración"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Conectado"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "No conectado"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Desconectar..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Atención, se ha detectado otra conexión con la Internet, tal vez está usando "
+"su red"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"No tiene configurada ninguna interfaz.\n"
+"Configure la primera haciendo clic sobre 'Configurar'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuración LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocolo de arranque"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciado al arranque"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "cliente DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "activar ahora"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "desactivar ahora"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Todavía no se ha configurado esta interfaz.\n"
+"Lance el asistente de configuración en la ventana principal"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"No tiene ninguna conexión a Internet.\n"
+"Primero debe crear una haciendo clic sobre 'Configurar'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuración de la conexión a Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuración de la conexión a Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipo de conexión: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Pasarela"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Tarjeta ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uso: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nombre del módulo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Tamaño"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Creado de disquetes que arrancan"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "predeterminado"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Error de DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versión del núcleo"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "General"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Área experta"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "argumentos opcionales para mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Agregar un módulo"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forzar"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si es necesario"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omitir módulos scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omitir módulos raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Quitar un módulo"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Salida"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crear el disquete"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Asegúrese que hay un soporte para el dispositivo %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"No hay soporte alguno para el dispositivo %s.\n"
+"Por favor, inserte uno."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "No se puede hacer fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"No se puede cerrar mkbootdisk adecuadamente: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Buscar tipografías instaladas"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Desmarcar las tipografías instaladas"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "analizar todas las tipografías"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "no se encontraron tipografías"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "hecho"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "no se pueden encontrar tipografías en las particiones montadas"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Volver a seleccionar tipografías correctas"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "no se pueden encontrar tipografías.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Buscar tipografías en la lista de instaladas"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copiar tipografías"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Instalación de tipografías True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "por favor, espere mientras corre ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Instalación de True Type realizada"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Conversión de tipografías"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "Construyendo Type1"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Referenciando a Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "Conversión de tipografías TTF"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "Conversión de tipografías PFM"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Suprimir archivos temporales"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Reiniciar XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Suprimir archivos de tipografías"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "Reiniciar XFS"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11027,108 +11918,108 @@ msgstr ""
"-Puede instalar las tipografías usando la manera normal. En casos raros,\n"
"puede ser que tipografías \"falsas\" congelen a su servidor X."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Importación de tipografías"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Obtener tipografías de Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Desinstalar tipografías"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Opciones avanzadas"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista de tipografías"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Elija las aplicaciones que soportarán las tipografías:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Impresoras genéricas"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"Seleccione el archivo o directorio de tipografías y haga clic sobre 'Agregar'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Instalar lista"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "haga clic aquí si está seguro."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "aquí si no lo está."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Deseleccionar todas."
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Seleccionar todas."
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Quitar lista"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Pruebas iniciales"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copiar tipografías en su sistema"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instalar y convertir tipografías"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post-instalación"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Quitar tipografías de su sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post-desinstalación"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Compartir la conexión a Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ahora, la conexión compartida a Internet está activada ahora"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11140,31 +12031,31 @@ msgstr ""
"\n"
"¿Qué desea hacer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "rechazar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Desactivando los servidores..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ahora, la conexión compartida a Internet está inactiva."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ahora, la conexión compartida a Internet está desactivada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11176,19 +12067,19 @@ msgstr ""
"\n"
"¿Qué desea hacer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activando los servidores..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ahora, la conexión compartida a Internet está activa."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11204,21 +12095,21 @@ msgstr ""
"Aviso: necesita un adaptador de red dedicado para configurar una red de área "
"local (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaz %s (usando el módulo %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfaz %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "¡No hay ningún adaptador de red en su sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11226,11 +12117,11 @@ msgstr ""
"No se ha detectado ningún adaptador de red en su sistema. Por favor, ejecute "
"la herramienta de configuración del hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfaz de red"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11245,7 +12136,7 @@ msgstr ""
"\n"
"Se va a configurar su red de área local con ese adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11253,11 +12144,11 @@ msgstr ""
"Por favor, elija qué adaptador de red estará conectado a su red de área "
"local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Interfaz de red ya configurada"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11272,15 +12163,15 @@ msgstr ""
"\n"
"Puede hacerlo manualmente pero necesita saber lo que está haciendo."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Volver a configurar automáticamente"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Mostrar la configuración corriente de la interfaz"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11297,7 +12188,7 @@ msgstr ""
"Atributo IP: %s\n"
"Controlador: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11317,34 +12208,34 @@ msgstr ""
"un servidor DHCP por Ud.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Red Local Clase C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP de (este) servidor DHCP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Volver a configurar la interfaz y el servidor DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La red local no finalizó con `.0', saliendo."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"¡Se encontró un conflicto potencial de direcciones LAN en la configuración "
"de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "¡Se detectó la configuración del cortafuegos!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11352,21 +12243,21 @@ msgstr ""
"¡Atención! Se ha detectado la configuración del cortafuegos existente. Puede "
"que necesite algún ajuste manual tras la instalación."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando los scripts, instalando el software, iniciando los servidores..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas al instalar el paquete %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11376,23 +12267,23 @@ msgstr ""
"Ahora puede compartir su conexión a Internet con otros ordenadores de su red "
"de área local, usando la configuración automática de la red (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuración ya se ha hecho, pero ahora está desactivada."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuración ya se ha hecho, y ahora está activada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No se ha configurado la conexión compartida a Internet."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuración de la conexión compartida a Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11407,215 +12298,6 @@ msgstr ""
"\n"
"Haga click sobre Configurar para lanzar el asistente de configuración."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuración de la red (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a borrar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuevo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nombre de la máquina: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acceso a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfaz:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Por favor, espere"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar el acceso a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuración de la red local"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Controlador"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Estado"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar la red de área local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Haga clic aquí para lanzar el asistente ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Asistente..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplicar"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Espere, por favor... Aplicando la configuración"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Conectado"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "No conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Atención, se ha detectado otra conexión con la Internet, tal vez está usando "
-"su red"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"No tiene configurada ninguna interfaz.\n"
-"Configure la primera haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuración LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de arranque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado al arranque"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "activar ahora"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "desactivar ahora"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Todavía no se ha configurado esta interfaz.\n"
-"Lance el asistente de configuración en la ventana principal"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"No tiene ninguna conexión a Internet.\n"
-"Primero debe crear una haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuración de la conexión a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuración de la conexión a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexión: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parámetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarela"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Tarjeta ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Definiendo el nivel de seguridad"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centro de control"
@@ -11624,63 +12306,85 @@ msgstr "Centro de control"
msgid "Choose the tool you want to use"
msgstr "Elija la herramienta que desea usar"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canadá (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "EEUU (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "EEUU (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "EEUU (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "China (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japón (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japón (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Europa del este"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francia"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlanda"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Europa del oeste"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nueva Zelanda"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Sudáfrica"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11688,27 +12392,44 @@ msgstr ""
"Por favor,\n"
"teclee su norma de tv y país"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norma de TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Área:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Buscando canales de TV, en progreso ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Buscando canales de TV"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Hubo un error al instalar los paquetes:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "¡No se detectó tarjeta de TV!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11719,7 +12440,8 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"No se detectó tarjeta de TV en su máquina. Por favor, verifique que tiene conectada correctamente una tarjeta de vídeo/TV soportada por Linux.\n"
+"No se detectó tarjeta de TV en su máquina. Por favor, verifique que tiene "
+"conectada correctamente una tarjeta de vídeo/TV soportada por Linux.\n"
"\n"
"\n"
"Puede visitar nuestra base de datos de hardware en:\n"
@@ -11760,7 +12482,7 @@ msgstr "¡¡¡ No se puede iniciar la actualización en vivo !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Se ha realizado el cambio, pero no se hará efectivo hasta que salga"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11794,7 +12516,7 @@ msgstr "<control>G"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Archivo/Guardar _como"
+msgstr "/Archivo/Guardar _Como"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11808,13 +12530,9 @@ msgstr "/_Opciones"
msgid "/Options/Test"
msgstr "/Opciones/Prueba"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ayuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ayuda/_Acerca de..."
+msgstr "/Ayuda/_Acerca..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11872,7 +12590,7 @@ msgstr "Calendario"
msgid "Content of the file"
msgstr "Contenido del archivo"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Alerta por correo/SMS"
@@ -11881,11 +12599,11 @@ msgstr "Alerta por correo/SMS"
msgid "please wait, parsing file: %s"
msgstr "por favor, espere, analizando el archivo: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Configuración de alerta por correo/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11895,65 +12613,97 @@ msgstr ""
"\n"
"Aquí podrá configurar su sistema de alerta.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nombre de dominio"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Servidor de correo Postfix, servidor de noticias Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servicios"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de impresión"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "configuración de servicios"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Recibirá una alerta si se detiene la ejecución de uno de los servicios "
"seleccionados"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "configuración de la carga"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Recibirá una alerta si la carga es mayor que este valor"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "configuración de alerta"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Configura la forma en que el sistema le alertará"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Guardar como..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Seleccione el tipo de su ratón, por favor."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no se encontró ningún usb_serie\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "¿Emular el tercer botón?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Leyendo los datos de la impresora ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Detectando dispositivos..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12000,7 +12750,20 @@ msgid ""
"applications menu."
msgstr ""
"Su escáner %s ha sido configurado.\n"
-"Ahora puede escanear documentos usando \"XSane\" en el menú Multimedios/Gráficos."
+"Ahora puede escanear documentos usando \"XSane\" en el menú Multimedios/"
+"Gráficos."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -12410,10 +13173,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedios - Sonido"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitarios"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentación"
@@ -12518,10 +13277,6 @@ msgstr ""
"tin...) y para navegar por la Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivado, emuladores, monitoreo"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzas personales"
@@ -12568,3 +13323,268 @@ msgstr "Multimedios - Grabación de CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Estación de trabajo Científica"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck falló con código de salida %d o señal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identificación de la tarjeta gráfica: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Elija las opciones para el servidor"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "El monitor no está configurado"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La tarjeta gráfica todavía no está configurada"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Aún no ha elegido las resoluciones"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "intente cambiar algunos parámetros"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Ocurrió un error:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Saliendo en %d segundos"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "¿Es ésta la configuración correcta?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ocurrió un error, intente cambiar algunos parámetros"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Mostrar todo"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparando la configuración de X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "¿Qué desea hacer?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Cambiar el monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Cambiar la tarjeta gráfica"
+
+#~ msgid "Change Server options"
+#~ msgstr "Cambiar las opciones del servidor X"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Cambiar la resolución"
+
+#~ msgid "Show information"
+#~ msgstr "Mostrar información"
+
+#~ msgid "Test again"
+#~ msgstr "Probar de nuevo"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Su dispositivo multifunción HP se configuró automáticamente para ser "
+#~ "capaz de escanear. Ahora puede escanear desde la línea comandos con "
+#~ "\"ptal-hp %s scan ...\". No se soporta aún el escaneo por medio de un "
+#~ "interfaz gráfico e desde el GIMP para su dispositivo. Encontrará más "
+#~ "información en el archivo de su sistema \"/usr/share/doc/hpoj-0.8/ptal-hp-"
+#~ "scan.html\". Si tiene una HP LaserJet 1100 o 1200 puede escanear cuando "
+#~ "tenga la opción del escáner instalada.\n"
+#~ "No use \"scannerdrake\" para este dispositivo."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Usar el disco rígido con servidor"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Usar FTP con servidor"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista de paquetes a instalar"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Definiendo el nivel de seguridad"
+
+#~ msgid "Graphics card"
+#~ msgstr "Tarjeta gráfica"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccione una tarjeta gráfica"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Elija un controlador X"
+
+#~ msgid "X driver"
+#~ msgstr "Controlador X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Advertencia: probar con esta tarjeta de vídeo puede colgar su ordenador"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estándar, 640x480 a 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (sin 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA no-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor que soporta 1600x1200 a 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor que soporta 1600x1200 a 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "El tamaño total para los grupos que seleccionó es de aproximadamente %d "
+#~ "MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Si desea instalar un tamaño total inferior,\n"
+#~ "elija el porcentaje de paquetes que desea instalar.\n"
+#~ "\n"
+#~ "Un porcentaje bajo instalará sólo los paquetes más importantes;\n"
+#~ "un porcentaje de 100%% instalará todos los paquetes seleccionados."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Tiene espacio en disco para sólo %d%% de esos paquetes.\n"
+#~ "\n"
+#~ "Si desea instalar menos de esto,\n"
+#~ "elija el porcentaje de paquetes que desea instalar.\n"
+#~ "Un porcentaje bajo instalará sólo los paquetes más importantes;\n"
+#~ "un porcentaje de %d%% instalará todos los que sea posible."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Podrá elegirlos más detalladamente en la etapa siguiente"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Porcentaje de paquetes a instalar"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Elegir el nivel de seguridad"
+
+#~ msgid "hide expert mode"
+#~ msgstr "ocultar modo experto"
+
+#~ msgid "show expert mode"
+#~ msgstr "mostrar modo experto"
+
+#~ msgid ""
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
+#~ msgstr ""
+#~ "Si '%s' es un preiférico removible,\n"
+#~ " verifique que tiene un soporte insertado."
+
+#~ msgid ""
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
+#~ msgstr ""
+#~ "¡ADVERTENCIA! Esto formaterá a '%s'.\n"
+#~ "Se borrarán todos los datos en el periférico '%s'.\n"
+#~ "Si desea continuar, presione Aceptar. "
+
+#~ msgid "unknown"
+#~ msgstr "desconocido"
+
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Seleccione un módulo o escriba su nombre:"
+
+#~ msgid "Category"
+#~ msgstr "Categoría"
+
+#~ msgid "preload module"
+#~ msgstr "pre-cargar módulo"
+
+#~ msgid "click on a category"
+#~ msgstr "haga clic sobre una categoría"
+
+#~ msgid "Remove"
+#~ msgstr "Remover"
+
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Herramienta para crear disquetes que arrancan"
+
+#~ msgid "Show expert mode"
+#~ msgstr "Mostrar modo experto"
+
+#~ msgid "modules"
+#~ msgstr "módulos"
+
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr ""
+#~ "Generador de disquetes de arranque. Todavía en etapa experimental.\n"
+
+#~ msgid "experts only"
+#~ msgstr "sólo expertos"
+
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Archivo/_Preferencias"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index d088213a6..04456509a 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 1999-10-28 19:54+0200\n"
"Last-Translator: Riho Kurg <rx@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -13,25 +13,56 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Seadista kik monitorid sltumatult"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Kasuta Xinerama laiendusi"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Seadista ainult kaart \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB vi rohkem"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Valige X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
#
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Mitme monitori seadistamine"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,43 +70,44 @@ msgstr ""
"Ssteemis on vimalik kasutada mitut monitori.\n"
"Mida Te soovite teha?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Graafikakaart"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Valige graafikamlu suurus"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Valige graafikakaart"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree stted"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Valige X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Seadista kik monitorid sltumatult"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Valige X server"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Kasuta Xinerama laiendusi"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Seadista ainult kaart \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s koos 3D graafikakiirendi toega"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,32 +116,17 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
"XFree %s toetab Teie videokaarti ja vib omada paremat 2D tuge."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s koos 3D graafikakiirendi toega"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
-"SEE ON AGA EKSPERIMENTAALNE JA VIB OLLA EBASTABIILNE."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -120,31 +137,58 @@ msgstr ""
"SEE ON AGA EKSPERIMENTAALNE JA VIB OLLA EBASTABIILNE.\n"
"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
+"SEE ON AGA EKSPERIMENTAALNE JA VIB OLLA EBASTABIILNE."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree stted"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Valige graafikamlu suurus"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Valige X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Silita muutused?\n"
+"Olemasolevad stted:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Valige monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Isetehtud"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Tavaline"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Tagasi"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -164,514 +208,325 @@ msgstr ""
"suurem kui Teie monitor vimaldab. Vastasel juhul vib Teie monitor hvida.\n"
"Kui kahtlete, valige pigem viksem vrtus."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Realaotussagedus"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Ekraaniuuendussagedus"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor ei ole seadistatud"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Graafikakaart ei ole veel seatud"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Kuvatihedus ei ole veel seatud"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Hoiatus: testimine vib Teie arvuti peatada"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Proovime seadistusi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 vrvi (8 bitti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"proovige mnd parameetrit muuta"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tuhat vrvi (15 bitti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tekkis mingi viga:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tuhat vrvi (16 bitti)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Jtkub %d sekundi prast"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljonit vrvi (24 bitti)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Kas see on ige?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardit vrvi (32 bitti)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tekkis mingi viga, proovige mnd parameetrit muuta"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Kuvatihedused"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Kuvatihedus"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Valige kuvatihedus ja vrvisgavus"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Veel.."
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Katkesta"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertresiim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Nita kike"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Kas soovite seadistusi proovida?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Kuvatihedused"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Proovime seadistusi"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klaviatuuriasetus: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiire tp: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiire port: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Realaotussagedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekraanisagedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Graafikakaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Graafikakaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Videomlu: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Vrvisgavus: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Kuvatihedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 juhtprogramm: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Valmistume X-i seadistamiseks"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mida Te soovite teha?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Muuda monitori"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Muuda graafikakaardi"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Muuda serveri parameetreid"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Muuda kuvatihedust"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Nita lisainfot"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Proovi veel"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Vlju"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Silita muutused?\n"
-"Olemasolevad stted:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X stardib nd"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Teie arvutis on vimalik kivitada X juba alglaadimisel.\n"
"Kas soovite nii teha?"
-# c-format
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Muudatuste aktiveerimiseks kivitage %s uuesti"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Palun vljuge ja vajutage siis Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 vrvi (8 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhat vrvi (15 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhat vrvi (16 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljonit vrvi (24 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardit vrvi (32 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB vi rohkem"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA, 640x400 sagedusel 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "SVGA, 800x600 sagedusel 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-hilduv, 1024x768, 87 Hz vahelejtuga "
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "SVGA, 1024x768, 87 Hz vahelejtuga, 800x600, 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "SVGA, 800x600 sagedusel 60 Hz, 640x480 sagedusel 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA, 1024x768 sagedusel 60 Hz, 800x600 sagedusel 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Krgsageduslik SVGA, 1024x768, 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Partitsiooni algusesse"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Ketta algusesse (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO installimine"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub installimine"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO tekstiresiimis"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO graafikaresiimis"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laadimine DOS/Windowsist (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Alglaaduri peastted"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Eelistatav alglaadur"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Alglaaduri peastted"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei tta vanema BIOSi korral)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktne"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktne"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Graafikamood"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Salasna"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Salasna (uuesti)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Piira ksurea suvandeid"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "piiratud"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Puhasta /tmp igal laadimisel"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Kui vaja, tpsusta RAM suurust (leitud %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Vimalda mitut profiili"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Anna mlu suurus megabaitides"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Ste ``Piira ksurea suvandeid'' on ilma salasnata mittekasutatav"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Salasnad ei klapi"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Initsialiseerimisteade"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware viivitus"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Ajapiirang kerneli laadimisel"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CD-lt laadimine lubatud?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF laadimine lubatud?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Vaikimisi OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -680,84 +535,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te vite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Tehtud"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Modifitseeri RAIDi"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Millisele sektorile soovite seda tsta?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Muu OS (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Laadefail"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Juur"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Lisada"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Ebaturvaline"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "This"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Vaikimisi"
@@ -790,53 +645,75 @@ msgstr "Teil peab olema saaleala"
msgid "This label is already used"
msgstr "Selline this on juba kasutusel"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Leiti %s %s liidest"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "On Teil veel kaarte?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mni %s liides?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Jah"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Info riistvara kohta"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installime juhtprogrammil %s kaardile %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(moodul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nd vite moodulile %s parameetreid mrata.\n"
+"Parameetrid on vormingus \"nimi=vrtus nimi2=vrtus2 ...\".\n"
+"Niteks: \"io=0x300 irq=7\""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Mooduli parameetrid:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Millist %s juhtprogrammi peaksime proovima?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,37 +729,15 @@ msgstr ""
"mratleda vi lasta juhtprogrammil ise Teie arvutit kompida? Vib juhtuda,\n"
"et see viib arvuti segadusse kuid ei tohiks mingit jvat kahju teha."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Proovida niisama"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Mrake parameetrid"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nd vite moodulile %s parameetreid mrata.\n"
-"Parameetrid on vormingus \"nimi=vrtus nimi2=vrtus2 ...\".\n"
-"Niteks: \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Mooduli parameetrid:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -891,49 +746,54 @@ msgstr ""
"Moodule %s laadimine ei nnestunud.\n"
"Kas soovite proovida parameetreid muuta?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Salasna on liiga lihtne"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Kasutajatunnus tohib sisaldada ainult vikesi thti, numbreid, - ja _"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "See kasutajatunnus on juba lisatud"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -942,32 +802,32 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Kasutaja ige"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Prisnimi"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Ksurida"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Vaikimisi sisenemine"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -976,121 +836,101 @@ msgstr ""
"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
"Kui Te seda ei soovi, valige <Katkesta>"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Valige uus vaikimisi kasutaja :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Valige palun kivitatav aknahaldur:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Teisi keeli saab valida prast installimist"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Kik"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Tavakasutaja"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Isetehtud"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS kivitatakse"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Valige paketid mida soovite installida"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Katkesta"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Tere tulemast, krkkerid"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Vhene"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Tavahiir"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Krge"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Krge"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1100,14 +940,14 @@ msgstr ""
"haavatavaks: ligipsupiirangute puudumise tttu ei peaks arvutit hendama\n"
"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasnad on nd kasutusel, kuid vrku hendamine ei ole siiski soovitav."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1115,57 +955,58 @@ msgid ""
msgstr ""
"See on sobilik turvatase arvutile, mis hendatakse Internetti kui klient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr "Sellel turvatasemel vib ssteemi kasutada Internetis ka serverina."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ssteem on tielikult suletud. Vrgust kasutamine on vimalik ainult\n"
"spetsiaalselt loodud juurdepsuteid kasutades."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Valige turvatase"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Turvataseme seadmine"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Valige X server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1190,52 +1031,52 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "suvandeid enne laadimist ja 'c' veel enam."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "/boot on liiga tis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Tlaud"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Startmen"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kuhu soovite alglaaduri installida"
@@ -1248,15 +1089,19 @@ msgstr "selle kohta (veel) abi ei saa.\n"
msgid "Boot Style Configuration"
msgstr "Alglaaduri stiil"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fail"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fail/_Vlju"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1293,7 +1138,7 @@ msgstr "Alglaadimismood"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Internetihenduse jagamise Abimees!\n"
@@ -1302,8 +1147,8 @@ msgstr ""
"\n"
"Valige Abimehe kivitamiseks ``OK''"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Seadista"
@@ -1313,7 +1158,7 @@ msgid "System mode"
msgstr "Tmood"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Kivita X-Windows alglaadimisel"
#: ../../bootlook.pm_.c:148
@@ -1325,14 +1170,16 @@ msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1381,7 +1228,7 @@ msgstr "Partitsioone ei saa enam lisada"
msgid "Screenshots will be available after install in %s"
msgstr "Teisi keeli saab valida prast installimist"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Prantsusmaa"
@@ -1389,7 +1236,7 @@ msgstr "Prantsusmaa"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgia"
@@ -1417,11 +1264,12 @@ msgstr "Norra"
msgid "Sweden"
msgstr "Vaata"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itaalia"
@@ -1431,7 +1279,7 @@ msgstr "Itaalia"
msgid "Austria"
msgstr "seerial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1439,8 +1287,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Palun tehke oma andmetest enne tagavarakoopia"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lugege hoolega!"
@@ -1453,11 +1301,12 @@ msgstr ""
"Kui soovite kasutada aboot-i, jtke palun ketta algusesse vhemalt 2048 \n"
"sektorit vaba ruumi"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Viga"
@@ -1465,11 +1314,11 @@ msgstr "Viga"
msgid "Wizard"
msgstr "Abimees"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Valige tegevus"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1481,149 +1330,154 @@ msgstr ""
"Soovitame teil esmalt selle suurust muuta\n"
"(klikkige ja siis valige \"Muuda\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Palun valige partitsioon"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "ksikasjad"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "hendamine ebannestus"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Saaleala"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Thi"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Muu"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Failissteemi tbid: "
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Tekita"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tp"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Kasutage pigem ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Kustuta"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Kasutage enne \"henda lahti\""
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s tbi muutmisel hvivad kik seal olnud andmed"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Valige tegevus"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Tavakasutaja > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ekspert > Tavakasutaja"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Tagasi"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Jtkate ikkagi?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Lpeta ilma salvestamata"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Lpetate ilma partitsioonitabelit salvestamata?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Paiguta ise"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Kustuta kik"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Veel.."
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Kik primaarsed partitsioonid on kasutusel"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Partitsioone ei saa enam lisada"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1631,35 +1485,35 @@ msgstr ""
"Et saada rohkem partitsioone, kustutage palun ks, et luua laiendatud "
"partitsioon"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Kirjuta partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Psta partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Psta partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Psta partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "CD/flopi/.. autohendamine"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Valige fail"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1667,11 +1521,11 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jtkata?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Hoiatus"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1679,124 +1533,131 @@ msgstr ""
"Pange thi flopi masinasse\n"
"Kik andmed sellel hvivad"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Proovin psta partitsioonitabelit"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "henduspunkt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Eelistused"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Muuda suurust"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Liiguta"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Vorminda"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "henda"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Lisa RAIDi"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Lisa LVMi"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "henda lahti"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Eemalda RAIDist"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Eemalda LVMist"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifitseeri RAIDi"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Kasuta loopback-ina"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Algsektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Failissteemi tp: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "henduspunkt:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Eelistus: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Muuda partitsiooni tp"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Mis failissteemi soovite kasutada?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kuhu soovite loopback-faili %s hendada?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kuhu soovite seadme %s hendada?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1804,128 +1665,133 @@ msgstr ""
"Seda henduspunkti ei saa eemaldada, kuna partitsioon on kasutusel.\n"
"loopback-ina. Eemaldage enne loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Arvutan FAT failissteemi piire"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Muudan suurust"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "See partitsioon ei ole muudetav"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Selle partitsiooni andmetest viks olla tagavarakoopia"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s suuruse muutmisel hvivad sellel kik andmed"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Valige uus suurus"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Millisele kettale soovite seda mber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Millisele sektorile soovite seda mber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Paigutan mber"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Liigutan partitsiooni..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Vali olemasolev RAID, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "uus"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Vali olemasolev LVM, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM nimi?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "loopback faili nimi:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Prisnimi"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "See fail on juba loopback-ina kasutusel, valige mni muu"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fail on juba olemas. Kas kasutan seda?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Mooduli parameetrid:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "seade"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "tase"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "hiku suurus"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vaadake ette: see vib olla ohtlik."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Mis tpi partitsioonid teete?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Valige paketid mida soovite installida"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1937,7 +1803,7 @@ msgstr ""
"Kui kasutate LILO-t, ei tta see sel moel, kui aga ei kasuta, ei ole Teile "
"ka /boot vajalik"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1948,7 +1814,7 @@ msgstr ""
"fsiliselt tagapool 1024-t silindrit ja Teil ei ole /boot partitsiooni.\n"
"Kui plaanite kasutada LILO alglaadurit, lisage kindlasti /boot partitsioon"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1958,137 +1824,137 @@ msgstr ""
"Ilma /boot partitsioonita ei ole vimalik sellist ssteemi laadida.\n"
"Lisage kindlasti /boot partitsioon!"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ketta %s partitsioonitabel salvestatakse!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Muudatuste justamiseks vajate alglaadimist"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s vormindamisel hvivad sellel kik andmed"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Vormindan"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Vormindan partitsiooni %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid ebannestus"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Kuvatihedus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Seade: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kettathis: %s (arvatavasti)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tp: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Algus: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Suurus: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorit"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindrid %d kuni %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Vormindatud\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Vormindamata\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "hendatud\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "loopback fail(id): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2096,27 +1962,27 @@ msgstr ""
"Partitsioonilt toimub alglaadimine\n"
" (MS-DOS-i, mitte lilo jaoks)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Tase %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "hiku suurus %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "loopback faili nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2128,7 +1994,7 @@ msgstr ""
"juhtpartitsiooniga, parem oleks\n"
"seda mitte puutuda.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2141,64 +2007,64 @@ msgstr ""
"vimaldab mitme operratsioonissteemi\n"
"laadimist.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Suurus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitsioonitabeli tp: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "siinil %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Eelistused: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Failissteemi tp: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Salasna on liiga lihtne (peaks olema vhemalt %d themrki)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Salasnad ei klapi"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2209,36 +2075,66 @@ msgstr "Muuda partitsiooni tp"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Palun valige partitsioon"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentimisviis"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Kasutajatunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Kasutajatunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domeen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Nimeserver"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebannestus"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ei oska seadet %s vormindada tpi %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti hendamisel: %s"
@@ -2255,68 +2151,322 @@ msgstr ""
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS ei ole kasutatav alla 16MB partisioonidel"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS ei ole kasutatav alla 32MB partisioonidel"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "henduspunktid peavad algama kaldkriipsuga (/)"
# c-format
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "henduspunktile %s on juba ks partitsioon mratud\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Te ei saa henduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "See kataloog peab jma kokku juurfailissteemiga"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "See henduspunkt vajab telist (ext2, reiserfs) failissteemi\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Te ei saa henduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebannestus: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Tekkis viga: failissteemi loomiseks ei leitud htki seadet. Palun\n"
"kontrollige oma riistvara."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Teil ei ole htki partitsiooni!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Kasuta automaattuvastust"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Tavaline"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kaardi mlu (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "vormindatakse"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Muuda partitsiooni tp"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Vlju"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Abi"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Abi"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Abi/_Misvrk"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Hiir"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaardi mlu (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Katkesta"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Hiir"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Kirjeldus"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentimisviis"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Valige fail"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Lsipoolne seade"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nuppu"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Kvaketta leidmine"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Info riistvara kohta"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Nita lisainfot"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Hiire seadmine"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "leiti port %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Palun oodake"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundit"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Loetakse CUPS juhtprogramme"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Proovida niisama"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2330,7 +2480,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2432,9 +2582,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2624,7 +2773,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2636,9 +2785,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2685,21 +2833,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2715,9 +2862,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Olete judnud punkti, kus peate otsustama, kuhu tpselt Mandrake Linux oma\n"
"kvakettal paigaldada. Kui kvaketas on thi vi kui mni muu \n"
@@ -2782,9 +2929,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2919,38 +3065,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3114,11 +3254,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3166,7 +3306,7 @@ msgstr ""
" ssteemi, mis sobiks nagu valatult Teie tpsete ootustega.\n"
" Aga palun, palun: RGE VALIGE SEDA, KUI TE TPSELT EI TEA, MIDA TEETE!"
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3181,7 +3321,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3196,7 +3336,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3212,7 +3352,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3221,23 +3361,23 @@ msgstr ""
"Palun valige ige port. Niteks MS Windows-i COM1 kannab GNU/Linuxis\n"
"nime ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3259,7 +3399,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3281,7 +3421,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3289,7 +3429,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3310,7 +3450,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3329,7 +3469,7 @@ msgstr ""
"ka alglaadur. Kui Teil aga ei ole nne, tuleb parameetrid seada\n"
"ksitsi. Olge sel juhul hoolas valima iged."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3343,29 +3483,28 @@ msgstr ""
"Valige \"Kvaketta esimene sektor (MBR)\", kui ei tea tpselt, mida\n"
"teha."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3374,7 +3513,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3400,7 +3539,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Esmalt otsib DrakX PCI siini SCSI liideseid. Kui neid leitakse, ja \n"
@@ -3427,7 +3566,7 @@ msgstr ""
"Ka samas masinas olev Windows oskab vahel SCSI kohta kasulikku \n"
"informatsiooni anda."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3438,9 +3577,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3452,7 +3590,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3547,7 +3685,7 @@ msgstr ""
"with a '*', if you\n"
"press TAB to see the boot selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3575,9 +3713,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3629,10 +3766,10 @@ msgstr ""
"Firmware \n"
"Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3640,12 +3777,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3661,7 +3797,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3672,7 +3808,7 @@ msgstr ""
"Ettevaatust, kik sellel leiduvad andmed hvitatakse ja ei ole enam\n"
"taastatavad."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3691,7 +3827,7 @@ msgstr ""
"\n"
"Katkestamiseks valige \"Katkesta\"."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3699,12 +3835,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3719,20 +3855,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "ldlevi kasutamine on ilma NIS domeenita vimatu"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Pane FAT formaadis flopi seadmesse %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "See flopi ei ole FAT formaadis"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3740,7 +3876,7 @@ msgstr ""
"Et kasutada seda paketivalikut, alustage installimist ksureaga \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
@@ -3770,7 +3906,7 @@ msgstr "Teil peab olema saaleala"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3778,60 +3914,60 @@ msgstr ""
"\n"
"Jtkate ikkagi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Teil peab olema saaleala"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Kasuta vaba ruumi"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Kasuta olemasolevat partitsiooni"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Kasutatavat partitsiooni ei leitud"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Kasuta Windowsi partitsiooni loopback-ina"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Millisele partitsioonile soovite installida Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Valige suurused"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Juurpartitsiooni suurus (MB): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Saaleala suurus (MB): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Mis partitsiooni soovite muuta?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Arvutan Windowsi failissteemi piire"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3840,12 +3976,15 @@ msgstr ""
"FAT partitsiooni suurust ei nnestu muuta, \n"
"ilmnes selline viga: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Teie Windowsi partitsioon on fragmenteerunud, palun kasutada 'defrag'-i"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3864,52 +4003,52 @@ msgstr ""
"scandisk-i, defrag-i ja tehke tagavarakoopia.\n"
"Kui olete oma otsuses kindel, vajutage OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kui palju ruumi jtate Windowsi jaoks?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partitsioon %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Suuruse muutmine ebannestus: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "Sobivat FAT partitsiooni ei leitud (ei ole piisavalt ruumi)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Thjenda kogu ketas"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Eemalda Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teil on rohkem kui ks kvaketas, millisele neis installite Linuxi?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Kettal %s hvivad KIK partitsioonid ja andmed"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Partitsioneerin ise"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Kasuta fdisk-i"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3918,11 +4057,11 @@ msgstr ""
"Nd saate partitsioneerida %s kvaketta\n"
"Kui olete valmis, salvestage ksuga 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Teil ei ole piisavalt vaba ruumi Windowsi partitsioonil"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Installimiseks ei ole ldse ruumi"
@@ -3930,16 +4069,16 @@ msgstr "Installimiseks ei ole ldse ruumi"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX kettajagamise abimees leidis sellised lahendused:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ketta jagamine ebannestus: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Kivitame vrguliidesed"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Seiskame vrguliidesed"
@@ -3951,12 +4090,12 @@ msgstr ""
"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
"Jtkake omal vastutusel."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "henduspunkt %s on mratud topelt"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3967,12 +4106,12 @@ msgstr ""
"Teie CD-lugeja vi CD on ilmselt vigane.\n"
"Paketifaile CD-l saate kontrollida ksuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "See ongi %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Flopiseade ei ole kttesaadav"
@@ -3982,9 +4121,9 @@ msgstr "Flopiseade ei ole kttesaadav"
msgid "Entering step `%s'\n"
msgstr "Jrgmine samm: '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3993,198 +4132,156 @@ msgstr ""
"Kui nii juhtub, proovige palun tekstiphjalist paigaldust. Selleks \n"
"vajutaga laadimisel F1 ja sisestage 'text'"
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installi klass"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Palun valige ks jrgnevatest paigaldusklassidest"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Teie poolt valitud gruppide kogusuurus on umbes %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Kui soovite installida sellest vhem, valige vastav protsent.\n"
-"\n"
-"Madalama protsendi puhul installitakse vaid kige thtsamad paketid;\n"
-"100%% thendab kige valitud pakettide installimist."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, fuzzy, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Teil on kettal ruumi vaid %d%% pakettide jaoks.\n"
-"\n"
-"Kui soovite sellest vhem, valige viksem protsent ja installimisele\n"
-"kuuluvad vaid olulisemad paketid."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Tpsemalt saate valida jrgmisel sammul"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Installitavate pakettide protsent"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Valik paketthaaval"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Suurus kokku: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Vigane pakett"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versioon: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Suurus: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Thtsus: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Seda paketti ei saa valida, kettaruumi ei ole paigalsuseks piisavalt"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Installimiseks on valitud jrgmised paketid"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Eemaldamiseks on valitud jrgmised paketid"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Seda paketti ei saa (mitte) valida"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "See pakett on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "See pakett on juba installitud"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Selle paketi peaks uuendame\n"
"Olete kindel, et Te ei vali seda?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Nita automaatselt valitud pakette"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installimine"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Salvest paketivalik"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eemaldamine"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Valige paketid installimiseks"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installin"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Oletan"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Aega jnud "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Palun oodake, valmistun installimiseks"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketti"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Paketi %s installimine"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Nus"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Keeldun"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4198,17 +4295,17 @@ msgstr ""
"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <OK>.\n"
"Kui teil sherdust ei ole, vajutage <Katkesta>"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Ikkagi edasi?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Pakettide installimisel tekkis viga:"
@@ -4281,11 +4378,11 @@ msgstr "Tekkis mingi viga"
msgid "Do you really want to leave the installation?"
msgstr "Kas soovite vrguhendust taaskivitada?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lppkasutaja litsentsileping"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4300,7 +4397,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4420,7 +4517,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4525,113 +4622,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatuur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Palun valige klaviatuuriasetus"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Vimalike klaviatuuride tielik nimekiri"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Millist installi klassi Te soovite"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installimine/Uuendus"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "On see installimine vi taastamine?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Soovituslik"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Uuendus"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Salvest paketivalik"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Palun valige hiire tp"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Hiire port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Millisesse seerialporti on Teie hiir hendatud?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Nuppude teesklemine"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Teeskle 2 hiirenupp"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Teeskle 3 hiirenuppu"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kaartide seadmine..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE seadistamine"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ei leia partitsioone"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Otsin partitsioonidelt henduspunkte"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Valige henduspunktid"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4642,7 +4743,7 @@ msgstr ""
"(Viga oli selline: %s)\n"
"Kas olete nus partitsioonide kaotamisega?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4650,138 +4751,141 @@ msgstr ""
"DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
"Jtkate omal vastutusel!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Juurpartitsiooni ei leitud"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Juurpartitsioon"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Partitsioonitabeli silitamiseks vajate alglaadimist"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Blokkide kontroll?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Vormindan partitsioone"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Loon ja vormindan faili %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Saaleala on installimiseks liiga vike, palun lisage"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Otsin kttesaadavaid pakette"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Otsin kttesaadavaid pakette"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Otsin uuendatavaid pakette"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "See pakett on juba installitud"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr "Teie kvakettal ei ole piisavalt vaba ruumi (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Tielik (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimaalne (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Soovitatav (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Valige pakett installimiseks"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Oodake"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4791,16 +4895,16 @@ msgstr ""
"Kui Teil ei ole htki neist, klikkige <Katkesta>.\n"
"Kui puuduvad mned CD-d, mrkige vaid olemasolevad ja siis <OK>."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Valmistun installimiseks"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4809,23 +4913,23 @@ msgstr ""
"Paketi %s installimine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Paigaldusjrgsed stted"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Pange palun thi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4891,166 +4995,197 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Millises ajavtmes asute?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS server:"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "CUPS printserver"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Printerit ei ole"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "On Teil veel kaarte?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kokkuvte"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Hiir"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Ajavde"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Helikaart"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kaart"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Eemalda Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Kohalik printer"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Juurkasutaja salasna"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Salasna puudub"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Salasna on liiga lihtne (peaks olema vhemalt %d themrki)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentimisviis"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Gnome tjaam"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS server:"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5078,19 +5213,19 @@ msgstr ""
"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
"\"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Jta vahele"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5114,7 +5249,7 @@ msgstr ""
"ka Jumal!\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5123,28 +5258,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kttesaadav"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vali flopiseade, mida kasutad alglaadimisketta tegemiseks"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Alglaaduri stted"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5152,11 +5287,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5164,16 +5299,16 @@ msgstr ""
"Viga aboot-i installimisel, \n"
"kas forseerida, riskides esimese partitsiooni hvinguga?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Alglaaduri stted"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Alglaaduri installimine ebannestus. Tekkis jrgnev viga:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5190,18 +5325,17 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun thi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5211,7 +5345,8 @@ msgstr ""
"\n"
"Olete kindel, et vljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5222,7 +5357,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5236,17 +5371,21 @@ msgstr ""
"Mandrake Linux kodulehekljelt \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Abi ssteemi edasiseks konfigureerimiseks saab eelkige dokumendist\n"
"\"Official Mandrake Linux User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5259,15 +5398,15 @@ msgstr ""
"\n"
"Vite valida ka lihtsalt installi kordamise.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaatne"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Korda"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Salvest paketivalik"
@@ -5294,421 +5433,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Valige tegevus"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Edasijudnud"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Palun oodake"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ava puu"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sule puu"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Sorteeritud vi sorteerimata"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Halb valik, proovige palun uuesti\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Eelistused: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tehhi (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "DVORAK"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Hispaania"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Soome"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Prantsuse"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norra"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Vene"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Rootsi"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Briti"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeenia (vanem)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeenia (trkimasin)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Aserbaidaani (ladina)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaaria"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiilia (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Valgevene"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "veitsi (Saksa asetus)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "veitsi (Prantsuse asetus)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tehhi (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Saksa (ilma sammuta)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Taani"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "DVORAK (Norra)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruusia (vene)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruusia (ladina)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Kreeka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungari"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroaadi"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Iisraeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Iisraeli foneetiline"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itaalia"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Jaapani 106 klahviga"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Ladina-Ameerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Leedu AZERTY (vanem)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Leedu AZERTY (uuem)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Leedu numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Leedu foneetiline QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Asukoht"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedoonia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandi"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poola (QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poola (QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloveenia"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaki (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaki (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Aserbaidaani (kirillitsa)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabel"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Trgi (\"F\" mudel)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Trgi (\"Q\" mudel)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US (rahvusvaheline)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnami numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavia (koos kirillitsaga)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5721,7 +5844,31 @@ msgstr "Ringhendus %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Eemalda enne kettarhmad (logical volumes)\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Sissehelistamiskeskuse number"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Vormindamine"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5762,10 +5909,6 @@ msgstr "1 nupp"
msgid "Generic 2 Button Mouse"
msgstr "Lihtsalt 2-nupuline hiir"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Tavaline"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ratas"
@@ -5830,38 +5973,54 @@ msgstr "ei soovi"
msgid "No mouse"
msgstr "Hiirt ei ole"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Palun testige hiirt"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Hiire aktiveerimiseks"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "KEERUTAGE RATTAKEST!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Lpeta"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Jrgmine ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Eelmine"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Kas see on sobiv?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Ava puu"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sule puu"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Sorteeritud vi sorteerimata"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Loo internetihendus"
@@ -5908,7 +6067,7 @@ msgstr ""
"htki vrgukaarti ei nnestunud tuvastada\n"
"Seega ei saa ka sellist hendust seadistada."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Valige vrguliides"
@@ -5922,7 +6081,7 @@ msgstr ""
msgid "no network card found"
msgstr "vrgukaarti ei leitud"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Vrguseadistused"
@@ -5938,15 +6097,15 @@ msgstr ""
"Masina nimi peab olema esitatud tiskujul,\n"
"nagu ``minumasin.minufirma.ee''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Masinanimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Vrgu stete abimees"
@@ -5996,7 +6155,7 @@ msgstr "ISDN stted"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vali oma teenusepakkuja.\n"
" Kui see ei ole nimekirjas, vali Tundmatu"
@@ -6019,14 +6178,14 @@ msgstr "lejnud maailm"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"lejnud maailm \n"
" ilma D-kanalita"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Mis protokolli soovite kasutada?"
#: ../../network/isdn.pm_.c:199
@@ -6050,7 +6209,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Kui Teil on ISA kaart, siis peaks jrgmised vrtused olema iged.\n"
@@ -6067,13 +6227,13 @@ msgid "Continue"
msgstr "Jtka"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Milline on Teie ISDN kaart?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Leidsin kll PCI ISDN kaardi, kui selle tp on tundmatu. Palun valige ks "
"PCI kaart jrgmisel sammul."
@@ -6090,47 +6250,47 @@ msgstr "Millisesse seerialporti on Teie modem hendatud?"
msgid "Dialup options"
msgstr "DialUp parameetrid"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "henduse nimi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Kasutajakonto"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skriptiphine"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminaliphine"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeeninimi"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Esimene nimeserver (soovituslik)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Teine nimeserver (soovituslik)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6138,7 +6298,7 @@ msgstr ""
"\n"
"Saate henduse katkestada vi uuesti seadistada."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6146,11 +6306,11 @@ msgstr ""
"\n"
"Saate seadistada henduse uuesti."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Hetkel olete Internetiga hendatud."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6158,37 +6318,37 @@ msgstr ""
"\n"
"Saate henduda Internetti vi seadistada hendus uuesti."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Hetkel ei ole Te Internetti hendatud."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "hendatud"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Lahuta..."
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Seadista TV-kaabli hendus"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetihenduse seadistamine"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Saate henduse katkestada vi uuesti seadistada."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6202,12 +6362,12 @@ msgstr ""
"\n"
"Saate henduse katkestada vi uuesti seadistada."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Vrgu stted"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6218,9 +6378,9 @@ msgstr ""
"Kui soovite neid seadistusi silitada, valige OK, muidu katkestage ja saate "
"seadistada uuesti.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6230,93 +6390,99 @@ msgstr ""
"Nd hakkame internetihendust seadistama.\n"
"Kui Te ei soovi automaatset tuvastamist siis jtke see mrkimata.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Valige profiil, mida seadistada"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Kasuta automaattuvastust"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertresiim"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Otsin printerit..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Tavaline modemihendus"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "leiti port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN hendus"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "tuvastati %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "LAN hendus"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "leiti liidesel %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kaablihendus"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kaablihendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN hendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "vrgukaart(i) leiti les"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Valige kasutatav vahend"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Internetihenduse jagamine"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Kas soovite luua henduse juba alglaadimisel?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Vrgustted"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6324,7 +6490,7 @@ msgid ""
"%s"
msgstr "Kas soovite vrguhendust taaskivitada?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6334,7 +6500,7 @@ msgstr ""
"\n"
"Stted salvestatakse nd.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6342,16 +6508,16 @@ msgstr ""
"Soovitame taaskivitada ka X keskkonna, et vltida vimalikke\n"
"masinanime muutmisest tingitud probleeme."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6359,7 +6525,7 @@ msgstr ""
"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
"Valige lihtsalt OK, et stteid mitte muuta."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6369,38 +6535,43 @@ msgstr ""
"Kik read tuleb sisestada IP-aadressi kujul\n"
"(Niteks 12.34.56.78)"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Seadistame vrgukaardi %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (juhtprogramm %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-aadress"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Vrgu mask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automaatne IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Kivitub laadimisel"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6412,64 +6583,64 @@ msgstr ""
"nagu ``minumasin.minufirma.ee''.\n"
"Kui Teil on vaikimisi ls, siis sisestage ka selle IP-aadress"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Nimeserver"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Lsipoolne seade"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Vahendajate stted"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP vahendaja"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP vahendaja"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Vahendaja peab olema kujul ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneti stted"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Kas soovite oma internetihendust proovida?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testime Teie hendust..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ssteem on nd Internetti hendatud"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Turvakaalutlusel katkestan nd henduse."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6477,114 +6648,119 @@ msgstr ""
"Paistab, et ssteem ei ole Internetti hendatud.\n"
"Palun seadistage hendus uuesti."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Internetihenduse stted"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Palun tida allpool olev vli"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kaardi IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kaardi mlu (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kaardi IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kaardi IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kaardi IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Teie telefoninumber"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Teenusepakkuja tunnus (niteks minuisp.ee)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 (vib jtta thjaks)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 (vib jtta thjaks)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Klaviatuuri valik"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Valimisviis"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "henduse tp: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "henduse tp: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Kasutajatunnus"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Salasna"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "hendamine ebannestus: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Sellel platformil ei saa laiendatud partitsiooni luua"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Partitsioonitabelis on miskiprast thi koht, aga see ei ole kasutatav.\n"
"Ainuke lahendus on nihutada primaarset partitsiooni, et auk satuks "
"laiendatud partitsioonide krvale"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Taastamine failist %s ebannestus: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Klbmatu tagavarakoopia"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6594,193 +6770,193 @@ msgstr ""
"Andmete pidevuse kontroll ebannestus. \n"
"See thendab, et kettale kirjutamisel tekivad jamad"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "vajalik"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "thtis"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "vga kena"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "kena"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "vib olla"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Vrguprinter"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "CUPS printserver"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd printserver"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Vrguprinter (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printserver:"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printeri seadme URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Vrguprinter"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(moodul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS serveri IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Vaikimisi)"
@@ -6803,12 +6979,12 @@ msgstr ""
"printereid seadistada, need leitakse automaatselt.\n"
"Kui kahtlete, valige \"CUPS printserver\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN stted"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "CUPS printserver"
@@ -6839,7 +7015,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Pordi number peab olema ikkagi number"
@@ -6848,7 +7024,7 @@ msgstr "Pordi number peab olema ikkagi number"
msgid "CUPS server IP"
msgstr "CUPS serveri IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -6857,22 +7033,13 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Alglaaduri stiil"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Otsin printerit..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Proovin porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6885,14 +7052,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6910,12 +7077,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Vrguprinter"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6929,11 +7096,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6943,35 +7110,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Kasuta automaattuvastust"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Vrguprinter"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Proovin porte"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "tuvastati %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6979,43 +7150,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7023,7 +7194,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7031,73 +7202,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Millisesse seerialporti on Teie modem hendatud?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Seadistused"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Paketi %s installimine"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Vrguprinteri stted"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7107,31 +7288,31 @@ msgstr ""
"printserveri nime ja prindijrjekorra nime, mida soovite\n"
"serveril kasutada."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Vrguprinter"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printeri stted"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7144,35 +7325,35 @@ msgstr ""
"printserveri IP-aadressi, samuti ka serveri poolt jagatava printeri\n"
"nime ning serveri poolt aktsepteeritud kasutajatunnuse, salasna ja tgrupi"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB serveri nimi"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB serveri IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Jagatav printer"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Tgrupp"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7196,7 +7377,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7205,7 +7386,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7213,11 +7394,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare printeri stted"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7229,28 +7410,28 @@ msgstr ""
"nime (NB! See vib olla erinev tema TCP/IP nimest!) samuti nagu ka\n"
"prindijrjekorra nime serveril ning kasutajatunnuse ja salasna"
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printserver:"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Prindijrjekorra nimi:"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Pistikprinteri stted"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7261,60 +7442,56 @@ msgstr ""
"Sisestage palun printeri masinanimi ja vimaluse\n"
"korral pordi number"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Kirjeldus"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Asukoht"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Vrguprinter"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7329,28 +7506,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Kas see on sobiv?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Vrguprinter"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Printeri hendusviis"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Mis tpi printer see on?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7359,18 +7536,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interneti stted"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7380,12 +7557,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneti stted"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7393,7 +7570,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7406,7 +7583,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7416,34 +7593,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Proovin porte"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7451,45 +7628,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Jah, trki mlemad testlehekljed"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standardtriistad"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Trkitakse testleheklg(i)..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Trkitakse testleheklg(i)..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Trkitakse testleheklg(i)..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Trkitakse testleheklg(i)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7505,7 +7682,7 @@ msgstr ""
"\n"
"Kas tulemust on juba nha?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7518,16 +7695,16 @@ msgstr ""
"\n"
"Kas tulemust on juba nha?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7536,15 +7713,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7553,49 +7730,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7605,7 +7782,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7614,31 +7791,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Hiir"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Seiskame vrguliidesed"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Seiskame vrguliidesed"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Seiskame vrguliidesed"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Seiskame vrguliidesed"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Hiir"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Otse hendatud printeri stted"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7646,38 +7834,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneti stted"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7687,51 +7875,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7739,62 +7927,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Printeri nimi tohib sisaldada vaid thti, numbreid ja alakriipsu"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Sea printer"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Testime Teie hendust..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Vrgustted"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7802,12 +7990,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Vrguseadistused"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7817,34 +8005,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Millist printimisssteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Krge"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoiline"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7859,12 +8047,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Millist printimisssteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7878,69 +8066,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Vali printeri hendusviis"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Millist printimisssteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Printeri stted"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Otse hendatud printeri stted"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Printeri stted"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Kas soovite printerit seadistada?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7951,7 +8139,7 @@ msgstr ""
"Kirjeldatud on jrgnevad prindijrjekorrad.\n"
"Te vite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7961,139 +8149,143 @@ msgstr ""
"Kirjeldatud on jrgnevad prindijrjekorrad.\n"
"Te vite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Vrgustted"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Tavakasutus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Vlju"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interneti stted"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Internetihenduse jagamine"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printeri hendusviis"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Trkitakse testleheklg(i)..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Vrguprinter"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Kas soovite vrguhendust taaskivitada?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8177,24 +8369,57 @@ msgstr "Salasnad ei klapi"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Juba vormindatud RAID-ile (md%d) ei saa partitsiooni lisada"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ei saa kirjutada faili %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid ebannestus"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ebannestus (puudub 'raidtools'?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Seda tase muudab kll ssteemi lihtsalt kasutatavaks, kui vga\n"
+"haavatavaks: ligipsupiirangute puudumise tttu ei peaks arvutit hendama\n"
+"ei teiste arvutitega ega ka mitte Internetti."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr "Sellel turvatasemel vib ssteemi kasutada Internetis ka serverina."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "ISDN stted"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Eelistused"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8248,7 +8473,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8310,7 +8535,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8380,7 +8605,7 @@ msgstr ""
"portmapper haldab RPC hendusi, mida kasutavad NFS ja NIS. Neil \n"
"serveritel on see hdavajalik."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8473,7 +8698,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Tmood"
@@ -8596,6 +8821,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Juhtimiskeskus"
@@ -8700,6 +8926,16 @@ msgstr ""
msgid "Installing packages..."
msgstr "Paketi %s installimine"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Palun vljuge ja vajutage siis Ctrl-Alt-BackSpace"
+
+# c-format
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Muudatuste aktiveerimiseks kivitage %s uuesti"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8708,6 +8944,162 @@ msgstr ""
"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
"Proovin loetamatud kirjed puhastada"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interneti stted"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS server:"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS server:"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Loo alglaadimisflopi"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Lisa kasutaja"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Abi"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ei ole hendatud"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Kustuta"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Valige fail"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Lisa kasutaja"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Seadista..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "seadista uuesti"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Pane flopi seadmesse %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Flopiseade ei ole kttesaadav"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8749,6 +9141,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Loon kiirpaigaldusflopi"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8757,47 +9154,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "nnitleme!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installimine"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Tavakasutaja"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Vormindan loopback faili %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8805,15 +9195,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8821,711 +9203,774 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Viga faili %s lugemisel"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Paketigruppide valik"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Eemalda prindijrjekord"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Eemalda Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Salasna puudub"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN hendus"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Vali printeri hendusviis"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Palun valige paketid installimiseks"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Vrgu mask:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tp"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Kas optimiseerime kvaketast?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Kas optimiseerime kvaketast?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Oodake"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Vrgu stted"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Vrgu mask:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Failissteemid"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Hiire port: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Eelistused"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Millisesse seerialporti on Teie modem hendatud?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Vrgu stted"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Palun valige hiire tp"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Palun testige hiirt"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN hendus"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Vali printeri hendusviis"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Palun valige hiire tp"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Muu"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Ssteemi installimine"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Isetehtud"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Abi"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Eelmine"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Olek:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Tekst"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Pakettide valik"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Installimiseks on valitud jrgmised paketid"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Klbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Salvesta faili"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Vrgu stted"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Vrgu stted"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN stted"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "ISDN stted"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Failissteemid"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9557,7 +10002,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9566,7 +10011,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9607,7 +10052,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9635,12 +10080,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9657,7 +10107,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9697,7 +10147,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9708,7 +10158,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9721,7 +10171,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9765,105 +10215,537 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installimine ebannestus. Tekkis jrgnev viga:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsooliprogrammid"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Juhtimiskeskus"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "kohustuslik"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Hiir"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Vrguprinter"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Jagatav printer"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Gnome tjaam"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Kasuta diskdrake-i"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Vrgu stete abimees"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Tegevused"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakett"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Palun oodake"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Vlju programmist"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+#, fuzzy
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Seadistan uuesti abimehega..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Teisi keeli saab valida prast installimist"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Vrgustted (%d liidest)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Kustuta profiil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profiil kustutamiseks:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Uus profiil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Masinanimi: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetihendus"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tp: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Vaikels:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Liides:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Olek:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Seadiste internetihendus..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN stted"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Juhtprogramm"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Liides"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokoll"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Olek:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Seadista kohtvrk (LAN) ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Abimees..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Rakenda"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Palun oodake... Rakendan seadistusi"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "hendatud"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ei ole hendatud"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "henda..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Lahuta..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN stted"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Vrgukaart %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Laadimisprotokoll"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Kivitub laadimisel"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Aktiivne"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktiivne"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetihenduse seadistamine"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetihenduse seadistamine"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "henduse tp: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameetrid"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Vaikels"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Vrgukaart"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "Mooduli parameetrid:"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Size"
+msgstr "Suurus: %s"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#, fuzzy
+msgid "drakfloppy"
+msgstr "Taasta flopilt"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Alglaadimise stiil"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "tavaline"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr "Interneti tjaam"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr "Tavaline"
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr "Ekspertresiim"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr "Tavakasutaja"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr "Veel.."
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "kasutades moodulit"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr "Viimane leht enne"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "Keela vrguhendus"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s ei leitud"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Tehtud"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Vorminda flopi"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Valmistun installimiseks"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "piiratud"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "piiratud"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9872,123 +10754,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Vormindamine"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "RPM-ide eemaldamine"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "ISDN stted"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "henduspunkt"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Kontor"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Katkesta"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printer"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Ssteemi installimine"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Valige fail"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Vrguprinter"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Initsialiseerimisteade"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Teie ssteemis ei ole vrgukaarti!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installimine"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Teie ssteemis ei ole vrgukaarti!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Vlju programmist"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetihenduse jagamine"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetihenduse jagamine ttab"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10000,31 +10881,31 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "keela"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "thista"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "seadista uuesti"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Peaten serverid..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetihendust nd enam ei jagata"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetihendust hetkel ei jagata"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10036,19 +10917,19 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "luba"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Kivitan serverid..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetihenduse jagamine nd ttab"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10062,21 +10943,21 @@ msgstr ""
"\n"
"Mrkus: kohtvrgu (LAN) jaoks on vajalik eraldi vrgukaardi olemasolu."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liides %s (kasutab moodulit %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Liides %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Teie ssteemis ei ole vrgukaarti!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10084,11 +10965,11 @@ msgstr ""
"htki vrgukaarti ei ole hetkel seadistatud. Palun kasutage selleks "
"riistvara stteseadjat."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Vrguliides"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10103,7 +10984,7 @@ msgstr ""
"\n"
"Kohtvrgu stted seotakse selle liidesga."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10111,12 +10992,12 @@ msgstr ""
"Palun valige millist vrguliidest soovite kasutada kohtvrgu\n"
"jaoks."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10126,17 +11007,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Alglaaduri stiil"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interneti stted"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10147,7 +11028,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10159,34 +11040,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS serveri IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Vimalik kohtvrgu aadressi konflikt %s konfiguratsioonis!\n"
#
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Leitud tulemri stted!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10194,20 +11075,20 @@ msgstr ""
"Hoiatus! Leiti olemasolevad tulemri stted. Tenoliselt peaksite need "
"hiljem le vaatame."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Seadistan..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Hlestan skriptid, installin tarkvara, kivitan serverid..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleemid paketi %s installimisel"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10217,24 +11098,24 @@ msgstr ""
"Nd saate internetihendust jagada teistele kohtvrgu arvutitele, kasutades "
"neil automaatset konfigureerimist (DHCP)"
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Internetihenduse jagamine on juba seadistatud aga hetkel keelatud."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"Internetihenduse jagamine on juba seadistatud ja see on praegu aktiivne."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetihenduse jagamist ei ole kunagi seadistatud"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Interneti jagamise seadistamine"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10249,209 +11130,6 @@ msgstr ""
"\n"
"Valige Abimehe kivitamiseks ``OK''"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Vrgustted (%d liidest)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Kustuta profiil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiil kustutamiseks:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Uus profiil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Masinanimi: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetihendus"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tp: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Vaikels:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Liides:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Olek:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Seadiste internetihendus..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN stted"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Juhtprogramm"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Liides"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Olek:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Seadista kohtvrk (LAN) ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Abimees..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Rakenda"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Palun oodake... Rakendan seadistusi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "hendatud"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ei ole hendatud"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "henda..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Lahuta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN stted"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Vrgukaart %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Laadimisprotokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Kivitub laadimisel"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktiivne"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktiivne"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetihenduse seadistamine"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetihenduse seadistamine"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "henduse tp: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameetrid"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Vaikels"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Vrgukaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Turvataseme seadmine"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Juhtimiskeskus"
@@ -10460,94 +11138,130 @@ msgstr "Juhtimiskeskus"
msgid "Choose the tool you want to use"
msgstr "Valige kasutatav vahend"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanada (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Euroopa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Prantsusmaa"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandi"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Euroopa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seerial"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Pakettide installimisel tekkis viga:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10591,7 +11305,7 @@ msgstr "Ei saa kiiruuendust alustada !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
#, fuzzy
msgid "logdrake"
msgstr "DrakNet"
@@ -10640,10 +11354,6 @@ msgstr "/_Eelistused"
msgid "/Options/Test"
msgstr "/Eelistused/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Abi"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Abi/_Misvrk"
@@ -10708,7 +11418,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10717,81 +11427,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "LAN stted"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache ja Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "varjutatud"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeeninimi"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "ext2"
+msgid "Ftp Server"
+msgstr "NIS server:"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS server:"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server:"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "seade"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printserver:"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "huvitav"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "vormindatakse"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Seadistused"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Salvesta kui..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Palun valige hiire tp"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "ei leitud: serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Teeskleme keskmist hiirenuppu?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Loetakse CUPS juhtprogramme"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Otsin printerit..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10835,6 +11575,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11228,10 +11980,6 @@ msgid "Multimedia - Sound"
msgstr "Multimeedia - Heli"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utiliidid"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentatsioon"
@@ -11335,10 +12083,6 @@ msgid ""
msgstr "Komplekt programme meili ja uudiste lugemiseks ning veebi brausimiseks"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiveerimine, emuleerimine, monitoorimine"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Isiklikud finantsid"
@@ -11385,25 +12129,159 @@ msgstr "Multimeedia - CD kirjutamine"
msgid "Scientific Workstation"
msgstr "Teadustjaam"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Katkesta"
+#~ msgid "Choose options for server"
+#~ msgstr "Valige X server"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor ei ole seadistatud"
-#~ msgid "None"
-#~ msgstr "Ei soovi"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Graafikakaart ei ole veel seatud"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Valige uus vaikimisi kasutaja :"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Kuvatihedus ei ole veel seatud"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Vrguprinter"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "proovige mnd parameetrit muuta"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Tekkis mingi viga:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Jtkub %d sekundi prast"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Kas see on ige?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tekkis mingi viga, proovige mnd parameetrit muuta"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Nita kike"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Valmistume X-i seadistamiseks"
-#~ msgid "You may now provide its options to module %s."
+#~ msgid "What do you want to do?"
+#~ msgstr "Mida Te soovite teha?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Muuda monitori"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Muuda graafikakaardi"
+
+#~ msgid "Change Server options"
+#~ msgstr "Muuda serveri parameetreid"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Muuda kuvatihedust"
+
+#~ msgid "Show information"
+#~ msgstr "Nita lisainfot"
+
+#~ msgid "Test again"
+#~ msgstr "Proovi veel"
+
+#~ msgid "Setting security level"
+#~ msgstr "Turvataseme seadmine"
+
+#~ msgid "Graphics card"
+#~ msgstr "Graafikakaart"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Valige graafikakaart"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Hoiatus: testimine vib Teie arvuti peatada"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA, 640x400 sagedusel 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 800x600 sagedusel 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-hilduv, 1024x768, 87 Hz vahelejtuga "
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 1024x768, 87 Hz vahelejtuga, 800x600, 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "SVGA, 800x600 sagedusel 60 Hz, 640x480 sagedusel 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA, 1024x768 sagedusel 60 Hz, 800x600 sagedusel 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Krgsageduslik SVGA, 1024x768, 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Teie poolt valitud gruppide kogusuurus on umbes %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Kui soovite installida sellest vhem, valige vastav protsent.\n"
+#~ "\n"
+#~ "Madalama protsendi puhul installitakse vaid kige thtsamad paketid;\n"
+#~ "100%% thendab kige valitud pakettide installimist."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Tpsemalt saate valida jrgmisel sammul"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Installitavate pakettide protsent"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Valige turvatase"
+
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Tielik (%d MB)"
+
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Minimaalne (%d MB)"
+
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Soovitatav (%d MB)"
+
+#~ msgid "Utilities"
+#~ msgstr "Utiliidid"
+
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Arhiveerimine, emuleerimine, monitoorimine"
+
+#~ msgid "None"
+#~ msgstr "Ei soovi"
+
+#~ msgid "You may now provide options to module %s."
#~ msgstr "Nd vite moodulile %s parameetreid mrata"
#~ msgid "mount failed"
@@ -11420,14 +12298,6 @@ msgstr "Teadustjaam"
#~ "more security warnings and checks."
#~ msgstr "Turvataset on parandatud, lisatud on hoiatusi ja piiranguid."
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimeedia"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ekspert"
-
#~ msgid ""
#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
#~ "local time according to the time zone you selected."
@@ -11444,47 +12314,9 @@ msgstr "Teadustjaam"
#~ msgid "Configure network connection (LAN or Internet)"
#~ msgstr "Seadista vrguhendus (kohtvrk vi Internet)"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Millisele kettale soovite seda mber paigutada?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Palun valige paketid installimiseks"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome tjaam"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Kasutaja:"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Palun valige hiire tp"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Vlju"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "CD/flopi/.. autohendamine"
-
#~ msgid "Active"
#~ msgstr "Aktiivne"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ei"
-
#~ msgid "A printer, model \"%s\", has been detected on "
#~ msgstr "Leiti printer, nimega \"%s\" "
@@ -11494,70 +12326,6 @@ msgstr "Teadustjaam"
#~ msgid "Printer Device"
#~ msgstr "Printeri seade"
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "CUPS printserver"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "CUPS printserver"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Tmood"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Muu"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Palun valige klaviatuuriasetus"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Palun valige partitsioon"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tp: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Klbmatu tagavarakoopia"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Seadista X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printeri seade"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Katkesta"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Hiir"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "tuut"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Testime Teie hendust..."
-
#~ msgid "Closing your connection..."
#~ msgstr "Sulgeme nd henduse..."
@@ -11609,17 +12377,6 @@ msgstr "Teadustjaam"
#~ msgid "New"
#~ msgstr "Uus"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Eemalda"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Palun valige partitsioon"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Mitmeselt mistetav (%s), palun tpsustage\n"
@@ -11648,26 +12405,6 @@ msgstr "Teadustjaam"
#~ msgid "I'm about to restart the network device %s. Do you agree?"
#~ msgstr "Kas olete valmis vrguliidese %s taaskivitamiseks?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tavaline valik on \"/dev/hda\" (esimese IDE kanali master), kui Te ei\n"
-#~ "tea tpselt, et tahate teisiti teha."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "henduse tp: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Valige uus vaikimisi kasutaja :"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Palun testige hiirt"
-
#~ msgid ""
#~ "Please choose your preferred language for installation and system usage."
#~ msgstr "Valige keel ssteemi installimiseks ja kasutamiseks."
@@ -12541,57 +13278,9 @@ msgstr "Teadustjaam"
#~ msgid "Remote queue"
#~ msgstr "Prindijrjekorra nimi"
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Prindijrjekorra nimi"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domeeninimi"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Printerit ei ole"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Vrgustted"
-
#~ msgid "Profile "
#~ msgstr "Profiil "
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "henduse tp: "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Loo internetihendus"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Katkesta internetihendus"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Katkesta internetihendus"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Katkesta internetihendus"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "henduse nimi"
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "rmps"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Vaikimisi"
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
@@ -12607,10 +13296,6 @@ msgstr "Teadustjaam"
#~ msgid "Disable network"
#~ msgstr "Keela vrguhendus"
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Keela vrguhendus"
-
#~ msgid ""
#~ "You can now test your mouse. Use buttons and wheel to verify\n"
#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
@@ -12623,10 +13308,6 @@ msgstr "Teadustjaam"
#~ msgid "DSL (or ADSL) connection"
#~ msgstr "DSL (vi ADSL) hendus"
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Hiir"
-
#~ msgid "You can specify directly the URI to access the printer with CUPS."
#~ msgstr "Vite anda ette ka URI, mille jrgi CUPS printeri leiab."
@@ -12669,9 +13350,6 @@ msgstr "Teadustjaam"
#~ msgid "Extra Text options"
#~ msgstr "Lisa teksti parameetrid"
-#~ msgid "Reverse page order"
-#~ msgstr "Viimane leht enne"
-
#~ msgid "Select Remote Printer Connection"
#~ msgstr "Vali vrguprinteri hendusviis"
@@ -12708,20 +13386,12 @@ msgstr "Teadustjaam"
#~ msgid "Enable"
#~ msgstr "Luba"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "LAN stted"
-
#~ msgid "Provider dns 1"
#~ msgstr "Teenusepakkuja DNS 1"
#~ msgid "Provider dns 2"
#~ msgstr "Teenuspakkuja DNS 2"
-#, fuzzy
-#~ msgid "fsck failed: "
-#~ msgstr "hendamine ebannestus: "
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -12745,25 +13415,15 @@ msgstr "Teadustjaam"
#~ msgid "How do you want to connect to the Internet?"
#~ msgstr "Kuidas soovite luua internetihendust?"
-#~ msgid "Configure..."
-#~ msgstr "Seadista..."
-
#~ msgid "Selected size %d%s"
#~ msgstr "Valitud suurus %d%s"
#~ msgid "Opening your connection..."
#~ msgstr "Testime Teie hendust..."
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Seadistused: Lisa asukoht"
-
#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr "See skript proovib seadistada USB hiirt"
-#~ msgid "Boot style configuration"
-#~ msgstr "Alglaadimise stiil"
-
#~ msgid ""
#~ "Now that your Internet connection is configured,\n"
#~ "your computer can be configured to share its Internet connection.\n"
@@ -12787,9 +13447,6 @@ msgstr "Teadustjaam"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "LILO/GRUB seadistamine"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Loo alglaadimisflopi"
-
#~ msgid "Choice"
#~ msgstr "Valik"
@@ -12919,9 +13576,6 @@ msgstr "Teadustjaam"
#~ msgid "not connected"
#~ msgstr "ei ole hendatud"
-#~ msgid "Actions"
-#~ msgstr "Tegevused"
-
#~ msgid "Scientific applications"
#~ msgstr "Teadusrakendused"
@@ -12937,9 +13591,6 @@ msgstr "Teadustjaam"
#~ msgid "Second DNS Server"
#~ msgstr "Teine nimeserver:"
-#~ msgid "using module"
-#~ msgstr "kasutades moodulit"
-
#~ msgid "Development, Database"
#~ msgstr "Arendus, Andmebaasid"
@@ -12996,9 +13647,6 @@ msgstr "Teadustjaam"
#~ "Kohtvrk on juba seadistatud.\n"
#~ "Kas soovite:"
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Seadistan uuesti abimehega..."
-
#~ msgid "Graphics Manipulation"
#~ msgstr "Graafikaprogrammid"
@@ -13051,18 +13699,12 @@ msgstr "Teadustjaam"
#~ msgid "Confirm Password"
#~ msgstr "Salasna uuesti"
-#~ msgid "default"
-#~ msgstr "tavaline"
-
#~ msgid "What is your system used for?"
#~ msgstr "Milline on Teie ssteemi kasutusala?"
#~ msgid "Select the size you want to install"
#~ msgstr "Valige paigalduse maht"
-#~ msgid "Use diskdrake"
-#~ msgstr "Kasuta diskdrake-i"
-
#~ msgid "Customized"
#~ msgstr "Isetehtud"
@@ -13092,9 +13734,6 @@ msgstr "Teadustjaam"
#~ msgid "Search"
#~ msgstr "Otsi"
-#~ msgid "Package"
-#~ msgstr "Pakett"
-
#~ msgid "Tree"
#~ msgstr "Puu"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index a3cc4183d..c377124d8 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -1,13 +1,12 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999, 2002 Mandrakesoft
-# Kim Enkovaara <kim.enkovaara@iki.fi>, 1999, 2000
-# Matias Griese <mahagr@utu.fi>, 2001, 2002
+# drakfloppy Finnish Translation.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Matias Griese <mahagr@utu.fi>, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-20 22:55EET\n"
+"Project-Id-Version: drakfloppy VERSION\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-12-17 23:18EET\n"
"Last-Translator: Matias Griese <mahagr@utu.fi>\n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@@ -15,24 +14,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Aseta kaikki nytt erikseen"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kt"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Kyt Xinerama-laajennusta"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kt"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Mrittele vain kortin \"%s\" (%s) asetukset"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mt"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mt"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mt"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mt"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mt"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mt"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mt tai enemmn"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Valitse X-palvelin"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-palvelin"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Monen nytn asettaminen"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,43 +70,44 @@ msgstr ""
"Jrjestelmsi tukee monen nytn laitteistokokoonpanoa.\n"
"Mit haluat tehd?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Nytnohjain"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Valitse nytnohjaimen muistin mr"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Valitse nytnohjain"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFreen asentaminen"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Valitse X-palvelin"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Mit versiota XFree-serverist haluat kytt?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-palvelin"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Aseta kaikki nytt erikseen"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Valitse X-palvelin"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Kyt Xinerama-laajennusta"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-palvelin"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Mrittele vain kortin \"%s\" (%s) asetukset"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Mit versiota XFree-serverist haluat kytt?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s laitteistokiihdytetyll 3D-tuella"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,33 +117,18 @@ msgstr ""
"ssa.\n"
"Korttisi on tuettu mys XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Nytnohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s laitteistokiihdytetyll 3D-tuella"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Nytnohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
-"HUOMAA, ETT TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyll 3D-tuella"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +140,58 @@ msgstr ""
"HUOMAA, ETT TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI.Korttisi on "
"tuettu mys XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Nytnohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
+"HUOMAA, ETT TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (nytnohjaimen ajurin asennus)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFreen asentaminen"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Valitse nytnohjaimen muistin mr"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Valitse optioita palvelimelle"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Silyt muutokset?\n"
+"Nykyiset asetukset ovat:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Valitse monitori"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Nytt"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Mukautettu"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Yleinen"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Peruuta"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,511 +214,326 @@ msgstr ""
"vaakavirkistystaajuus\n"
"on suurempi kuin oman nyttsi. Jos eprit, valitse pienempi taajuus."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Vaakavirkistystaajuus"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Pystyvirkistystaajuus"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Nytt ei ole asetettu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Nytnohjainta ei ole viel asetettu"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Nytn resoluutiota ei ole viel valittu"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Haluatko kokeilla asetuksia?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varoitus: nytnohjaimesi testaaminen voi jumittaa tietokoneen"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Kokeile asetuksia"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 vri (8 bitti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"kokeile joidenkin parametrien muuttamista"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tuhatta vri (15 bitti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tapahtui virhe:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tuhatta vri (16 bitti)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Lopetan %d sekunnissa"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljoonaa vri (24 bitti)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Onko tm oikea asetus?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardia vri (32 bitti)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tapahtui virhe, kokeile joidenkin parametrien vaihtamista"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resoluutiot"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resoluutio"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Valitse resoluutio ja vrisyvyys"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Nytnohjain: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 palvelin: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Lisasetukset"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Peruuta"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Asiantuntijatila"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Nyt kaikki"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Haluatko kokeilla asetuksia?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluutiot"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Kokeile asetuksia"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Nppinasettelu: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiiren tyyppi: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiiren laite: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Nytt: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Nytn vaakajuovataajuus: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Nytn virkistystaajuus: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Nytnohjain: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Nytnohjaimen tunniste: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafiikkamuisti: %s kt\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Vrisyvyys: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resoluutio: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 palvelin: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ajurit: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Valmistelen X-Windowin asetuksia"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mit haluat tehd?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Vaihda nytt"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Vaihda nytnohjainta"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Vaihda palvelimen optioita"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Vaihda resoluutiota"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Nyt tiedot"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Kokeile uudelleen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Lopeta"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Silyt muutokset?\n"
-"Nykyiset asetukset ovat:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Kynnistettess X:"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"X voidaan laittaa kynnistymn automaattisesti kynnistyksen yhteydess.\n"
"Haluatko kynnist X:n automaattisesti?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 vri (8 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhatta vri (15 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhatta vri (16 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoonaa vri (24 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardia vri (32 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kt"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kt"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mt tai enemmn"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Perus-VGA, 640x480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "SVGA, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-yhteensopiva, 1024x768 @ 87 Hz lomitettu (ei 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "SVGA, 1024x768 @ 87 Hz lomitettu, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Laajennettu SVGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Lomittamaton SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Korkeataajuuksinen SVGA, 1024x768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Nytt, joka pystyy 1280x1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Nytt, joka pystyy 1280x1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Nytt, joka pystyy 1280x1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Nytt, joka pystyy 1600x1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Nytt, joka pystyy 1600x1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Ensimminen sektori kynnistysosiolla"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Levyn ensimminen sektori (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILOn asennus"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Minne haluat asentaa kyttjrjestelmn lataajan?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub asennus"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO tekstipohjaisella valikolla"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO graafisella valikolla"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Kynnist DOSista/Windowsista (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Kyttjrjestelmn lataajan pasetukset"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Kytettv kyttjrjestelmn lataaja"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Kyttjrjestelmn lataajan asennus"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Kynnistyslaite"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei toimi vanhoissa BIOSeissa)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Tiivis"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "tiivis"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Nytttila"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Tauko ennen oletusjrjestelmn kynnistyst"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Salasana"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Rajoita komentorivioptioita"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "rajoita"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Tyhjenn /tmp jokaisella kynnistyskerralla"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tarkka muistin koko, jos tarpeen (lydettiin %d Mt)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Kyt montaa profiilia"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Anna muistin koko megatavuina"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Asetus ``Rajoita komentorivioptioita'' ei ole hydyllinen ilman salasanaa"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Yrit uudelleen"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Salasanat poikkeavat toisistaan"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Kynnistysviesti"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Vapaa Firmware-viive"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Timeout ytimen kynnistyksess"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Mahdollista kynnistys CD:lt"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Mahdollista kynnistys OFilta"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Oletuskyttjrjestelm?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -684,83 +542,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Tss ovat asetustietueet.\n"
"Voit list uusia tai muuttaa olemassaolevia."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Lis"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Valmis"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Muokkaa"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Mink tyyppisen tietueen haluat list"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Muu kyttjrjestelm (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Muu kyttjrjestelm (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Muu kyttjrjestelm (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kuva"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Juuri"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Liit"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Luku-kirjoitus"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taulukko"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Turvaton"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Otsikko"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Oletus"
@@ -792,53 +650,75 @@ msgstr "Sinulla tytyy mritell juuriosio"
msgid "This label is already used"
msgstr "Otsikko on jo kytss"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Lysin %s %s liitnnt"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Onko sinulla muita?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Onko koneessa %s liitynt?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Kyll"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Katso laitteistotietoja"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Asetan ajuria %s ohjaimelle %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(moduli %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Voit antaa lisasetuksia modulille %s.\n"
+"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
+"Esimerkiksi, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Moduulin optiot:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Mit %s-ajuria kokeillaan?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -854,37 +734,15 @@ msgstr ""
"lismreit vai annatko sen itse etsi tarvitsemansa tiedot? Joskus haku\n"
"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automaattihaku"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Lisasetukset"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Voit antaa lisasetuksia modulille %s.\n"
-"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
-"Esimerkiksi, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Moduulin optiot:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -893,50 +751,55 @@ msgstr ""
"Modulin %s lataaminen eponnistui.\n"
"Haluatko yritt muilla asetuksilla?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "oikeudet X-ohjelmille"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "oikeudet rpm-tykaluihin"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "salli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "oikeudet yllpidollisiin tiedostoihin"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(listty jo %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Salasana on liian yksinkertainen"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Anna kyttjtunnus"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Kyttjtunnus saa sislt vain pieni kirjaimia, numeroita, `-' ja `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Kyttjtunnus on jo listty"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Kyttjtunnus on jo listty"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Lis kyttj"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -945,32 +808,32 @@ msgstr ""
"Lis kyttj\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Hyvksy kyttj"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Oikea nimi"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Kyttjtunnus"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Komentotulkki"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Kuvake"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -979,119 +842,99 @@ msgstr ""
"tietokoneellesi.\n"
"Haluatko kytt tt ominaisuutta?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Valitse oletuskyttj:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Valitse kytettv ikkunointijrjestelm:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Valitse kytettv kieli."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Voit valita kielet jotka ovat kytettviss asennuksen jlkeen"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Kaikki"
# Asennuksen sivuvalikko
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Salli kaikille kyttjille"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Mukautettu"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Ei jaettu"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paketti %s pit asentaa. Haluatko asentaa sen?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Voit jakaa sek NFS:ll ett Samballa. Kumpaa haluat kytt"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakollinen paketti %s puuttuu"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Peruuta"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Tervetuloa murtautujat"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Huono"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardi"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Korkea"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Korkea"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidi"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1103,14 +946,14 @@ msgstr ""
"koneisiin\n"
"tai Internettiin. Koneessa ei ole salasanoja."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasanat ovat nyt kytss mutta koneen kytt verkossa ei ole suositeltua."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1120,59 +963,60 @@ msgstr ""
"kytetn Internettiin liitettyn. Jrjestelmss on "
"turvallisuustarkastuksia."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Tll turvallisuustasolla jrjestelmn kytt palvelimena on mahdollista.\n"
"Jrjestelm voidaan kytt palvelimena joka hyvksyy yhteyksi monilta\n"
"asiakkailta. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Pohjautuu edelliseen tasoon, mutta jrjestelm on kokonaan suljettu.\n"
"Turvallisuusasetukset ovat tiukimmillaan."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Valitse turvataso"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Turvataso"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Kyt libsafea palvelimille"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Kirjasto joka suojelee puskurin ylivuoto ja merkkijonon muotovirhehykkyksi "
"vastaan."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1197,7 +1041,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
@@ -1211,7 +1055,7 @@ msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
@@ -1226,7 +1070,7 @@ msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Paina enter kaynnist~^D~^Dksesi valitun kayttjrjestelmn, 'e' muokataksesi"
@@ -1241,7 +1085,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komennot ennen kynnistyst, tai 'c' komentoriville"
@@ -1255,27 +1099,27 @@ msgstr "komennot ennen kynnistyst, tai 'c' komentoriville"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Korostettu tietue kynnistetn automaattisesti %d sekunnissa."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "ei tarpeeksi tilaa /boot-hakemistossa"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Typyt"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Kynnistysvalikko"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Et voi asentaa kyttjrjestelmn lataajaa partitiolle %s\n"
@@ -1288,15 +1132,19 @@ msgstr "ohjeita ei ole viel olemassa.\n"
msgid "Boot Style Configuration"
msgstr "Kynnistyksen tavan asetus"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Tiedosto"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Tiedosto/_Poistu"
+msgstr "/Tiedosto/Poistu"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1331,14 +1179,14 @@ msgstr "Yaboot-tila"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Tll hetkell kytss oleva jrjestelmlataaja on %s.\n"
"Valitse Aseta kynnistksesi asennusohjelman."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Mrittele"
@@ -1348,7 +1196,7 @@ msgid "System mode"
msgstr "Jrjestelmn tila"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Kyt X-Window-jrjestelm"
#: ../../bootlook.pm_.c:148
@@ -1359,16 +1207,18 @@ msgstr "Ei, en halua autologinia"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Kyll, haluan autologinin (kyttj, ymprist)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "Ok"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1414,7 +1264,7 @@ msgstr "Kuvankaappauksia ei voi tehd ennen osiointia"
msgid "Screenshots will be available after install in %s"
msgstr "Kuvankaappaukset lytyvt asennuksen jlkeen hakemistosta %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ranska"
@@ -1422,7 +1272,7 @@ msgstr "Ranska"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgia"
@@ -1446,11 +1296,12 @@ msgstr "Norja"
msgid "Sweden"
msgstr "Ruotsi"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Alankomaat"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italia"
@@ -1458,7 +1309,7 @@ msgstr "Italia"
msgid "Austria"
msgstr "Itvalta"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yhdysvallat"
@@ -1466,8 +1317,8 @@ msgstr "Yhdysvallat"
msgid "Please make a backup of your data first"
msgstr "Tee ensin varmuuskopio tiedoistasi"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lue tarkkaan!"
@@ -1480,11 +1331,12 @@ msgstr ""
"Jos aiot kytt aboot:ia, varmista ett jtt vapaata tilaa levyn alkuun\n"
"(2048 sektoria on tarpeeksi)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Virhe"
@@ -1492,11 +1344,11 @@ msgstr "Virhe"
msgid "Wizard"
msgstr "Velho"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Valitse toiminta"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1508,144 +1360,149 @@ msgstr ""
"Ehdotus: muuta ensimmiseksi osion kokoa\n"
"(klikkaa osiota ja valitse sitten \"Uusi koko\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klikkaa osiota"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Yksityiskohdat"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journaloitu FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tyhj"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Muut"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tiedostojrjestelmien tyypit:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Luo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tyyppi"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Kyt sen sijaan ``%s'':"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Poista"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Kyt ensin komentoa ``Irroita''"
# mat
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Vaihdettuasi osion %s tyyppi kaikki sill olevat tiedot hvivt"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Valitse osio"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Valitse toinen osio"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Poistu"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Vaihda asiantuntijatilaan"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Vaihda normaalitilaan"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Peruuta"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Jatka joka tapauksessa?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Lopeta tallentamatta"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Lopeta kirjoittamatta osiotalua?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Haluatko tallentaa muutokset tiedostoon /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automaattinen varaus"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Tyhjenn kaikki"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Lisasetukset"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Kiintolevyn tiedot"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Kaikki primriosiot kytetty"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Uusia osioita ei voida list"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1653,31 +1510,31 @@ msgstr ""
"Voidaksesi luoda lis osioita tuhoa yksi olemassaoleva osio jotta voisit "
"luoda laajennetun osion"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Tallenna osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Palauta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Pelasta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Uudelleenlataa osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Vaihdettavan median automaattinen liittminen"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Valitse tiedosto"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1685,11 +1542,11 @@ msgstr ""
"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
"Jatka silti?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Varoitus"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1697,124 +1554,131 @@ msgstr ""
"Aseta levyke asemaan\n"
"Kaikki levykkeen tiedot hvivt"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Yritn osiotalulun palautusta"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Yksityiskohtaiset tiedot"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Liitospaikka"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optiot"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Uusi koko"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Siirr"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Alusta"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Liit"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Lis RAIDiin"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Lis LVM:iin"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Irroita"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Poista RAIDista"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Poista LVM:st"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Muokkaa RAIDia"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Kyt loopback-tiedostoa"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Luo uusi osio"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Aloitussektori: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Koko Mt: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tiedostojrjestelm: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Liitospaikka: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Etuoikeus: "
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
# mat
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Poista loopback-tiedosto?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Muuta osiotyyppi"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Mink tiedostojrjestelmn haluat?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Vaihdan ext2:sta ext3:een"
# mat
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Minne haluat liitt loopback-tiedoston %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Minne haluat liitt laitteen %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1822,126 +1686,131 @@ msgstr ""
"Ei voida poistaa liitospaikkaa koska osiota kytetn loopback-tilassa.\n"
"Poista loopback-tiedosto ensin"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Lasken FAT-tiedostojrjestelmn rajoja"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Muutan kokoa"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Tmn osion kokoa ei voi muuttaa"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Kaikki osion tiedot tulee varmuuskopioida"
# mat
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Osion %s koon muuttamisen jlkeen kaikki osion tiedot tuhoutuvat"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Valitse uusi koko"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Uusi koko (Mt): "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Mille levylle haluat siirt?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektori"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Mille sektorille haluat siirt?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Siirrn"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Siirrn osiota..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Valitse olemassaoleva RAID johon listn"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "uusi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Valitse olemassaoleva LVM johon listn"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM:n nimi?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Osiota ei voida kytt loopback-osiona"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback tiedostonimi: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Anna tiedostonimi"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Tiedosto on jo kytss toiselle loopbackille, valitse toinen"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Tiedosto on jo olemassa. Kyt sit?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Liittmisen optiot"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Useita"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "laite"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "taso"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "palan koko"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Varo: tm on vaarallinen toiminto"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Mink tyyppinen osiointi?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paketti %s pit asentaa. Haluatko asentaa sen?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1953,7 +1822,7 @@ msgstr ""
"Joko kytt LILOa ja se ei toimi, tai et kyt LILOa, jolloin et tarvitse /"
"boot -hakemistoa"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1964,7 +1833,7 @@ msgstr ""
"eik sinulla ole /boot osiota.\n"
"Jos haluat kytt LILO-kynnistyksenhallintaa, lis Linuxille /boot osio."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1974,132 +1843,132 @@ msgstr ""
"Mikn kynnistyslataaja ei osaa ksitell tt ilman /boot -osiota.\n"
"Lis /boot -osio, jos haluat kytt liloa tai grubia"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Levyn %s osiotaulu kirjotetaan levylle!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Sinun tytyy kynnist kone uudelleen ennen kuin muutos tulee voimaan"
# mat
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Kaikki osiolla %s olevat tiedot hvivt osion alustuksen yhteydess"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Alustan"
# mat
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Alustan loopback-osiota %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Alustan osiota %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Piilota tiedostot"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Siirr tiedostot uuteen osioon"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Hakemisto %s sislt jo jotakin tietoa\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Siirrn tiedostoja uudelle osiolle"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopioidaan %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Poistetaan %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "osio %s tunnetaan nyt nimell %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Laite: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-asema: %s (vain arvaus)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tyyppi: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Alkaa: sektori %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Koko: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoria"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sylinterist %d sylinteriin %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ei alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Liitetty\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2108,7 +1977,7 @@ msgstr ""
"Loopback tiedosto(t):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2116,27 +1985,27 @@ msgstr ""
"Osiolta kynnistetn oletuksena\n"
" (MS-DOS kynnistys, ei lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Taso %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Palan koko %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-levyt %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-tiedoston nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2148,7 +2017,7 @@ msgstr ""
"ajuriosio. Sinun olisi kaiketi\n"
"parasta jtt se rauhaan.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2160,64 +2029,64 @@ msgstr ""
"osio on jrjestelmsi\n"
"kaksoiskynnistmiseksi.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Koko: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s sylinteri, %s lukupt, %s sektoria\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Tietoja: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-levyt %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Osion tyyppi: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "vylss %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Optiot: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Tiedostojrjestelmn salausavain"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Valitse tiedostojrjestelmsi salausavain"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Salausavain on liian yksinkertainen (sen pit olla ainakin %d merkki pitk)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Salausavaimet eivt tsm"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Salausavain"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Salausavain (uudelleen)"
@@ -2226,35 +2095,65 @@ msgid "Change type"
msgstr "Muuta tyyppi"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Klikkaa mediaa"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Tunnistustapa"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Kyttjtunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Kyttjtunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS-alue"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Hae palvelimet"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s:n alustus %s:ta eponnistui"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "en osaa alustaa %s: tyyppi %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck eponnistui virhekoodilla %d tai signaalilla %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "virhe irroitettaessa %s: %s"
@@ -2271,68 +2170,323 @@ msgstr ""
msgid "server"
msgstr "palvelin"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Et voi kytt JFS: alle 16 Mt osioilla"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Et voi kytt ReiserFS: alle 32 Mt osioilla"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Liitospaikan pit alkaa /-merkill."
# mat
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "On jo olemassa osio, jonka liitospaikka on %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Et voi kytt LVM loogista taltiota liitekohtana %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Tmn hakemiston pitisi olla juuritiedostojrjestelmss"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Tarvitset thn liitoskohtaan oikean tiedostojrjestelmn (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Et voi kytt salattua tiedostojrjestelm liitoskohdassa %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Vapaa tila ei riit automaattiseen varaukseen"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Ei mitn tekemist"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"On tapahtunut virhe - ei lytynyt ainuttakaan laitetta, joille voi luoda "
"uuden tiedostojrjestelmn. Tarkista laitteistosi korjataksesi ongelman"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Sinulla ei ole yhtn osiota!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Tee automaattinen tunnistus"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Yleinen"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kortin muisti (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "lataa asetukset"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Muuta tyyppi"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Lopeta"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ohje"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ohje"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ohje/_Tietoja..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Hiiri"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kortin muisti (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Peruuta"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Hiiri"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Kuvaus"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Tunnistustapa"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Valitse tiedosto"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Yhdyskytvn laite"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nppint"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Kiintolevyjen tunnistus"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Katso laitteistotietoja"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Nyt tiedot"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Hiiren mrittely"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "lydetty portista %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Odota hetki"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekuntia"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Poistetaan tulostin \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Automaattihaku"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2346,7 +2500,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2462,9 +2616,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2683,7 +2836,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2695,9 +2848,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2744,21 +2896,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2774,9 +2925,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Tss vaiheessa sinun pit valita mihin haluat asentaa Mandrake Linux\n"
"-kyttjrjestelmn. Jos kiintolevysi on tyhj tai olemassaoleva "
@@ -2883,9 +3034,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3037,38 +3187,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3259,11 +3403,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3325,7 +3469,7 @@ msgstr ""
" l valitse tt asennusluokkaa, ellet ole aivan varma, mit olet "
"tekemss."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3355,7 +3499,7 @@ msgstr ""
"Paina \"Lis\"-painiketta saadaksesi tydellisen listan tuetuista "
"nppimistist. "
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3382,7 +3526,7 @@ msgstr ""
"ylimriset\n"
"kielet, paina \"Ok\"-painiketta jatkaaksesi."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3409,7 +3553,7 @@ msgstr ""
"hiiri ei toimi kunnolla, paina vlilynti tai enteri peruttaaksesi, mink\n"
"jlkeen voit valita uudelleen."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3417,23 +3561,23 @@ msgstr ""
"Valitse oikea portti. Esimerkiksi \"COM1\" portti Windowsissa\n"
"on nimetty \"ttyS0\":ksi GNU/Linuxissa."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3455,7 +3599,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3477,7 +3621,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3485,7 +3629,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3506,7 +3650,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3529,7 +3673,7 @@ msgstr ""
"tuhoa kyseiset kohdat. Mutta ett siin tapauksessa tarvitset itse\n"
"kynnistyslevykett pstksesi kyseisiin kyttjrjestelmiin!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3543,29 +3687,28 @@ msgstr ""
"Jos et tied tarkalleen mit olet tekemss, valitse \"Levyn ensimminen\n"
"sektori (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3574,7 +3717,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3600,7 +3743,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX hakee koneeseen asennettuja PCI-vylisi SCSI-laitteita. \n"
@@ -3631,7 +3774,7 @@ msgstr ""
"(jos\n"
"se on asennettu tietokoneeseesi)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3641,9 +3784,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3655,7 +3797,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3681,7 +3823,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3708,18 +3850,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3727,12 +3868,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3748,7 +3888,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3758,7 +3898,7 @@ msgstr ""
"Ole varovainen, koska kaikki asemalla oleva tieto tuhoutuu eik ole en\n"
"palautettavissa!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3776,7 +3916,7 @@ msgstr ""
"Paina \"Peruuta\" keskeyttksesi tmn toiminnon ilman ett menett\n"
"mitn kiintolevyll ollutta tietoa ja osoita."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3784,12 +3924,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Sinun tytyy mys alustaa %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3814,20 +3954,20 @@ msgstr ""
"\n"
"Haluatko todella asentaa nm palvelimet?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Aseta tyhj FAT-alustettu levyke levyasemaan %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Tm levyke ei ole FAT-alustettu"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3835,7 +3975,7 @@ msgstr ""
"Kyttksesi tt \"tallennetut paketit\" valintaa, kynnist asennus "
"optiolla \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Virhe lukiessa tiedostoa %s"
@@ -3866,7 +4006,7 @@ msgstr "Sinulla tulee olla heittovaihtotiedosto"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3874,59 +4014,59 @@ msgstr ""
"\n"
"Jatka kuitenkin?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sinulla pit olla FAT-osio liitettyn hakemistoon /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Kyt tyhj tilaa"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ei tarpeeksi tilaa uusien osioiden luomiseksi"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Kyt olemassa olevia osioita"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Ei ole olemassa olevaa osiota kytettvksi"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Kyt Windows-osiota loopback-tiedostona"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Mille osiolle haluat laittaa Linux4Win:in?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Valitse koot"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Juuriosion koko Mt: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Sivutusosion koko Mt: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Kyt tyhj tilaa Windows-osiolla"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Mink osion kokoa haluat muuttaa?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Lasken Windows-tiedostojrjestelmn rajoja"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3935,12 +4075,15 @@ msgstr ""
"FAT-jrjestelmn koon muuttaja ei osaa ksitell osiotasi,\n"
"saatiin seuraava virhe: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Windows-osiosi on liian pirstoutunut, mene Windowsiin ja aja \"defrag\" ensin"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3961,55 +4104,55 @@ msgstr ""
"Samalla suosittelen ottamaan varmuuskopiot trkeist tiedoista.Kun olet "
"varma, paina Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kuinka paljon tilaa haluat silytt Windowsilla"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "osio %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-tiedostojrjestelmn koon muuttaminen eponnistui: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ei ole FAT-osioita, joiden kokoa voisi muuttaa tai kytt loopback-"
"tiedostoina (tai osiot ovat tynn)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Tyhjenn koko levy"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Poista Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Sinulla on enemmn kuin yksi kiintolevy. Mille haluat asentaa Linuxin?"
# mat
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "KAIKKI olemassaolevat osiot ja niiss oleva tieto tuhoutuu asemalta %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Mukautettu levyn osiointi"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Kyt fdiski"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4018,11 +4161,11 @@ msgstr ""
"Voit nyt osioda kiintolevysi %s\n"
"Kun olet valmis, l unohda tallettaa asetuksia komennolla `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Sinulla ei ole tarpeeksi tilaa Windows-osiollasi"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ei ole tarpeeksi tilaa asentamiseen"
@@ -4031,16 +4174,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX-Osiointivelho lysi seuraavat ratkaisut:"
# mat
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Osiointi eponnistui: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Kynnistn verkkoa"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ajan alas verkkoa"
@@ -4052,12 +4195,12 @@ msgstr ""
"Tapahtui virhe, sit ei voida ksitell kunnolla.\n"
"Jatka omalla riskillsi."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Kahdentunut liitospaikka %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4069,12 +4212,12 @@ msgstr ""
"Tarkista cdrom Linux-koneessa kyttmll \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
# mat
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ei levykeasemaa kytettviss"
@@ -4084,9 +4227,9 @@ msgstr "Ei levykeasemaa kytettviss"
msgid "Entering step `%s'\n"
msgstr "Siirryn vaiheeseen `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4097,200 +4240,156 @@ msgstr ""
"paina `F1' kun\n"
"kynnistt asennusohjelmaa CDROM-asemasta. Tmn jlkeen kirjoita `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Asennusluokka"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Valitse yksi seuraavista asennusluokista:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Valitsemiesi ryhmien kokonaiskoko on suunnilleen %d Mt.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jos haluat asentaa vhemmn kuin tm koko,\n"
-"valitse prosenttiosuus paketeista jonka haluat asentaa.\n"
-"\n"
-"Pieni prosenttiosuus asentaa vain trkeimmt paketit,\n"
-"100%% osuus asentaa kaikki paketit."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sinulla on levyll tilaa vain %d%% paketeista\n"
-".Jos haulat asentaa vhemmn kuin tmn osan,\n"
-"valitse prosenttiosuus paketeista jotka haluat asentaa.\n"
-"Pieni prosentti asentaa vain trkeimmt paketit, %d%%\n"
-" prosenttiosuus asentaa niin monta pakettia kuin on mahdollista."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Voit valita paketit tarkemmin seuraavassa vaiheessa"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prosenttiosuus asennettavista paketeista"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Pakettiryhmien valinta"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Yksittisten pakettien valinta"
# mat
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Koko yhteens: %d / %d Mt"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Viallinen paketti"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Koko: %d Kt\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Trkeys: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Et voi asentaa tt pakettia, koska levyll ei ole tarpeeksi tilaa sen "
"asentamiseksi"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Seuraavat paketit asennetaan"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Seuraavat paketit poistetaan"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Et voi valita/poistaa tt pakettia"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tm on pakollinen paketti, sit ei voida poistaa valinnoista"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Et voi poistaa tmn paketin valintaa. Se on jo asennettu"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Tm paketti tulee pivitt\n"
"Oletko varma ett haluat poistaa valinnan?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Et voi poistaa tmn paketin valintaa. Paketti pit pivitt."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Nyt automaattisesti valitut paketit"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Asenna"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Lataa/Tallenna levykkeelle"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Pivitn pakettien valintaa"
# Asennuksen sivuvalikko
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimaalinen asennus"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Valitse asennettavat paketit"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Asennan"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Arvioin aikaa"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Jljell "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Valmistelen asennusta"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakettia"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Hyvksy"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Hylk"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4305,17 +4404,17 @@ msgstr ""
"Jos sinulla ei ole levy, paina Peruuta vlttksesi asennukset tlt "
"levylt."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Jatka kuitenkin?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Tapahtu virhe jrjestettess paketteja:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Tapahtu virhe asennettaessa paketteja:"
@@ -4390,11 +4489,11 @@ msgstr "Tapahtui virhe"
msgid "Do you really want to leave the installation?"
msgstr "Haluatko todella poistua asennuksesta?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisenssin hyvksyminen"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4409,7 +4508,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4515,109 +4614,113 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Nppimist"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Valitse nppimistsi asettelu."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Tss on koko lista olemassa olevista nppimistist"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Valitse asennuksen luokka?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Asenna/Pivit"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Onko tm asennus vai pivitys?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Suositeltu"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Asiantuntija"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Pivit"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Pivit vain paketit"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Hiiren portti"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Nppinemulaatio"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "2. nppimen emulaatio"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "3. nppimen emulaatio"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Asetan PCMCIA kortteja...."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Asetan IDE-levy"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ei vapaita osioita"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Tarkistan osioita lytkseni liitoskohdat"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Valitse liitospaikat"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4629,7 +4732,7 @@ msgstr ""
"\n"
"Hyvksytk kaikkien osioiden menettmisen?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4637,7 +4740,7 @@ msgstr ""
"DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
"Jatka omalla vastuullasi!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4646,76 +4749,79 @@ msgstr ""
"kynnistksesi jrjestelmn, sinun pit luoda kynnistyslohko-osio "
"DiskDrakessa."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Pivitykseen tarvittavaa juuriosiota ei lytynyt"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Juuriosio"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Mik on jrjestelmsi juuriosio (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sinun tulee kynnist jrjestelm uudelleen jotta muutokset tulevat voimaan"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Valitse alustettavat osiot"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Tarkista vialliset lohkot?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Alustan osioita"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Luon ja alustan tiedostoa %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Heittovaihtotiedosto ei ole riittvn suuri, suurenna sit"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Etsin saatavilla olevia paketteja"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Etsin saatavilla olevia paketteja"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Etsin pivitettvi paketteja"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Et voi poistaa tmn paketin valintaa. Se on jo asennettu"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Jrjestelmsssi ei ole riittvsti tilaa asennukseen tai pivitykseen (%d > "
"%d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Tydellinen (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimi (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Suositeltu (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4723,35 +4829,35 @@ msgstr ""
"Lataa tai tallenna pakettien valinta levykkeelle.\n"
"Muoto on sama kuin auto_install-toiminnon luomilla levykkeill."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Lataa levykkeelt"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Ladataan levykkeelt"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Aseta levyke, jossa on pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Tallenna levykkeelle"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Valittu koko on suurempi kuin olemassa oleva levytila"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Asennuksen tyyppi"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -4759,19 +4865,19 @@ msgstr ""
"Et ole valinnut yhtkn pakettiryhm\n"
"Valitse haluamasti minimaalinen asennus"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "X:ll"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Perusdokumentaation kanssa (suositeltu!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Pienin mahdollinen asennus (erityisesti ei urpmia)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4781,16 +4887,16 @@ msgstr ""
"Jos sinulla ei ole mitn levyist, paina Peruuta.\n"
"Jos jotkut levyist puuttuvat, poista niiden valinnat, ja paina OK."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom nimeltn \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Valmistelen asennusta"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4799,24 +4905,24 @@ msgstr ""
"Asennan pakettia %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Asennuksen jlkeiset toiminnot"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Aseta kyttmsi kynnistyslevyke asemaan %s"
# mat
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Aseta moduulien pivityslevyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4890,13 +4996,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -4908,152 +5016,182 @@ msgstr ""
"\n"
"Haluatko asentaa pivitykset ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Otan yhteytt Mandrake Linuxin sivustolle saadakseni listan olemassaolevista "
"peileist"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilijrjestelm josta paketit haetaan"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Yhdistn peilijrjestelmn hakeakseni uusimman pakettilistan"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Mik on jrjestelmsi aikavyhyke?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Laitteistokello asetettu GMT-aikaan"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon synkronisointi (kytten NTP:t)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-palvelin"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ei kirjoitinta"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Onko sinulla muita?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Johtopts"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Hiiri"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Aikavyhyke"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Kirjoitin"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-kortti"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "nikortti"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kortti"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Paikalliset tiedostot"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Yllpitjn salasana"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Ei salasanaa"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkki pitk)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tunnistustapa"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP perus-dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Tunnistus NIS:ll"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-alue"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Tunnistus LDAPilla"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Hae Windowsin kirjasimet"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP-palvelin"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5080,19 +5218,19 @@ msgstr ""
"Jos haluat luoda kynnistyslevykkeen jrjestelmsi, aseta levyke\n"
"ensimmiseen asemaan ja paina \"Ok\","
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ensimminen levyasema"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Toinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ohita"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5117,7 +5255,7 @@ msgstr ""
"Haluatko luoda kynnistyslevykkeen jrjestelmsi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5126,28 +5264,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Levyajuria ei ole saatavilla"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Valitse levyasema jolla luot kynnistyslevykkeen"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Aseta levyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Luon kynnistyslevykett"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Valmistelen kyttjrjestelmn lataajaa"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5159,11 +5297,11 @@ msgstr ""
"Asennus jatkuu, mutta sinun tytyy kytt BootX:\n"
"koneesi kynnistmiseen"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Haluatko kytt aboot:ia?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5172,15 +5310,15 @@ msgstr ""
"yrit pakkoasennusta vaikka se tuhoaa ensimmisen osion?"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Asennan kyttjrjestelmn lataajaa"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Jrjestelmlataajan asennus eponnistu. Seuraava virhe tapahtui:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5200,18 +5338,17 @@ msgstr ""
"komentokehoite."
# mat
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Aseta tyhj levyke levyasemaan %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Valmistelen automaattiasennuslevykett"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5221,7 +5358,8 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5232,7 +5370,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5247,17 +5385,21 @@ msgstr ""
"korjattujen virheiden listan osoitteesta:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Jrjestelmn asettamisesta saat tietoja virallisen Linux Mandraken\n"
"kyttjoppaan jlkiasennuskappaleesta."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Valmistelen automaattista asennuslevykett"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5271,15 +5413,15 @@ msgstr ""
"\n"
"Ehk haluat mieluummin toistaa asennuksen.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaattinen"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Toista"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Yksittisten pakettien valinta"
@@ -5306,44 +5448,24 @@ msgstr ""
msgid "Choose a file"
msgstr "Valitse tiedosto"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Lisasetukset"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Perusasetukset"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Odota hetki"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Tietoja"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Laajenna puu"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sulje puu"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Vaihda tasaisen ja ryhmjrjestyksen vlill"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Huono valinta, yrit uudelleen\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Valintasi? (oletus %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5352,31 +5474,35 @@ msgstr ""
"Kohdat, jotka sinun pit tytt:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Valintasi? (0/1, oletus '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Painike '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Haluatko klikata tt painiketta? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Valintasi? (oletus '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> On monta asiaa, joista valita (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5386,7 +5512,7 @@ msgstr ""
"tai paina vain Enter jatkaaksesi.\n"
"Valintasi? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5395,328 +5521,328 @@ msgstr ""
"=> Huomaa, nimike vaihtui:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Lhet uudelleen"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tsekki (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espanja"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Suomi"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ranska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norja"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Puola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Venj"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Ruotsi"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK nppimist"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US nppimist"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albaani"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeenia (vanha)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeenia (kirjoituskone)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneettinen)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgaria (foneettinen)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilia"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Valkovenj"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Sveitsi (Saksalainen jrjestys)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Sveitsi (Ranskalainen jrjestys)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tsekki (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Saksa (ei kuolleita nppimi)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Tanska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Norja (Dvorak)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ruotsi)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (\"Venlinen\"-jrjestys)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (\"Latin\"-jrjestys)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Kreikka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Unkari"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatia"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israeli (Foneettinen)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islanti"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italia"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japani 106-nppiminen"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korealainen nppimist"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinalainen amerikka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Liettua AZERTY (vanha)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Liettua AZERTY (uusi)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Liettua \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Liettua \"foneettinen\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollanti"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Puola (qwerty jrjestys)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Puola (qwertz jrjestys)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Venj (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai-nppimist"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik-nppimist"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkki (perinteinen \"F\"-malli)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkki (perinteinen \"Q\"-malli)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US nppimist (kansainvlinen)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamilainen \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavia (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
#, fuzzy
msgid "Left \"Windows\" key"
msgstr "Hae Windowsin kirjasimet"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5729,7 +5855,32 @@ msgstr "Rengasmaisia liitoksia %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Poista loogiset osiot ensin\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Puhelinnumero"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Levyjen osiointi"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr "PCMCIA:ta ei tueta en 2.2-sarjan ytimiss. Kyt 2.4 ydint."
@@ -5770,10 +5921,6 @@ msgstr "1 nppin"
msgid "Generic 2 Button Mouse"
msgstr "Yleinen 2-nappinen hiiri"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Yleinen"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rulla"
@@ -5838,38 +5985,54 @@ msgstr "ei mikn"
msgid "No mouse"
msgstr "Ei hiirt"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Testaa hiiri"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Aktivoidaksesi hiiren,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "PYRIT HIIREN RULLAA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Loppu"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Seuraava ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Edellinen"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Onko tm oikein?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Tietoja"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Laajenna puu"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sulje puu"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Vaihda tasaisen ja ryhmjrjestyksen vlill"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ota yhteys internettiin"
@@ -5916,7 +6079,7 @@ msgstr ""
"Ethernet-verkkokorttia ei lytynyt jrjestelmst.\n"
"Ei voida asentaa tmn tyyppist yhteytt."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Valitse verkkoliittym"
@@ -5929,7 +6092,7 @@ msgstr "Valitse mit verkkokorteista haluat kytt internetiin liittymiseen"
msgid "no network card found"
msgstr "verkkokorttia ei lytynyt"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Asetan verkkoa"
@@ -5945,15 +6108,15 @@ msgstr ""
"Koneesi nimen pitisi olla tysin laillinen nimi, kuten\n"
"\" minunkone.omapaikka.net\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Koneen nimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Verkkoasetusten velho"
@@ -6008,7 +6171,7 @@ msgstr "ISDN:n asetus"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Valitse palveluntarjoajasi.\n"
" Jos se ei ole listassa, valitse `Ei listattu'"
@@ -6027,14 +6190,14 @@ msgstr "Muun maailman kyttm protokolla"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Muun maailman kyttm protokolla \n"
" ei D-kanavaa (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Mit protokollaa haluat kytt?"
#: ../../network/isdn.pm_.c:199
@@ -6058,7 +6221,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jos sinulla on ISA-kortti, seuraavien arvojen pitisi olla oikeat.\n"
@@ -6074,13 +6238,13 @@ msgid "Continue"
msgstr "Jatka"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Mik ISDN-kortti sinulla on?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Olen havainnut ISDN PCI-kortin, mutta en tunnista tyyppi. Valitseyksi "
"seuraavassa ruudussa olevista korteista."
@@ -6097,47 +6261,47 @@ msgstr "Valitse sarjaportti, johon modeemisi on kytketty."
msgid "Dialup options"
msgstr "Soittoasetukset"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Yhteyden nimi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Puhelinnumero"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Kyttj ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Script-pohjainen"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminaalipohjainen"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Verkkoalueen nimi"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Ensimminen nimipalvelin (ei pakollinen)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Toinen nimipalvelin (ei pakollinen)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6145,7 +6309,7 @@ msgstr ""
"\n"
"Voit joko katkaista yhteyden tai asettaa sen uudelleen."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6153,11 +6317,11 @@ msgstr ""
"\n"
"Voit asettaa yhteytesi uudelleen."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Olet parasta aikaa yhteydess internettiin."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6165,33 +6329,33 @@ msgstr ""
"\n"
"Voit joko ottaa yhteyden internettiin tai asettaa yhteyden uudelleen."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Et ole juuri nyt yhteydess internettiin."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Ota yhteys"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Katkaise yhteys"
# Asennuksen sivuvalikko
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Aseta verkkoyhteys"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetyhteyden muodostus ja asetukset"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Asetamme seuraavaksi %s-yhteyden."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6210,12 +6374,12 @@ msgstr ""
"\n"
"Paina Ok jatkaaksesi."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6227,9 +6391,9 @@ msgstr ""
"Paina Ok silyttksesi nykyiset asetukset tai peruuta asettaaksesi "
"internet- ja verkkoasetukset uudelleen.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6239,66 +6403,72 @@ msgstr ""
"Seuraavassa vaiheessa mritelln sinun internet- / verkkoasetukset.\n"
"Jos et halua kytt automaattista tunnistusta, poista kyseinen valinta.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Valitse uusi asetusprofiili"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Kyt automaattista tunnistusta"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Asiantuntijatila"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Etsin laitteita...."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Tavallinen modeemiyhteys"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "lydetty portista %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN-yhteys"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "lydetty %s:sta"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL-yhteys"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "lydetty seuraavasta liitnnst: %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kaapeliyhteys"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kaapeliyhteys havaittu"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Lhiverkko"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "seuraavat ethernet-verkkokortit lydetty"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Valitse yhteys, jonka haluat asettaa"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6308,23 +6478,23 @@ msgstr ""
"Valitse se, jota haluat kytt.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetyhteys"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Haluatko ottaa yhteyden koneen kynnistyksen yhteydess?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Verkko pit kynnist uudelleen"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6335,7 +6505,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6345,7 +6515,7 @@ msgstr ""
"\n"
"Asetukset tulevat kyttn mys itse jrjestelmss.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6353,19 +6523,19 @@ msgstr ""
"Kun tm on tehty, suosittelemme kynnistmn X-ympristn\n"
"uudelleen vlttksesi jrjestelmn nimen vaihdoksesta tulevat ongelmat."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Ongelmia asettamisen aikana.\n"
"Testaa yhteytesi net_monitor- tai mcc-tykalulla. Jos yhteytesi ei toimi, "
"voit kynnist asetustykalun uudelleen"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6374,7 +6544,7 @@ msgstr ""
"Hyvksy, jos haluat pit laitteen asetukset sellaisina, kun ne olivat.\n"
"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6383,38 +6553,43 @@ msgstr ""
"Anna koneen IP-asetukset. Kukin kohta tulee sytt IP-osoitteena,\n"
"pisteill eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Asetan verkkolaitetta %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ajuri %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-osoite"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Verkkopeite"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automaattinen IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Kynnistetty koneen kynnistmisen yhteydess"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6425,64 +6600,64 @@ msgstr ""
"Koneesi nimen pitisi olla tydellinen, kuten ``minunkone.yritys.fi''.\n"
"Voit antaa mys yhdyskytvn IP-osoitteen jos sinulla on sellainen."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Nimipalvelin"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Yhdyskytv (esim. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Yhdyskytvn laite"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Proxyjen asettaminen"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP-vlityspalvelin:"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP-vlityspalvelin:"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Selvit verkkokortti-id (hydyllist sylimikroille)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Vlityspalvelimen tulee olla muotoa http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Vlityspalvelimen tulee olla muotoa ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetin asetukset"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Haluatko kokeilla internetyhteytt nyt?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testaan yhteyttsi..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Jrjestelm on nyt internetiss."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Turvallisuussyist yhteys suljetaan nyt."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6490,112 +6665,117 @@ msgstr ""
"Jrjestelm ei nyt olevan internetiss.\n"
"Yrit muuttaa internet-asetuksia."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Yhteyden asetus"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Valitse alla olevista kohdista"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kortin IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kortin muisti (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kortin IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kortin IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kortin IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Henkilkohtainen puhelinnumerosi"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Palveluntarjoajan nimi (esim: tarjoaja.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Palveluntarjoajan puhelinnumero"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Yhteydentarjoajan dns 1 (vapaaehtoinen)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Yhteydentarjoajandns2(vapaaehtoinen)"
# Asennuksen sivuvalikko
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Valitse maasi"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Soittotila"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Yhteyden nopeus"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Yhteyden aikaraja (sekunneissa)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Kyttjtunnus (kyttjn nimi)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Salasana"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "liittminen eponnistui: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Laajennettua osiotyyppi ei ole tuettu tss ympristss"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Sinulla on reik osiotaulussasi eik sit voida kytt.\n"
"Ainoa ratkaisu on siirt primriosioita siten ett reik on ennen "
"laajennettuja osioita"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Palautus tiedostosta %s eponnistui: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Huono varmuuskopiotiedosto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6605,186 +6785,186 @@ msgstr ""
"Tiedon oikeellisuuden tarkistus eponnistui.\n"
"Kaikki asemalle kirjoitettu tieto muuttuu tunnistamattomaksi"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "pakollinen"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "trke"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "erittin hyv"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "hyv"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ehk"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Paikallinen tulostin"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Ulkoinen tulostin"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Tulostin ulkoisella CUPS-palvelimella"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Tulostin ulkoisella lpd-palvelimella"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Verkkotulostin (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Tulostin NetWare-palvelimella"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Syt tulostinlaitteen osoite (URI)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Putkita ty kskylle"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Tuntematon malli"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Paikalliset tulostimet"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Ulkoiset tulostimet"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " rinnakkaisliitnnss \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tulostin \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", monikyttlaite rinnakkaisportissa \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", monikyttlaite USB:ssa"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", monitoimilaite HP JetDirectiss"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", monitoimilaite"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", tulostetaan: %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "LPD-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP -verkkoptteell \"%s\", portissa %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "Windows-palvelimella \"%s\", jako \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "Novell-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", kytten komentoa %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Raakatulostin (ei ajuria)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(%s:ssa)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(tll koneella)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-palvelimella \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Oletus)"
@@ -6806,12 +6986,12 @@ msgstr ""
"Tulostimia, jotka ovat ulkoisella CUPS-palvelimella, ei tarvitse asettaa\n"
"tss; nm tulostimet tunnistetaan automaattisesti."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Asetustykalut"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
@@ -6851,7 +7031,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-osoitteen tullee olla muotoa 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Portin numeron pitisi olla kokonaisluku!"
@@ -6859,7 +7039,7 @@ msgstr "Portin numeron pitisi olla kokonaisluku!"
msgid "CUPS server IP"
msgstr "CUPS-palvelimen IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Portti"
@@ -6867,20 +7047,12 @@ msgstr "Portti"
msgid "Automatic CUPS configuration"
msgstr "CUPSin automaattinen asettaminen"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Etsin laitteita ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Kokeile portteja"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Lis uusi tulostin"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6893,13 +7065,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Paikallinen tulostin"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6917,11 +7089,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Etsi tulostimet"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6935,11 +7107,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Tulostimien automaattinen lytminen"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6949,33 +7121,37 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Tee automaattinen tunnistus"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Aseta tulostin manuaalisesti"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Kokeile portteja"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Lydetty %s:sta"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tulostin rinnakkaisportissa \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-tulostin \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6983,11 +7159,11 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Sinun tytyy sytt laitteen tai tiedoston nimi!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -6995,19 +7171,19 @@ msgstr ""
"Paikallisia tulostimia ei lytynyt!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7015,7 +7191,7 @@ msgstr ""
"Seuraava tulostin lydettiin, jos se ei ole se, jonka haluat asettaa, syt "
"laite- tai tiedostonimi syteriville"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7023,7 +7199,7 @@ msgstr ""
"Tss on lista lydetyist tulostimista. Valitse se tulostin, jonka haluat "
"asettaa tai syt laite- tai tiedostonimi syteriville"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7031,7 +7207,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7039,7 +7215,7 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7047,11 +7223,11 @@ msgstr ""
"Valitse portti, johon tulostimesi on kytketty tai syt laitteen tai "
"tiedoston nimi syteriville"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Valitse portti, johon tulostimesi on kytketty."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7059,50 +7235,62 @@ msgstr ""
" (Rinnakkaisportit: /dev/lp0, /dev/lp1, ..., vastaavat LPT1:, LPT2:, ..., 1. "
"USB-tulostin: /dev/usb/lp0, 2. USB-tulostin: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Sinun tytyy valita tai sytt tulostinlaite!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuaalinen asettaminen"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Asennetaan HPOJ-pakettia..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Tarkistetaan laite ja asetetaan HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Asennetaan SANE-paketteja..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Asennan paketteja..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skannataan HP-monikyttlaitteella"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skannataan HP-monikyttlaitteella"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Asetetaan tulostusportti CUPSin saataville..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Luetaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Ulkoisen lpd-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7110,27 +7298,27 @@ msgstr ""
"Jotta voisit kytt ulkoista lpd-tulostinta, sinun pitisi sytt "
"tulostuspalvelimen verkkonimi sek tulostimen nimi kyseisell palvelimella."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Palvelimen verkkonimi"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Palvelimen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ulkoisen tulostimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7142,35 +7330,35 @@ msgstr ""
"tulostuspalvelimen IP-osoite, tulostimen jakonimi sek soveltuva "
"kyttjtunnus, salasana ja tyryhm-tieto."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-palvelimen nimi"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-palvelimen IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Jakonimi"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Tyryhm"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Joko palvelimen nimi tai IP-numero on annettava!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Samba-jaon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7194,7 +7382,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7203,7 +7391,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7211,11 +7399,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7227,27 +7415,27 @@ msgstr ""
"mahdollisesti tulostusjonon nimi sille tulostimelle, jota haluat kytt, "
"sek soveltuva kyttjtunnus ja salasana."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Tulostuspalvelin"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Tulostusjonon nimi"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-palvelimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-jonon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7259,57 +7447,53 @@ msgstr ""
"porttinumero on useimmiten 9100, muissa palvelimissa portti voi vaihdella. "
"Tarkista portti laitteistosi ohjekirjasta."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Tulostinlaitteen verkkonimi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Tulostinlaitteen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Tulostinlaitteen osoite (URI)"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Sinun pit sytt laillinen URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Tulostimen nimi"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Kuvaus"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Paikka"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Valmistellaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7324,26 +7508,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Onko tm oikein?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Valitse kyttjt yksitellen"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Tulostimen mallin valinta"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Mik tulostinmalli sinulla on?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7352,17 +7536,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI winprinterin asettaminen"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7372,11 +7556,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjetin asettaminen"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7384,7 +7568,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7397,7 +7581,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7407,22 +7591,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valitsimen %s pit olla kokonaisluku!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Valitsimen %s pit olla luku!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Valitsin %s on arvoalueensa ulkopuolella!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7431,11 +7615,11 @@ msgstr ""
"Haluatko asettaa tmn tulostimen (\"%s\")\n"
"oletustulostimeksi?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testisivut"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7443,39 +7627,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Ei testisivuja"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Tulosta"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardi testisivu"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Vaihtoehtoinen testisivu (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Vaihtoehtoinen testisivu (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Valokuvatestisivu"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "l tulosta testisivua"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Tulostan testisivu(j)a..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7490,7 +7674,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7498,15 +7682,15 @@ msgstr ""
"Testisivu(t) on lhetetty tulostimelle.\n"
"Voi kest hetken ennen kuin tulostus alkaa.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Toimiko tulostus kunnolla?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Raakatulostin"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7515,15 +7699,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7532,18 +7716,18 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Saadaksesi selville nykyisen tulostimen parametrit lue joko alla oleva lista "
"tai klikkaa \"Tulostuksen valintalista\"-painiketta.%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -7551,7 +7735,7 @@ msgstr ""
"Tss on lista nykyisen tulostinen kytss olevista tulostusvalinnoista:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7560,15 +7744,15 @@ msgstr ""
"Tulostaaksesi tiedoston komentorivilt (pteikkunasta) kyt komentoa \"%s "
"<tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -7576,7 +7760,7 @@ msgstr ""
"Saadaksesi listan nykyisen tulostimen parametreist klikkaa \"Tulostuksen "
"valintalista\"-painiketta."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7585,7 +7769,7 @@ msgstr ""
"Tulostaaksesi tiedoston komentorivilt (pteikkunasta) kyt komentoa \"%s "
"<tiedosto>\". tai \"%s <tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7595,7 +7779,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7604,29 +7788,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sulje"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tulostetaan/skannataan laitteella \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tulostus kynniss tulostimella \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Sulje"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Tulostusparametrien lista"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7634,36 +7829,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Luetaan tulostimen tietoja ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Siirr tulostimen asetukset"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7673,51 +7868,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD ja LPRng eivt tue IPP-tulostimia.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "l siirr tulostimia"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Siirr"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7725,11 +7920,11 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Tulostimen nimi saa sislt vain kirjaimia, numeroita ja alaviivan"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -7738,46 +7933,46 @@ msgstr ""
"Tulostin \"%s\" on jo olemassa,\n"
"haluatko todellakin tuhota olemassa olevat asetukset?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Uuden tulostimen nimi"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Siirrn %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Pivitetn tulostintietoja ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Ulkoisen tulostimen asetukset"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Luon verkkoyhteytt ..."
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Aseta verkkoyhteys nyt"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Verkkotoimintoja ei ole asetettu"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7785,11 +7980,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Jatka asettamatta verkkoyhteytt"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7799,31 +7994,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Kynnistn tulostusjrjestelm uudelleen ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "korkea"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoidi"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Asennan tulostusjrjestelmn turvatasolla %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7838,11 +8033,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Kynnist tulostusjrjestelmn kynnistyksen aikana"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7856,64 +8051,64 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Tarkistan asennetut ohjelmistot..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Poistetaan LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Poistetaan LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Valitse tulostusjono"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Mit tulostusjrjestelm (jonoa) haluat kytt?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Asennan Foomaticin ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Tulostimen asetukset"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Valmistellaan PrinterDrakea ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Haluatko asettaa tulostuksen?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Tulostusjrjestelm: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7921,38 +8116,42 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Pivit tulostinlistaa (nyt kaikki saatavilla olevat CUPS-ettulostimet)"
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Aseta tulostusjrjestelm"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Perustila"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Lopeta"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Haluatko asettaa toisen tulostimen?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Muokkaa tulostimen asetuksia"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -7961,102 +8160,102 @@ msgstr ""
"Tulostin %s\n"
"Mit haluat muokata tst tulostimesta?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Tee se!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tulostusyhteyden tyyppi"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Tulostimen nimi, kuvaus, paikka"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Tulostimen valmistaja, malli, ajuri"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Tulostimen valmistaja, malli"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Aseta tm tulostin oletukseksi"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Tulosta testisivut"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Tied kuinka kytt tt tulostinta"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Poista tulostin"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Poistetaan vanha tulostin \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Oletustulostin"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tulostin \"%s\" on asetettu oletustulostimeksi."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Haluatko todella poistaa tulostimen \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Poistetaan tulostin \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8141,24 +8340,61 @@ msgstr "Salasanat poikkeavat toisistaan. Kokeile uudelleen!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "En voi list osiota _alustetulle_ RAID:lle md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "En voi kirjoittaa tiedostoa %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid eponnistui"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid eponnistui (ehk raid-tykalut puuttuvat?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei riittvsti osioita RAID tasolle %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Tt tasoa tulee kytt varoen. Se tekee jrjestelmstsi helpomman "
+"kytt,\n"
+"mutta hyvin herkn: sit ei tule kytt koneessa joka on kytketty muihin "
+"koneisiin\n"
+"tai Internettiin. Koneessa ei ole salasanoja."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Tll turvallisuustasolla jrjestelmn kytt palvelimena on mahdollista.\n"
+"Jrjestelm voidaan kytt palvelimena joka hyvksyy yhteyksi monilta\n"
+"asiakkailta. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Lisvalinnat"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Optiot"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Kynnist ALSA (Advanced Linux Sound Architecture) nijrjestelm"
@@ -8213,7 +8449,7 @@ msgstr ""
"HardDrake etsii uutta laitteistoa ja mahdollisesti konfiguroi\n"
"uuden/muuttuneen laitteiston."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8292,7 +8528,7 @@ msgstr ""
"Linux Virtual Server, jonka avulla voidaan rakentaa suuritehoinen\n"
"korkean kytettvyyden palvelin."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8368,7 +8604,7 @@ msgstr ""
"NFS ja NIS-protokollat. portmap-palvelin on oltava kynniss\n"
"jrjestelmiss jotka haluavat tarjota nit protokollia."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -8463,7 +8699,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Tiedostojen jako"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Jrjestelm"
@@ -8471,7 +8707,6 @@ msgstr "Jrjestelm"
msgid "Remote Administration"
msgstr "Ethallinta"
-# ../../share/compssUsers
#: ../../services.pm_.c:141
msgid "Database Server"
msgstr "Tietokantapalvelin"
@@ -8579,6 +8814,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandraken hallintapaneeli"
@@ -8677,6 +8913,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Asennan paketteja..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8685,6 +8930,160 @@ msgstr ""
"Osiotaulua ei voida lukea, siin on liikaa virheit :(\n"
"Taulu yritetn korjata nollaamalla se"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Siirr tulostimen asetukset"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Tietokantapalvelin"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Tietokantapalvelin"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Lis kyttj"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Apua"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ei yhteytt"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Poista"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Valitse kaikki"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Lis kyttj"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Mrittelen..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "aseta uudelleen"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Aseta kyttmsi kynnistyslevyke asemaan %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ei levykeasemaa kytettviss"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Virhe!"
@@ -8725,6 +9124,11 @@ msgstr ""
"Vlitse jokaiselle vaiheelle toistetaanko asennus samalla tapaa kuin nyt vai "
"onko kyseinen vaihe manuaalinen"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Valmistelen automaattiasennuslevykett"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8737,12 +9141,12 @@ msgstr ""
"\n"
"Automaattisen asennuksen parametrit lytyvt vasemmalla olevista lohkoista"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Onnittelut!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8750,30 +9154,21 @@ msgstr ""
"Levykkeen luominen onnistui.\n"
"Voit nyt toistaa asennuksesi."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Automaattinen asennus"
# Asennuksen sivuvalikko
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Lis alkio"
# mat
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Poista viimeinen alkio"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -8783,7 +9178,7 @@ msgstr ""
" DrakBackup-raportti \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8795,19 +9190,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8819,62 +9202,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Varmuuskopioi jrjestelmtiedostot..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Kiintolevyn varmuuskopiotiedostot..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Varmuuskopioi kyttjtiedostot..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Kiintolevyn varmuuskopion edistyminen..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Varmuuskopioi muut tiedostot..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"tiedostolistan lhetti FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) FTP-yhteysongelma: varmuuskopion lhettminen FTPn kautta eponnistui.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Virhe lhetettess shkpostia. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Tiedostojen valinta"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lis'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -8882,26 +9289,26 @@ msgstr ""
"\n"
"Valitse kaikki asetukset, jotka tarvitset.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Naill asetuksilla voit varmuuskopioida ja palauttaa kaikki tiedostot /etc-"
"hakemistosta.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Varmuuskopioi systeemitiedostot ( /etc-hakemisto )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Kyt kasvavaa varmuuskopiointia (l korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "l sisllyt kriittisi tiedostoja (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -8909,83 +9316,77 @@ msgstr ""
"Tll valitsimella voit palauttaa mink tahansa version\n"
"/etc-hakemistostasi."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Valitse kaikki ne kyttjt, jotka haluat sisllytt varmuuskopioosi."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "l sisllyt selaimen vlimuistia"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Kyt kasvavia varmuuskopitoita (l korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Kyttjt"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Kyt FTP-yhteytt varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Syt verkkoaseman nimi tai IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Syt hakemisto, johon tmn\n"
"koneen varmuuskopio laitetaan."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Syt kyttjtunnuksesi"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Syt salasanasi"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Muista tm salasana"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP-yhteys"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Salattu yhteys"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Kyt CD/DVD-ROM -levy varmuuskopioille"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Valitse kytettv CD:n koko"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Valitse, jos kytt CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Valitse, jos haluat tyhjent CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -8993,7 +9394,7 @@ msgstr ""
"Valitse, jos haluat tehd CD-levystsi\n"
"kynnistettvn."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9001,16 +9402,21 @@ msgstr ""
"Syt kirjoittavan CD-asemasi laitenimi\n"
"esim: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Kyt nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Syt varmuuskopioinnissa kytettvn laitteen nimi"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Valitse, jos haluat tyhjent CD-RW:n ennen kopiointia"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9018,51 +9424,57 @@ msgstr ""
"Syt suurin sallittu koko\n"
"Drakbackup-varmuuskopiolle"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Syt hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Kyt quotaa varmuuskopiotiedostoille."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Verkko"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CD-ROM / DVD-ROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Kiintolevy / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tyyppi"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "tunneittain"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "pivittin"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "viikoittain"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "kuukausittain"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Kyt daemonia"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9070,7 +9482,7 @@ msgstr ""
"Valitse perkkisten\n"
"varmuuskopioiden aikavli"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9078,72 +9490,68 @@ msgstr ""
"Valitse varmuuskopiointiin\n"
"kytettv media."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Kyt kiintolevy daemonilla"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Kyt FTPt daemonilla"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Varmista ett cron-daemon on mukana kytss olevissa palveluissa."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Lhet raportti jokaisesta varmuuskopiosta shkpostitse :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Mit"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Miss"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Koska"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Lisvalinnat"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup-asetukset"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Valitse, mihin haluat tehd varmuuskopiot"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "kiintolevylle"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "verkon yli"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Valitse mit haluat varmuuskopioida"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Varmuuskopioi jrjestelm"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Varmuuskopioi kyttjt"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Valitse kyttjt yksitellen"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9151,7 +9559,7 @@ msgstr ""
"\n"
"Varmuuskopion lhteet: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9159,7 +9567,7 @@ msgstr ""
"\n"
"- Jrjestelmtiedostot:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9167,7 +9575,7 @@ msgstr ""
"\n"
"- Kyttjtiedostot:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9175,7 +9583,7 @@ msgstr ""
"\n"
"- Muut tiedostot:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9184,16 +9592,45 @@ msgstr ""
"\n"
"- Tallenna kiintolevylle polulle : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Hiiren laite: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Tallenna FTP:ll verkkoasemalle : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Tallenna FTP:ll verkkoasemalle : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9202,7 +9639,7 @@ msgstr ""
"\t\t kyttjtunnus: %s\n"
"\t\t polulla: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9210,19 +9647,19 @@ msgstr ""
"\n"
"- Valitsimet:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tl sisllyt jrjestelmtiedostoja\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tVarmuuskopiot kyttvt: tar ja bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tVarmuuskopiot kyttvt: tar ja gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9231,27 +9668,41 @@ msgstr ""
"\n"
"- Daemon (%s) sislt :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Kiintolevy.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Verkkoon kytten FTP:t.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Verkkoon kytten SSH:ta.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Verkkoon kytten FTP:t.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Verkkoon kytten FTP:t.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9259,7 +9710,7 @@ msgstr ""
"Lista palautettavista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9267,134 +9718,137 @@ msgstr ""
"Lista vahingoittuneista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Poista valinta tai poista se seuraavalla kerralla."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Kaikki valitsemasi tieto on "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " onnistuneesti palautettu paikkaan %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Palauta asetukset "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Ok palauttaakseen muut tiedostot."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Palautettava kyttjlista (vain uusin piv kutakin kyttj kohti on "
"trke)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Tee jrjestelmtiedostoista varmuuskopio ennen:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Valitse pivmr, johon tiedon palauttaminen tehdn"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Kyt kiintolevy varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Syt hakemisto, johon tallennetaan:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP-yhteys"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Salattu yhteys"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Palauta kiintolevylt."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Valitse toinen media, josta palauttaa"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Muu media"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Palauta jrjestelm"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Palauta kyttjt"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "valitse polku, josta palautat (juurihakemiston sijaan)"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Poista kyttjien hakemistot ennen palauttamista."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Palauta kaikki varmuuskopiot"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Mukautettu palautus"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Apua"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Edellinen"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Tallenna"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Tee varmuuskopio"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Palauta"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Seuraava"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -9402,7 +9856,7 @@ msgstr ""
"Tee varmuuskopio ennen kuin yritt palauttaa sen...\n"
"tai tarkista ett tallennuspolku on oikea."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -9412,31 +9866,35 @@ msgstr ""
" raporttipostiasi ei lhetetty\n"
" Konfiguroi sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista asennettavista paketeista"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Seuraavat paketit asennetaan"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Virhe FTP-siirron aikana.\n"
" Korjaa FTP-asetuksesi."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Valitse palautettava tieto..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Valitse varmuuskopioinnissa kytettv media..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Valitse varmuuskopioitava tieto..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9444,76 +9902,76 @@ msgstr ""
"Asetustiedostoa ei lytynyt\n"
"valitse joko Velho tai Kehittynyt."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Kehityksen alla ... odota."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Varmuuskopioi jrjestelmtiedostot"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Varmuuskopioi kyttjtiedostot"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Varmuuskopioi muut tiedostot"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "tiedostoja lhetetn FTP:n yli"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Lhetn tiedostoja..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Tietolista sisllytettvksi CD-ROMiin"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Valitse kirjoittavan CD-aseman nopeus"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Valitse kirjoittavan CD-aseman laitenimi (esim. 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Valitse, jos haluat tehd kynnistettvn CD:n."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Tee heti asetustiedoston varmuuskopio"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Nyt varmuuskopioinnin asetukset."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Varmuuskopioi heti"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9545,7 +10003,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9554,7 +10012,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9595,7 +10053,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9623,14 +10081,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft. Tekij: DUPONT Sebastien <dupont_s\\@epita."
"fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9647,7 +10110,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9687,7 +10150,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9698,7 +10161,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9711,7 +10174,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9755,99 +10218,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s:n asennus eponnistu. Seuraava virhe tapahtui:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Komentorivitykalut"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "kiintolevylle"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeExpert"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Hiiri"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Ulkoinen tulostin"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Jakonimi"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Verkkoasetusten velho"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Tunnistustapa"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakettien valinta"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Odota hetki"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Poistamisen jlkeiset toiminnot"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "portti"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Kuvankaappaukset lytyvt asennuksen jlkeen hakemistosta %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Verkon asetukset (%d-laitteille)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiili: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Poista profiili..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Valitse poistettava profiili:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Uusi profiili..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Koneen nimi:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetyhteys"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tyyppi:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Yhdyskytv:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Liitnt:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Tila:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Odota hetki"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Mrittele internetyhteys..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Lhiverkon asetukset"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ajurit"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Liitnt"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokolla"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Tila"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Aseta paikallisverkko..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Paina thn kynnistksesi asennusohjelman ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Velho..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Toteuta"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Odota hetki... Otetaan asetukset kyttn"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Yhteys muodostettu"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ei yhteytt"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Yhdist..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Katkaise yhteys..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti kytten sinun "
+"vekkoasi"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Sinulla ei ole ainoatakaan asetettua liitynt.\n"
+"Aseta ne ensin klikkaamalla 'Aseta'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Lhiverkon asetukset"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Laite %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Kynnistysprotokolla"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Kynnistetty koneen kynnistmisen yhteydess"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivoi nyt"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivoi nyt"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Tt liityntrajapintaa ei ole viel asetettu.\n"
+"Kynnist pikkunasta lytyv asetusvelho"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Sinulla ei ole ainoatakaan internet-yhteytt.\n"
+"Luo sellainen ensin klikkaamalla 'Aseta'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetyhteyden asetus"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetyhteyden asetus"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Yhteyden nimi: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametrit"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Yhdyskytv"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Verkkokortti"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "kytt: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Moduulin nimi"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Koko"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "kynnistyslevykkeen luonti"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "oletus"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Virhe DrakFloppyssa: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "ytimen versio"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Yleinen"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Asiantuntijan alue"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd:n vapaaehtoiset parametrit"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Lis moduuli"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "pakota"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "jos tarvitaan"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "jt pois scsi-moduulit"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "jt pois raid-moduulit"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Poista moduuli"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Tuloste"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Muodosta levy"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Varmista, ett media on laitteessa %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Laitteessa %s ei ole mediaa.\n"
+"Aseta media."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Prosessia %s ei voitu haarauttaa"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"mkbootdisk:i ei voitu sulkea oikein: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Etsi asennetut kirjasimet"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Poista asetettujen kirjasimien valinta"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "jsenn kaikki kirjasimet"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "kirjasimia ei lytynyt"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "valmis"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "liitetyilt osioilta ei lytynyt ainoatakaan kirjasinta"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Valitse uudelleen oikeat kirjasimet"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "kirjasimia ei lytynyt.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Etsi kirjasimia asennettujen listalta"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kirjasimet kopioi"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "True Type kirjasimien asennus"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "odota kunnes ttmkfdir on valmis..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "True Type -asennus valmis"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Kirjasinten muuntaminen"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "rakennetaan: type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf kirjasinten muunnos"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm kirjasinten muunnos"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Poista vliaikaistiedostot"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Kynnist XFS uudelleen"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Poista kirjasintiedostot"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs:n uudelleenkynnistys"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9862,109 +10757,109 @@ msgstr ""
"kirjasimet voivat lukit X-palvelimen."
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Kirjasinten tuonti"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Hae Windowsin kirjasimet"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Poista kirjasimet levylt"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Lisvalinnat"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Kirjasinlista"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Valitse sovellukset, jotka tukevat kirjasimia :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Yleiset tulostimet"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Valitse kirjasintiedosto tai hakemisto ja klikkaa 'Lis'"
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Asenna lista"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "paina thn, kun olet varma."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "thn jos et ole."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Poista valinta kaikista"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Valitse kaikki"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Poista lista"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Alkutestit"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopioi kirjasimet jrjestelmsi"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Asenna & muunna kirjasimia"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Asennuksen jlkeiset toiminnot"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Poista jrjestelmsssi olevia kirjasimia"
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Poistamisen jlkeiset toiminnot"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetyhteyden jakaminen"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetyhteyden jakaminen on kytss"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9976,31 +10871,31 @@ msgstr ""
"\n"
"Mit haluat tehd?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "poista kytst"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "lopeta"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "aseta uudelleen"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Poistan palvelut kytst..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetyhteyden jakaminen ei ole en kytss."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetyhteyden jakaminen ei ole kytss"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10012,19 +10907,19 @@ msgstr ""
"\n"
"Mit haluat tehd?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ota kyttn"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Otan palvelut kyttn.."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetyhteyden jakaminen on nyt kytss."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10040,32 +10935,32 @@ msgstr ""
"\n"
"Huomaa: tarvitset erityisen verkkokortin pystyttksesi oman paikallisverkon."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liittym %s (kytten moduulia %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Liittym %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Koneessasi ei ole verkkokorttia!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Koneestasi ei lytynyt yhtn verkkokorttia. Aja laitteistonhakutykalu."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Verkkoliittym"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10080,17 +10975,17 @@ msgstr ""
"\n"
"Valmistaudun asettamaan lhiverkkosi asetukset kyseiselle laitteelle."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Verkkoliitnt on jo asetettu"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10106,15 +11001,15 @@ msgstr ""
"Voit asettaa sen mys manuaalisesti, mutta silloin sinun pit tiet, mit "
"olet tekemss."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automaattinen uudelleenasetus"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Nyt nykyiset liitntasetukset"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10131,7 +11026,7 @@ msgstr ""
"IP-mreet: %s\n"
"Ajuri: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10151,33 +11046,33 @@ msgstr ""
"palvelimen puolestasi.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "C-luokan paikallisverkko"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Tmn) DHCP-palvelimen IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Aseta liityntrajapinta ja DHCP-palvelin uudelleen"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Paikallisverkko ei loppunut '.0':aan, tydennetn."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Mahdollinen lhiverkon osoitetrmys lydetty nykyisill asetuksilla %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Palomuuri lydetty!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10185,21 +11080,21 @@ msgstr ""
"Varoitus! Olemassaoleva palomuuri lydetty. Tarvitset mahdollisesti ksin "
"tehtvikorjauksia asennuksen jlkeen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Mrittelen..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Mrittelen komentotiedostot, asennan ohjelmistot, kynnistn palvelimet..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10209,24 +11104,24 @@ msgstr ""
"Voit nyt jakaa internetyhteyden muiden lhiverkon koneiden kanssakyttmll "
"automaattista lhiverkon mrittely (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Asetukset on jo tehty, mutta ne ovat tll hetkell poistettu kytst."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Asetukset on jo tehty ja ne ovat kytss."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetyhteyden jakamista ei ole koskaan asetettu."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Internetyhteyden jakamisen asetukset"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10241,215 +11136,6 @@ msgstr ""
"\n"
"Paina Aseta kynnistksesi asennusohjelman."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Verkon asetukset (%d-laitteille)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiili: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Poista profiili..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Valitse poistettava profiili:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Uusi profiili..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Koneen nimi:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetyhteys"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tyyppi:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Yhdyskytv:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Liitnt:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Tila:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Odota hetki"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Mrittele internetyhteys..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Lhiverkon asetukset"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ajurit"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Liitnt"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokolla"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Tila"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Aseta paikallisverkko..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Paina thn kynnistksesi asennusohjelman ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Velho..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Toteuta"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Odota hetki... Otetaan asetukset kyttn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Yhteys muodostettu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ei yhteytt"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Yhdist..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Katkaise yhteys..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti kytten sinun "
-"vekkoasi"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan asetettua liitynt.\n"
-"Aseta ne ensin klikkaamalla 'Aseta'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Lhiverkon asetukset"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Laite %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Kynnistysprotokolla"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Kynnistetty koneen kynnistmisen yhteydess"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-asiakas"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivoi nyt"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivoi nyt"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Tt liityntrajapintaa ei ole viel asetettu.\n"
-"Kynnist pikkunasta lytyv asetusvelho"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan internet-yhteytt.\n"
-"Luo sellainen ensin klikkaamalla 'Aseta'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetyhteyden asetus"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetyhteyden asetus"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Yhteyden nimi: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrit"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Yhdyskytv"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Verkkokortti"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-asiakas"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Asetan turvatasoa"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrollipaneeli"
@@ -10458,63 +11144,85 @@ msgstr "Kontrollipaneeli"
msgid "Choose the tool you want to use"
msgstr "Valitse haluamasi tykalu"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kaapeli)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "Yhdysvallat (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "Yhdysvallat (kaapeli)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "Yhdysvallat (hrc-kaapeli)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Kiina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japani (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japani (kaapeli)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "It-Eurooppa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ranska"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlanti"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Lnsi-Eurooppa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Uusi-Seelanti"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Etel-Afrikka"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentiina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -10522,27 +11230,44 @@ msgstr ""
"Ole hyv,\n"
"kirjoita kyttmsi tv-normi sek asuinmaa"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV-normi :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Alue :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "TV-kanavien haku kynniss ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Haetaan TV-kanavia"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Tapahtu virhe asennettaessa paketteja:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10586,7 +11311,7 @@ msgstr "Jrjestelmn pivityst ei voida aloittaa!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10596,31 +11321,31 @@ msgstr "Nyt vain valittu piv"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/Tiedosto/_Uusi"
+msgstr "/Tiedosto/Uusi"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>U"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr "/Tiedosto/_Avaa"
+msgstr "/Tiedosto/Avaa"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>A"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/Tiedosto/_Tallenna"
+msgstr "/Tiedosto/Talleta"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>T"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/File/Tallenna _Nimell"
+msgstr "/Tiedosto/Talleta nimell"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -10628,15 +11353,11 @@ msgstr "/Tiedosto/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr "/_Valinnat"
+msgstr "/Asetukset"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/Valinnat/Testi"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ohje"
+msgstr "/Asetukset/Testaa"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
@@ -10698,7 +11419,7 @@ msgstr "Kalenteri"
msgid "Content of the file"
msgstr "Tiedoston sislt"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Posti- ja SMS-hlytys"
@@ -10707,11 +11428,11 @@ msgstr "Posti- ja SMS-hlytys"
msgid "please wait, parsing file: %s"
msgstr "odota hetki, jsennn tiedostoa : %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Posti- ja SMS-hlytyksen asetukset"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -10721,64 +11442,95 @@ msgstr ""
"\n"
"Tll voit pystytt hlyytysjrjestelmn.\n"
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Verkkoalueen nimi"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix-postipalvelin, Inn-nyytispalvelin"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS-palvelin"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Palvelut"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Tulostuspalvelin"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Palveluiden asettaminen"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Saat hlytyksen kun jokin valituista palveluista ei ole en kynniss"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "lataa asetukset"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Saat hlytyksen jos kuorma on tt arvoa suurempi"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "hlytyksen asetukset"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Aseta tapa, jolla jrjestelm hlytt sinulle"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Tallenna nimell.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb:ta ei lytynyt\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuloi kolmatta nppint?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Luetaan tulostimen tietoja ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Etsin laitteita ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10821,6 +11573,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Palomuurin asetukset"
@@ -11156,7 +11920,6 @@ msgid ""
" Try to install them manually."
msgstr ""
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -11165,7 +11928,6 @@ msgstr "Web/FTP"
msgid "Network Computer (client)"
msgstr "Verkkopte (asiakas)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr "NFS-, SMB-, SSH- ja vlipalvelin"
@@ -11178,7 +11940,6 @@ msgstr "Toimistosovellukset"
msgid "Gnome Workstation"
msgstr "Gnome-tyasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr "Tykalut Palm Pilotin tai Visorin liittmiseksi"
@@ -11187,7 +11948,6 @@ msgstr "Tykalut Palm Pilotin tai Visorin liittmiseksi"
msgid "Workstation"
msgstr "Tyasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Firewall/Router"
msgstr "Palomuuri / Reititys"
@@ -11196,7 +11956,6 @@ msgstr "Palomuuri / Reititys"
msgid "Domain Name and Network Information Server"
msgstr "Nimipalvelin ja tietoverkon informaatiopalvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
@@ -11205,12 +11964,10 @@ msgstr ""
"Office-ohjelmistot: tekstinksittely (kword, abiword), taulukkolaskenta "
"(kspread,gnumeric), pdf-lukijat jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "nenksittely: mp3, midi, mikserit, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Kirjoja ja ohjeita Linuxista sek vapaan lhdekoodin ohjelmista"
@@ -11219,7 +11976,6 @@ msgstr "Kirjoja ja ohjeita Linuxista sek vapaan lhdekoodin ohjelmista"
msgid "KDE Workstation"
msgstr "KDE-tyasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, jne"
@@ -11228,14 +11984,12 @@ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, jne"
msgid "Multimedia - Video"
msgstr "Multimedia - Video"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
"Kokoelma tykaluja shkpostiin, nyytisiin, webiin, tiedostonsiirtoon ja "
"jutusteluun"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Database"
msgstr "Tietokanta"
@@ -11252,16 +12006,10 @@ msgstr "Tykalut, jotka helpottavat tietokoneesi asetusten muokkaamista"
msgid "Multimedia - Sound"
msgstr "Multimedia - ni"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Apuohjelmat"
-
#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentaatio"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Komentorivitykalut"
@@ -11282,12 +12030,10 @@ msgstr "Multimedia-asema"
msgid "Configuration"
msgstr "Asetustykalut"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr "Lis graafisia typyti (Gnome, IceWM)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
@@ -11299,12 +12045,10 @@ msgstr ""
msgid "Graphical Environment"
msgstr "Graafinen ymprist"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
msgstr "Tykalut CD:iden luomiseen ja polttamiseen"
@@ -11317,22 +12061,18 @@ msgstr "Toimistotyasema"
msgid "Server"
msgstr "Palvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr "Grafiikkaohjelmistot, kuten Gimp"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "DNS/NIS "
msgstr "DNS/NIS "
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C ja C++ ohjelmointitykalut, kirjastot ja include-tiedostot"
@@ -11341,7 +12081,6 @@ msgstr "C ja C++ ohjelmointitykalut, kirjastot ja include-tiedostot"
msgid "Network Computer server"
msgstr "Verkkotietokone (palvelin)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
msgstr "Shkposti/Groupware/Nyytiset"
@@ -11350,7 +12089,6 @@ msgstr "Shkposti/Groupware/Nyytiset"
msgid "Game station"
msgstr "Pelikone"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Video players and editors"
msgstr "Videon katselu ja editointi"
@@ -11359,12 +12097,10 @@ msgstr "Videon katselu ja editointi"
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafiikka"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr "Pelit: tasohyppely, korttipelit, strategia, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
@@ -11373,17 +12109,10 @@ msgstr ""
"Valikoima tykaluja shkpostin ja nyytisten lukemiseen (pine, mutt, tin...) "
"sek internetiss surffailuun"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Varmuuskopiointi, emulaattorit, jrjestelmn tarkkailu"
-
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Henkilkohtainen kirjanpito"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
@@ -11391,7 +12120,6 @@ msgid ""
msgstr ""
"Graafinen ymprist kyttjystvllisell ohjelmistolla ja tykaluilla."
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Clients for different protocols including ssh"
msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
@@ -11400,27 +12128,22 @@ msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
msgid "Internet gateway"
msgstr "Internetyhdyskytv"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
msgstr "nen sek videon soitto- ja editointiohjelmat"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr "Muut graafiset kyttympristt"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Editors, shells, file tools, terminals"
msgstr "Editorit, komentotulkit, tiedostotykalut, terminaalit"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr "Tilinpito-ohjelmia, kuten gnucash"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Personal Information Management"
msgstr "Henkilkohteisen tiedon hallinta"
@@ -11433,57 +12156,178 @@ msgstr "Multimedia - CD:n poltto"
msgid "Scientific Workstation"
msgstr "Tieteelliinen tyasema"
-#~ msgid "About"
-#~ msgstr "Tietoja"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck eponnistui virhekoodilla %d tai signaalilla %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Nytnohjaimen tunniste: %s\n"
-#~ msgid " Help "
-#~ msgstr " Apua "
+#~ msgid "Choose options for server"
+#~ msgstr "Valitse optioita palvelimelle"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "Monitor not configured"
+#~ msgstr "Nytt ei ole asetettu"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Nytnohjainta ei ole viel asetettu"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Nytn resoluutiota ei ole viel valittu"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr "Ei saantia kytss olevan ytimen moduuleihin (tiedosto %s puuttuu)"
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "kokeile joidenkin parametrien muuttamista"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Tapahtui virhe:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Lopetan %d sekunnissa"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Onko tm oikea asetus?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tapahtui virhe, kokeile joidenkin parametrien vaihtamista"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 palvelin: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Nyt kaikki"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Valmistelen X-Windowin asetuksia"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Mit haluat tehd?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Vaihda nytt"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Change Graphics card"
+#~ msgstr "Vaihda nytnohjainta"
-#~ msgid "None"
-#~ msgstr "Ei asetettu"
+#~ msgid "Change Server options"
+#~ msgstr "Vaihda palvelimen optioita"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Valitse oletustulostin !"
+#~ msgid "Change Resolution"
+#~ msgstr "Vaihda resoluutiota"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Toteuta/Lue uudelleen tulostimet"
+#~ msgid "Show information"
+#~ msgstr "Nyt tiedot"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Voit antaa lisasetuksia modulille %s."
+#~ msgid "Test again"
+#~ msgstr "Kokeile uudelleen"
-#~ msgid "Low"
-#~ msgstr "Matala"
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Kyt kiintolevy daemonilla"
-#~ msgid "Medium"
-#~ msgstr "Keskitaso"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Kyt FTPt daemonilla"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista asennettavista paketeista"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Asetan turvatasoa"
+
+#~ msgid "Graphics card"
+#~ msgstr "Nytnohjain"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Valitse nytnohjain"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Varoitus: nytnohjaimesi testaaminen voi jumittaa tietokoneen"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Perus-VGA, 640x480 @ 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 800x600 @ 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-yhteensopiva, 1024x768 @ 87 Hz lomitettu (ei 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 1024x768 @ 87 Hz lomitettu, 800x600 @ 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Laajennettu SVGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Lomittamaton SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Korkeataajuuksinen SVGA, 1024x768 @ 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Nytt, joka pystyy 1280x1024 @ 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Nytt, joka pystyy 1280x1024 @ 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Nytt, joka pystyy 1280x1024 @ 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Nytt, joka pystyy 1600x1200 @ 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Nytt, joka pystyy 1600x1200 @ 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Valitsemiesi ryhmien kokonaiskoko on suunnilleen %d Mt.\n"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Muutamia parannuksia tll turvaasolla, suurimpana se ett "
-#~ "jrjestelmss\n"
-#~ "on enemmn turvallisuusvaroituksia ja tarkistuksia."
+#~ "Jos haluat asentaa vhemmn kuin tm koko,\n"
+#~ "valitse prosenttiosuus paketeista jonka haluat asentaa.\n"
+#~ "\n"
+#~ "Pieni prosenttiosuus asentaa vain trkeimmt paketit,\n"
+#~ "100%% osuus asentaa kaikki paketit."
-#~ msgid "mount failed"
-#~ msgstr "liittminen eponnistui"
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Sinulla on levyll tilaa vain %d%% paketeista\n"
+#~ ".Jos haulat asentaa vhemmn kuin tmn osan,\n"
+#~ "valitse prosenttiosuus paketeista jotka haluat asentaa.\n"
+#~ "Pieni prosentti asentaa vain trkeimmt paketit, %d%%\n"
+#~ " prosenttiosuus asentaa niin monta pakettia kuin on mahdollista."
-#~ msgid "Boot mode"
-#~ msgstr "Kynnistila"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Voit valita paketit tarkemmin seuraavassa vaiheessa"
-#~ msgid "Export"
-#~ msgstr "Vie"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Prosenttiosuus asennettavista paketeista"
-#~ msgid "click here"
-#~ msgstr "klikkaa thn"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Valitse turvataso"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index abfe2a8c9..d5a5efdce 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -40,8 +40,8 @@
# avec la commande suivante:
# xmodmap -e 'keycode 116 = Multi_key'
#
-# Les guillemets franaises sont et et non ". La guillemet ouvrante
-# est suivie d'un espace inscable et la guillemet fermante est
+# Les guillemets franaises sont et et non ". La guillemet ouvrante
+# est suivie d'un espace inscable et la guillemet fermante est
# prcde du mme type d'espace. Pour le tapper, vous pouvez utiliser
# la combinaison Compose < <, et Compose > >.
#
@@ -53,33 +53,63 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX for MDK 8.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-06 01:36GMT+1\n"
-"Last-Translator: Combelles Christophe <ccomb@club-internet.fr>\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-31 13:31+0200\n"
+"Last-Translator: Guy CLOTILDE <guy.clotilde@wanadoo.fr>\n"
"Language-Team: french <fr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurer les crans sparment"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "taler l'affichage sur plusieurs crans (Xinerama)"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurer seulement la carte %s (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo ou plus"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Choisissez un serveur d'affichage (serveur XFree)"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "serveur XFree"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuration multi-crans"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -87,41 +117,45 @@ msgstr ""
"Votre systme peut utiliser simultanment plusieurs crans.\n"
"Que souhaitez-vous faire?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carte graphique"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr ""
+"Veuillez prciser la quantit de mmoire vido de votre carte graphique"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Choisissez une carte graphique"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuration d'XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Choisissez un serveur d'affichage (serveur XFree)"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quelle configuration d'XFree dsirez-vous utiliser?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "serveur XFree"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configurer les crans sparment"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Choisissez un pilote d'affichage X11"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "taler l'affichage sur plusieurs crans (Xinerama)"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "serveur X11"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurer seulement la carte %s %s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quelle configuration d'XFree dsirez-vous utiliser?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s avec acclration 3D matrielle"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -132,35 +166,18 @@ msgstr ""
"Votre carte vido est supporte par XFree %s. Ce dernier peut tre plus\n"
"performant en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Votre carte vido peut utiliser l'acclration 3D matrielle avec XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s avec acclration 3D matrielle"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Votre carte vido peut utiliser l'acclration 3D matrielle en utilisant\n"
-"XFree %s.\n"
-"Veuillez noter que ce support est EXPRIMENTAL et qu'il peut BLOQUER VOTRE\n"
-"ORDINATEUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s avec support EXPRIMENTAL de l'acclration 3D matrielle"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -175,32 +192,59 @@ msgstr ""
"Votre carte vido est supporte par XFree %s. Ce dernier peut tre plus\n"
"performant en 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Votre carte vido peut utiliser l'acclration 3D matrielle en utilisant\n"
+"XFree %s.\n"
+"Veuillez noter que ce support est EXPRIMENTAL et qu'il peut BLOQUER VOTRE\n"
+"ORDINATEUR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation du pilote d'affichage)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuration d'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
msgstr ""
-"Veuillez prciser la quantit de mmoire vido de votre carte graphique"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Choisissez les options du serveur d'affichage"
+"Dsirez-vous conserver les changements?\n"
+"La configuration actuelle est:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Choisissez un moniteur"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Moniteur"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personnalise"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Gnrique"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Vendeur"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -224,514 +268,325 @@ msgstr ""
"En cas de doute, choisissez un rglage moins performant mais\n"
"sans risque pour votre matriel."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frquence horizontale"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frquence verticale"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Le moniteur n'est pas configur"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La carte graphique n'est pas encore configure"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "La rsolution n'a pas encore t choisie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Dsirez-vous tester la configuration?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Attention: tester cette carte vido peut bloquer votre ordinateur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test de la configuration"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 couleurs (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"essayez de modifier quelques paramtres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 768 couleurs (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Une erreur est survenue:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 536 couleurs (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Fin du test dans %d secondes"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16,7 millions de couleurs (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "tes-vous satisfait(e)?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4,3 milliards de couleurs (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr ""
-"Une erreur est survenue, essayez de modifier\n"
-"quelques paramtres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rsolutions"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rsolution"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Choix de la rsolution et du nombre de couleurs"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Carte graphique: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Serveur XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Davantage"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Annuler"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Tout montrer"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Dsirez-vous tester la configuration?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rsolutions"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test de la configuration"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Type de clavier: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Type de souris: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Priphrique: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Moniteur: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frquence horizontale: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frquence verticale: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Carte graphique: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Indentification de la carte graphique: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Mmoire vido: %sko\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Nombre de couleurs: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rsolution: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Serveur XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Pilote XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Prparation de la configuration de X Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Que dsirez-vous faire?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Choisir un type de moniteur"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Choisir un type de carte graphique"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Changer les options du serveur d'affichage"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Changer la rsolution"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Afficher la configuration actuelle"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Tester nouveau"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Quitter"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Dsirez-vous conserver les changements?\n"
-"La configuration actuelle est:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Interface graphique lors du dmarrage"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Voulez-vous que l'interface graphique soit\n"
"automatiquement lance lors du dmarrage?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Veuillez relancer %s pour activer les changements"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Veuillez vous dconnecter puis presser simultanment les touches Ctrl-Alt-"
-"BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 couleurs (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 768 couleurs (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 536 couleurs (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16,7 millions de couleurs (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4,3 milliards de couleurs (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo ou plus"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 87 Hz entrelac (sans 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 87 Hz entrelac, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA tendu, 800x600 60 Hz, 640x480 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non entrelac, 1024x768 60 Hz, 800x600 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA haute frquence, 1024x768 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frquences supportant le 1280x1024 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frquences supportant le 1280x1024 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frquences supportant le 1280x1024 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Moniteur supportant le 1600x1200 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Moniteur supportant le 1600x1200 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Premier secteur de la partition d'amorage"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Premier secteur du disque (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Installation de SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "O dsirez-vous installer le programme d'amorage?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Installation de LILO ou Grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO en mode texte"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO en mode graphique"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Dmarrer partir de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Principales options du programme d'amorage"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Programme d'amorage utiliser"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installation du programme d'amorage"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Priphrique d'amorage"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne fonctionne pas avec des BIOS anciens)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode vido"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Dlai avant l'activation du choix par dfaut"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Mot de passe"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Mot de passe (vrif)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Protger par mot de passe les options"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "Protection des options"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
-msgstr "Vider le dossier /tmp chaque dmarrage"
+msgstr "Vider le rpertoire /tmp chaque dmarrage"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Prcisez la taille mmoire si ncessaire (%dMo trouvs)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Autoriser plusieurs profils"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Indiquez la quantit de mmoire en Mo"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Le protection des options est inutile sans mot de passe"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Veuillez ressayer"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Les mots de passe ne correspondent pas"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Message de dmarrage"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Dlai de l'Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Dlai d'amorage du noyau"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Autoriser le dmarrage sur CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Autoriser le dmarrage sur l'OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS par dfaut?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -745,83 +600,83 @@ msgstr ""
"\n"
"Sur quel disque est-ce que le systme dmarre?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Voici les diffrentes entres.\n"
"Vous pouvez en rajouter de nouvelles ou changer les entres existantes."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ajouter"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Terminer"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modifier l'lment slectionn"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Quel type de systme voulez-vous ajouter?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Autres systmes (SunOS, etc.)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Autres systmes (MacOS, etc.)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Autres systmes (Windows, etc.)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "fichier noyau"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Partition racine"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "options passes au noyau"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Fichier RamDisk"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Practiv en criture"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Table des partitions"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Peu sr"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Choix par dfaut"
@@ -853,53 +708,77 @@ msgstr "Vous devez spcifier une partition racine"
msgid "This label is already used"
msgstr "Ce label est dj utilis"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Interface(s) %s %s dtecte(s)"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "En possdez-vous d'autres?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Possdez-vous des interfaces %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Oui"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Voir les informations sur le matriel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation du pilote pour la carte %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Vous pouvez maintenant founir des options au module %s.\n"
+"Veuillez noter que les adresses doivent tre prcdes de 0x, comme 0x123"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Vous pouvez maintenant prciser les options du module %s.\n"
+"Les options sont de la forme nom=valeur nom2=valeur2 ....\n"
+"Par exemple, io=0x300 irq=7"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Options du module:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quel pilote %s faut-il essayer?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -917,40 +796,15 @@ msgstr ""
"(La dtection peut dans certains cas bloquer l'ordinateur,\n"
"mais sans lui causer de dommage.)"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Dtection automatique"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spcifier des options"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Vous pouvez maintenant founir des options au module %s.\n"
-"Veuillez noter que les adresses doivent tre gnralement prfixes de 0x, "
-"comme '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Vous pouvez maintenant prciser les options du module %s.\n"
-"Les options sont de la forme nom=valeur nom2=valeur2 ....\n"
-"Par exemple, io=0x300 irq=7"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Options du module:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -959,51 +813,55 @@ msgstr ""
"Le chargement du module %s a chou.\n"
"Dsirez-vous ressayer avec d'autres paramtres?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "accs aux programmes graphiques"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "accs aux outils rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "autoriser su"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "accs aux fichiers d'administration"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "Utilisateur(s) existant(s): %s"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ce mot de passe est trop simple"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Veuillez taper un nom d'utilisateur"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Le nom d'utilisateur ne peut contenir que des lettres minuscules,\n"
"des nombres, ainsi que les caractres - et _"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Ce nom d'utilisateur est trop long"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ce nom d'utilisateur est dj utilis"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ajouter un utilisateur"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -1012,32 +870,32 @@ msgstr ""
"Crer un compte utilisateur\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Accepter"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nom et prnom"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nom d'utilisateur"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Interprteur"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icne"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Connexion automatique"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -1045,94 +903,76 @@ msgstr ""
"Lors du dmarrage, voulez-vous que le systme connecte\n"
"automatiquement un utilisateur par dfaut?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Choisissez l'utilisateur par dfaut:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Choisissez l'environnement graphique:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Choisissez la langue:"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Vous pouvez choisir d'autres langues.\n"
"Elles seront disponibles aprs l'installation."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tout"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Autoriser tous les utilisateurs"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personnalise"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Pas de partage"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Le paquetage %s doit tre install. Voulez-vous l'installer?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Voulez-vous exporter par NFS (protocole Unix) ou SMB (protocole Windows)?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Le paquetage %s, qui est obligatoire, est manquant"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"Voulez-vous permettre aux utilisateurs de partager certains sous-rpertoires de leur rpertoire personnel (/home)?\n"
-"Permettre cela autorisera les utilisateurs cliquer simplement sur Partager dans konqueror et nautilus.\n"
+"Voulez-vous permettre aux utilisateurs de partager certains sous-rpertoires "
+"de leur rpertoire personnel (/home)?\n"
+"Permettre cela autorisera les utilisateurs cliquer simplement sur "
+"Partager dans konqueror et nautilus.\n"
"\n"
"Personnalise permet de choisir pour chaque utilisateur.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annuler"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Lancer userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1140,31 +980,31 @@ msgstr ""
"Le partage par utilisateur utilise le groupe fileshare.\n"
"Vous pouvez utiliser userdrake pour rajouter un utilisater dans ce groupe."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bienvenue aux pirates"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Trs faible"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "leve"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Plus leve"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoaque"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1172,11 +1012,10 @@ msgid ""
msgstr ""
"Ce niveau de scurit doit tre utilis avec prcaution. Il rend votre\n"
"systme plus facile utiliser, aux dpens de la scurit. Il ne devrait\n"
-"donc pas tre utilis sur une machine connecte un rseau ou "
-"l'internet.\n"
+"donc pas tre utilis sur une machine connecte un rseau ou Internet.\n"
"Aucun mot de passe n'est requis."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1184,15 +1023,15 @@ msgstr ""
"Les mots de passe sont maintenant requis. Pour autant, il n'est pas\n"
"recommand d'utiliser cette machine sur un rseau."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"Ceci est le niveau de scurit standard recommand pour un ordinateur \n"
-"utilis pour se connecter l'internet en tant que client."
+"utilis pour se connecter Internet en tant que client."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1200,13 +1039,14 @@ msgstr ""
"Il y a dj des restrictions, et des vrifications automatiques sont "
"effectues chaque nuit."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Avec ce niveau de scurit, l'utilisation de cette machine en tant que\n"
"serveur devient envisageable. La scurisation est suffisamment forte pour\n"
@@ -1214,41 +1054,41 @@ msgstr ""
"seulement connecte en tant que client sur Internet, vous devriez plutt\n"
"choisir un niveau infrieur."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ce niveau de scurit est bas sur le prcdent mais le systme est "
"maintenant\n"
"compltement clos (vu du rseau). La scurit est maximale."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Choisissez le niveau de scurit"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Niveau de scurit"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Utilisation de libsafe pour les serveurs"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Une bibliothque qui protge contre les attaques par dbordement de pile.\n"
"(les plus frquentes)"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Administrateur scurit (identifiant (login) ou adresse email)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1265,52 +1105,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bienvenue dans GRUB, le chargeur de systemes d'exploitation"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Utilisez les touches %c et %c pour faire votre choix."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Appuyez sur <Entree> pour demarrer, sur <e> pour modifier la"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commande de demarrage ou sur <c> pour utiliser la ligne de commande."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Demarrage automatique dans %d secondes."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
-msgstr "il n'y a pas assez de place dans le dossier /boot"
+msgstr "il n'y a pas assez de place dans le rpertoire /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Bureau"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menu Dmarrer"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1325,15 +1165,19 @@ msgstr "pas d'aide disponible pour l'instant.\n"
msgid "Boot Style Configuration"
msgstr "Configuration du style de dmarrage"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fichier"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fichier/_Quitter"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1368,14 +1212,14 @@ msgstr "Menu d'amorage"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Le choix du systme d'exploitation est actuellement gr par %s.\n"
"Vous pouvez ici modifier la liste du menu d'amorage."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configurer"
@@ -1385,7 +1229,7 @@ msgid "System mode"
msgstr "Choix pour l'interface utilisateur"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lancer l'interface graphique au dmarrage"
#: ../../bootlook.pm_.c:148
@@ -1396,14 +1240,16 @@ msgstr "Ne pas connecter automatiquement un utilisateur"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Connexion automatique (choisir utilisateur et environnement)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1451,7 +1297,7 @@ msgstr "Impossible de faire des captures d'cran avant le partitionnement"
msgid "Screenshots will be available after install in %s"
msgstr "Les captures d'cran seront disponibles aprs l'installation dans %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "France"
@@ -1459,7 +1305,7 @@ msgstr "France"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgique"
@@ -1483,11 +1329,12 @@ msgstr "Norvge"
msgid "Sweden"
msgstr "Sude"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Pays-Bas"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italie"
@@ -1495,7 +1342,7 @@ msgstr "Italie"
msgid "Austria"
msgstr "Autriche"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "tats-Unis"
@@ -1505,8 +1352,8 @@ msgstr ""
"Avant d'utiliser un logiciel de partitionnement de disques,\n"
"il est prudent de faire une copie de sauvegarde de vos donnes!!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "MISE EN GARDE"
@@ -1519,11 +1366,12 @@ msgstr ""
"Si vous voulez utiliser aboot, vous devez rserver\n"
"un espace libre d'au moins 2048 secteurs au dbut du disque."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Erreur"
@@ -1531,11 +1379,11 @@ msgstr "Erreur"
msgid "Wizard"
msgstr "Assistant"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Choisissez une action"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1547,77 +1395,77 @@ msgstr ""
"Vous devriez la rduire pour pouvoir crer d'autres partitions:\n"
"cliquez sur la partition puis sur Redimensionner."
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Veuillez cliquer sur une partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Dtails"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "SF journalis"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Vide"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Autre"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Types des systmes de fichiers:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crer"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilisez plutt %s"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Supprimer"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Cliquez d'abord sur Dmonter"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1625,67 +1473,72 @@ msgstr ""
"Aprs avoir modifi le type de la partition %s, toutes les donnes\n"
"prsentes sur cette partition seront perdues."
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Choisissez une partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Choisissez une autre partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Quitter"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Passer en mode expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Passer en mode normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "tat prcdent"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Dsirez-vous tout de mme continuer?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Quitter sans sauvegarder"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Dsirez-vous rellement quitter sans crire la table des partitions?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Dsirez-vous sauvegarder les modifications de /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Partitionnement automatique"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Supprimer toutes les partitions"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Davantage"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informations sur les disques durs"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Toutes les partitions primaires sont utilises"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Impossible d'ajouter une partition"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1693,31 +1546,31 @@ msgstr ""
"Pour pouvoir utiliser plus de partitions, vous devez d'abord en supprimer "
"une pour la remplacer par une partition tendue."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Sauvegarder la table des partitions..."
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Charger une table des partitions..."
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Deviner automatiquement la table des partitions"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Relire la table des partitions"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Auto-montage des priphriques amovibles"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Slectionnez un fichier"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1726,11 +1579,11 @@ msgstr ""
"n'a pas la mme taille que le disque.\n"
"Dsirez-vous tout de mme continuer?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Attention"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1738,122 +1591,129 @@ msgstr ""
"Insrez une disquette dans le lecteur.\n"
"Toutes les donnes prsentes sur cette disquette seront perdues."
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tentative de lecture de l'organisation des partitions..."
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Informations dtailles"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Point de montage"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Options"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionner"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Dplacer"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formater"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Monter"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ajouter au RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ajouter au LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Dmonter"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Supprimer du RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Supprimer du LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifier le RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Utiliser pour loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crer une nouvelle partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Secteur de dbut: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Taille en Mo: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Type du systme de fichiers: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Point de montage: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Prfrence: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Supprimer le fichier loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Changement du type de partition"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quel systme de fichiers dsirez-vous utiliser?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Passage de ext2 ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "O dsirez-vous monter le fichier loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "O dsirez-vous monter la partition %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1861,131 +1721,136 @@ msgstr ""
"Il est impossible de dslectionner ce point de montage car il est\n"
"utilis pour le loopback. Veuillez supprimer ce dernier d'abord."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calcul des limites du systme de fichiers FAT ..."
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionnement"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Cette partition ne peut pas tre redimensionne"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"Toutes les donnes prsentes sur cette partition\n"
"devraient avoir t sauvegardes."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Aprs avoir redimensionn la partition %s, toutes les donnes prsentes\n"
"sur cette partition seront perdues"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Choisissez la nouvelle taille"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nouvelle taille en Mo: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Sur quel disque voulez-vous la dplacer?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Secteur"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Sur quel secteur voulez-vous la dplacer?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Dplacement"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Dplacement de la partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Choisissez un RAID existant"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "Nouveau"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Choisissez un LVM existant"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nom LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Cette partition ne peut pas tre utilise pour du loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nom du fichier loopback:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Donnez un nom de fichier"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ce fichier est dj utilis par un autre loopback.\n"
"Veuillez en choisir un autre."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Le fichier existe dj. Faut-il l'utiliser?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Options de montage"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Divers"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "Priphrique"
+msgstr "priphrique"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "Niveau de RAID"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "Taille de bloc"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Soyez prudent: cette opration est dangereuse."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Quel type de partitionnement?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Le paquetage %s doit tre install. Voulez-vous l'installer?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1993,11 +1858,11 @@ msgid ""
"need /boot"
msgstr ""
"Le programme d'amorage LILO ne peut pas fonctionner si vous placez\n"
-"la partition du dossier /boot aussi loin sur le disque (c'est--dire\n"
+"la partition du rpertoire /boot aussi loin sur le disque (c'est--dire\n"
"au del du 1024me cylindre). Si vous n'utilisez pas LILO, vous n'avez\n"
-"pas besoin de partition spcifique pour le dossier /boot."
+"pas besoin de partition spcifique pour le rpertoire /boot."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2006,9 +1871,10 @@ msgid ""
msgstr ""
"Attention, votre partition racine se situe au del du 1024me cylindre.\n"
"Si vous comptez utiliser le programme d'amorage LILO, vous devez crer\n"
-"une autre partition juste pour le dossier /boot en de du 1024me cylindre."
+"une autre partition juste pour le rpertoire /boot en de du 1024me "
+"cylindre."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2016,135 +1882,135 @@ msgid ""
msgstr ""
"Attention, vous avez choisi une partition RAID logiciel comme partition\n"
"racine. Pour que votre systme puisse dmarrer, vous devez ajouter\n"
-"une partition non RAID, spcifique pour le dossier /boot."
+"une partition non RAID, spcifique pour le rpertoire /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
"La table des partitions de %s va maintenant tre crite sur le disque!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Vous devez redmarrer pour que les modifications soient prises en compte"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Aprs avoir format la partition %s, toutes les donnes prsentes\n"
"sur cette partition seront perdues."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatage"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatage du fichier loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatage de la partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Cacher les fichiers"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Dplacer les fichiers sur la nouvelle partition"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-"Le dossier %s contient dj des donnes\n"
+"Le rpertoire %s contient dj des donnes\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Dplacement des fichiers sur la nouvelle partition..."
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copie de %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Suppression de %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partition %s est maintenant connue comme %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Priphrique: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettre de lecteur DOS suppose: %s:\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nom: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Dbut: secteur %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Taille: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s secteurs"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylindre %d %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formate\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Non formate\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Monte\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "Appartient au RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2153,7 +2019,7 @@ msgstr ""
"Fichier(s) loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2161,27 +2027,27 @@ msgstr ""
"Partition d'amorage par dfaut\n"
"(pour DOS/Windows, pas pour LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "RAID de niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Taille de bloc %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "disques RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom du fichier loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2193,7 +2059,7 @@ msgstr ""
"soit une partition de pilotes systmes,\n"
"vous ne devriez pas la toucher.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2205,62 +2071,62 @@ msgstr ""
"est ncessaire si vous avez plusieurs\n"
"systmes d'exploitation. \n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Taille: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Gomtrie: %s cylindres, %s ttes, %s secteurs\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Information: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "disques LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Table des partitions de type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "sur bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "sur canal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Options: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Clef de chiffrement du systme de fichiers"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Choisissez la clef de chiffrement du systme de fichiers"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Cette clef de chiffrement est trop courte (minimum %d caractres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Les clefs de chiffrement ne correspondent pas"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Clef de chiffrement"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Clef de chiffrement (confirmation)"
@@ -2269,35 +2135,62 @@ msgid "Change type"
msgstr "Changer le type"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Veuillez cliquer sur une source"
+msgid "Please click on a medium"
+msgstr "Veuillez cliquer sur un mdium"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Impossible de se connecter avec le nom %s (mauvais mot de passe?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domaine d'authentification ncessaire"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Un autre"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Quel nom d'utilisateur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Veuillez entrez vos nom d'utilisateur, mot de passe et nom de domaine pour "
+"accder ce serveur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Nom d'utilisateur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domaine"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Rechercher les serveurs"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "le formatage au format %s de %s a chou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Impossible de formater %s au format %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "le montage de la partition %s dans le rpertoire %s a chou"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck a chou avec le code de sortie %d ou le signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "Le dmontage de %s a chou: %s"
@@ -2314,72 +2207,318 @@ msgstr "avec /usr"
msgid "server"
msgstr "serveur"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Les partitions JFS doivent faire plus de 16 Mo."
+msgstr "Les partitions JFS doivent faire au moins 16Mo."
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Les partitions ReiserFS doivent faire plus de 32 Mo."
+msgstr "Les partitions ReiserFS doivent faire au moins 32Mo."
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Les points de montage doivent commencer par /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Le point de montage %s est dj utilis\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser une partition logique LVM pour le point de "
"montage %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
-msgstr "Ce dossier devrait rester dans la partition racine"
+msgstr "Ce rpertoire doit rester dans la partition racine"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Vous avez besoin d'un vrai systme de fichiers (ext2, reiserfs) pour ce "
-"point de montage\n"
+"Vous avez besoin d'un vrai systme de fichiers (ext2/ext3, reiserfs, xfs, ou "
+"jfs) pour ce point de montage\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser de systme de fichiers crypt pour le point de "
"montage %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Pas assez d'espace libre pour le partitionnement automatique"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Rien faire"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erreur lors de l'ouverture de %s en criture: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Une erreur est survenue: aucun priphrique valide n'a t trouv pour\n"
"crer de nouvelles partitions. Veuillez vrifier votre matriel."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Vous n'avez dfini aucune partition!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Auto-dtecter"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Inconnu|Gnrique"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Inconnu|CPH05X (bt878) [nombreux vendeurs]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Inconnu|CPH06X (bt878) [nombreux vendeurs]"
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+"Pour la plupart des cartes TV rcentes, le module bttv du noyau GNU/Linux "
+"auto-dtecte tout seul les bons paramtres.\n"
+"Si votre carte est mal dtecte, vous pouvez donner les types de tuner et de "
+"carte corrects ici. Vous n'avez qu'a slectionner les paramtres ncessaires "
+" votre carte TV si ncessaire."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Modle de carte :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "Rglage de la BVP (PLL)"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Nombre de tampons de capture"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "nombre de tampons pour la capture via mmap()"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Type de tuner :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Support de la radio :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "activer le support de la radio"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Quitter"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Aide"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Aide..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_A propos..."
+
+#: ../../harddrake/ui.pm_.c:22
+msgid "Model"
+msgstr "Modle"
+
+#: ../../harddrake/ui.pm_.c:22
+msgid "hard disk model"
+msgstr "Modle de disque dur"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "Channel"
+msgstr "Canal"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr "Nappe EIDE/Canal SCSI"
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+"ceci est le bus physique sur lequel le priphrique est connect (ex: PCI, "
+"USB, ...)"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Module"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "le module du noyau GNU/Linux qui gre ce priphrique"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Classe de matriel"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr "classe de matriel"
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Description"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr "ce champs dcrit le priphrique"
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "IDs du matriel"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+"- pphriques PCI et USB: liste des identifiants vendeur, pphriques, sous-"
+"vendeur, sous-pphriques PCI/USB"
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Position sur le bus"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+"- pphriques PCI: slot, pphriques et fonction PCI de cette carte\n"
+"- pphriques EIDE: ce pphriques est soit maitre soit esclave\n"
+"- pphriques SCSI: the bus et l'identifiant SCSI"
+
+#: ../../harddrake/ui.pm_.c:38
+msgid "Old device file"
+msgstr "Ancien nom de pphrique"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr "ancien nom de priphrique statique utilis dans le paquetage dev"
+
+#: ../../harddrake/ui.pm_.c:40
+msgid "New devfs device"
+msgstr "Nouveau priphrique devfs"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "nouveau nom de priphrique dynamique gnr par le kernel"
+
+#: ../../harddrake/ui.pm_.c:42
+msgid "Number of buttons"
+msgstr "Nombre de bouttons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr "le nom du vendeur de ce priphrique"
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 version"
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Matriel dtect"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informations"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Lancer l'outil de configuration"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Configuration du module"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Dtection en cours"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Veuillez patienter"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "matre"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "esclave"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Lancement de %s..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "A propos de Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Harddrake est l'outil de configuration Mandrake du matriel.\n"
+"Version:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Auteur:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Aide de Harddrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+"Description des champs:\n"
+"\n"
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2395,7 +2534,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2411,36 +2550,36 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
-"GNU/Linux est un systme multi-utilisateurs, ce qui signifie gnralement que chaque\n"
-"utilisateur peut avoir des prfrences diffrences, ses propres fichiers,\n"
-"etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
+"GNU/Linux est un systme multi-utilisateurs, ce qui signifie generalement\n"
+"que chaque utilisateur peut avoir des preferences differences, ses propres\n"
+"fichiers, etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
"Contrairement root qui a tous les droits, les utilisateurs que vous\n"
"ajouterez ici n'auront que des permissions pour agir sur leurs propres\n"
"fichiers exclusivement.\n"
"\n"
-"L'utilisateur/administrateur devrait galement se crer un compte\n"
+"L'utilisateur/administrateur devrait egalement se creer un compte\n"
"normal. C'est travers cet utilisateur que celui-ci devrait se\n"
"connecter pour accomplir ses tches quotidiennes. Car, bien qu'il soit\n"
-"pratique d'avoir tous les accs, cette situation peut galement engendrer\n"
-"des situations dsastreuses si un fichier est dtruit par inadvertance. Un\n"
+"pratique d'avoir tous les accs, cette situation peut egalement engendrer\n"
+"des situations desastreuses si un fichier est detruit par inadvertance. Un\n"
"utilisateur normal n'ayant pas accs aux fichiers sensibles, ne peut causer\n"
"de dommages majeurs.\n"
"\n"
"Il faut d'abord entrer le vrai nom de la personne. videmment, vous pouvez\n"
-"y inscrire n'importe quoi. DrakX prendra le premier mot insr et le\n"
-"transposera comme Nom de login. C'est le nom qui sera utilis pour se\n"
+"y inscrire n'importe quoi. DrakX prendra le premier mot insere et le\n"
+"transposera comme Nom de login. C'est le nom qui sera utilise pour se\n"
"connecter au systme. Vous pouvez le modifier. Il faut maintenant entrer un\n"
"mot de passe. Celui-ci n'est pas aussi crucial que le mot de passe de\n"
"root, mais ce n'est pas une raison pour rentrer 123456. Aprs tout,\n"
-"ceci mettrait vos fichiers en pril.\n"
+"ceci mettrait vos fichiers en peril.\n"
"\n"
"Si vous cliquez Accepter, il vous sera possible d'ajouter d'autres\n"
-"utilisateurs. Crez un utilisateur diffrent pour chaque personne devant\n"
-"utiliser votre ordinateur. Une fois chaque utilisateur dfini, cliquez sur\n"
+"utilisateurs. Creez un utilisateur different pour chaque personne devant\n"
+"utiliser votre ordinateur. Une fois chaque utilisateur defini, cliquez sur\n"
"Terminer.\n"
"\n"
-"En cliquant sur Avanc頻, vous pourrez slectionner un shell\n"
-"diffrent pour cet utilisateur (bash est assign par dfaut)."
+"En cliquant sur Avance, vous pourrez selectionner un shell\n"
+"different pour cet utilisateur (bash est assigne par defaut)."
#: ../../help.pm_.c:41
msgid ""
@@ -2516,10 +2655,10 @@ msgid ""
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
-"Les paquetages requis l'installation de Mandrake Linux sont distribus sur plusieurs\n"
-"CDROM. Heureusement, DrakX connat l'emplacement de chacun des paquetages.\n"
-"Il jectera celui prsent dans le lecteur et vous demandera d'insrer le\n"
-"CDROM appropri, selon le cas."
+"Les paquetages requis l'installation de Mandrake Linux sont distribues\n"
+"sur plusieurs CDROM. Heureusement, DrakX connat l'emplacement de chacun\n"
+"des paquetages. Il ejectera celui present dans le lecteur et vous demandera\n"
+"d'inserer le CDROM approprie, selon le cas."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2537,9 +2676,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2576,61 +2714,62 @@ msgid ""
"groups to avoid installing any new package. This is useful for repairing or\n"
"updating an existing system."
msgstr ""
-"C'est maintenant le moment de choisir les paquetages qui seront installs\n"
-"sur votre systme. Sachez que Mandrake Linux contient plusieurs milliers de paquetages \n"
-"installer, et qu'il n'est pas ncessaire de tous les connatre par coeur.\n"
+"C'est maintenant le moment de choisir les paquetages qui seront installes\n"
+"sur votre systme. Sachez que Mandrake Linux contient plusieurs milliers de\n"
+"paquetages installer, et qu'il n'est pas necessaire de tous les connatre\n"
+"par coeur.\n"
"\n"
"Si vous tes en train de faire une installation normale partir d'un\n"
-"CDROM, il vous sera d'abord demand de spcifier quel CD vous avez (en mode\n"
-"Expert). Vrifier les tiquettes et cliquez sur les botes leur tant\n"
-"associes. Cliquez sur OK, lorsque vous tes prt continuer.\n"
+"CDROM, il vous sera d'abord demande de specifier quel CD vous avez (en mode\n"
+"Expert). Verifier les etiquettes et cliquez sur les botes leur etant\n"
+"associees. Cliquez sur OK, lorsque vous tes prt continuer.\n"
"\n"
-"Les paquetages sont regroups selon la nature de l'installation. Les\n"
-"groupes sont diviss en quatre sections principales:\n"
+"Les paquetages sont regroupes selon la nature de l'installation. Les\n"
+"groupes sont divises en quatre sections principales :\n"
"\n"
" * Station de travail: si vous comptez utiliser votre machine ainsi,\n"
-"slectionner un ou plusieurs groupes y correspondant.\n"
+"selectionner un ou plusieurs groupes y correspondant.\n"
"\n"
-" * Environnement graphique: ce groupe vous permettra de dterminer quel\n"
+" * Environnement graphique: ce groupe vous permettra de determiner quel\n"
"environnement graphique vous voulez avoir sur votre systme. videmment, il\n"
"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
"\n"
-" * Dveloppement: si votre systme sera utilis pour la programmation,\n"
-"choisissez les groupes dsirs.\n"
+" * Developpement: si votre systme sera utilise pour la programmation,\n"
+"choisissez les groupes desires.\n"
"\n"
" * Serveur: finalement, si vous systme doit agir en tant que serveur,\n"
-"vous pourrez slectionner les services que vous voulez installer.\n"
+"vous pourrez selectionner les services que vous voulez installer.\n"
"\n"
-" * Environnement graphique: ce groupe vous permettra de dterminer quel\n"
+" * Environnement graphique: ce groupe vous permettra de determiner quel\n"
"environnement graphique vous voulez avoir sur votre systme. videmment, il\n"
"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
"\n"
"En plaant votre souris au dessus d'un nom de groupe, vous verrez\n"
-"apparatre une courte description de ce groupe. Si vous dslectionnez tous\n"
+"apparatre une courte description de ce groupe. Si vous deselectionnez tous\n"
"les groupes lors d'une installation standard (par opposition une mise \n"
-"jour), un dialogue apparatra proposant diffrentes options pour une\n"
-"installation minimale:\n"
+"jour), un dialogue apparatra proposant differentes options pour une\n"
+"installation minimale :\n"
"\n"
-" * Avec X: installe le moins de paquetages possible pour avoir un\n"
-"environnement de travail graphique;\n"
+" * Avec X : installe le moins de paquetages possible pour avoir un\n"
+"environnement de travail graphique ;\n"
"\n"
-" * Avec la documentation de base: installe le systme de base plus\n"
+" * Avec la documentation de base : installe le systme de base plus\n"
"certains utilitaires de base et leur documentation. Cette installation est\n"
-"utilisable comme base pour monter un serveur;\n"
+"utilisable comme base pour monter un serveur ;\n"
"\n"
-" * Installation vraiment minimale: installera le strict minimum\n"
-"ncessaire pour obtenir un systme fonctionnel, en ligne de commande. Cette\n"
-"installation prends peu prs 65Mo.\n"
+" * Installation vraiment minimale : installera le strict minimum\n"
+"necessaire pour obtenir un systme GNU/Linux fonctionnel, en ligne de\n"
+"commande. Cette installation prends peu prs 65Mo.\n"
"\n"
-"Vous pouvez finalement cocher l'option Slection individuelle des\n"
+"Vous pouvez finalement cocher l'option Selection individuelle des\n"
"paquetages. Cette option est utiliser si vous connaissez exactement le\n"
-"paquetage dsir ou si vous voulez avoir le contrle total de votre\n"
+"paquetage desire ou si vous voulez avoir le contrle total de votre\n"
"installation.\n"
"\n"
-"Si vous avez dmarr l'installation en mode \"mise jour\", vous pouvez\n"
-"\"d-slectionner\" tous les groupes afin d'viter l'installation de\n"
+"Si vous avez demarre l'installation en mode \"mise jour\", vous pouvez\n"
+"\"de-selectionner\" tous les groupes afin d'eviter l'installation de\n"
"nouveaux programmes. Cette option est trs utile pour restaurer un systme\n"
-"dfectueux."
+"defectueux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2671,41 +2810,41 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
-"Finalement, si vous avez choisi de slectionner individuellement les\n"
-"paquetages installer, DrakX vous prsentera un arbre contenant tous les\n"
-"paquetages, classs par groupes et sous-groupes. En naviguant travers\n"
-"l'arbre, vous pouvez slectionner des groupes, des sous-groupes ou des\n"
+"Finalement, si vous avez choisi de selectionner individuellement les\n"
+"paquetages installer, DrakX vous presentera un arbre contenant tous les\n"
+"paquetages, classes par groupes et sous-groupes. En naviguant travers\n"
+"l'arbre, vous pouvez selectionner des groupes, des sous-groupes ou des\n"
"paquetages individuels.\n"
"\n"
-"Ds que vous slectionnez un paquetage dans l'arbre, une descriptions\n"
-"apparat droite. Une fois votre slection complte, cliquez sur\n"
+"Ds que vous selectionnez un paquetage dans l'arbre, une descriptions\n"
+"apparat droite. Une fois votre selection completee, cliquez sur\n"
"Installation pour lancer le processus. Soyez patient, car en fonction\n"
-"du type d'installation choisi ou du nombre de paquetages slectionns, le\n"
-"temps requis peut tre substantiellement diffrent. Une estimation du temps\n"
-"requis est prsente sur l'cran en cours d'opration afin de vous\n"
-"permettre d'valuer de combien de temps vous disposez pour prendre votre\n"
-"djeuner.\n"
-"\n"
-"!! Si un logiciel serveur a t slectionn, vous devrez confirmer que vous\n"
-"voulez vraiment que celui-ci soit install. Sous Mandrake, par dfaut, tous\n"
-"les serveurs installs sont lancs au dmarrage. Malgr tous les efforts\n"
-"investis pour vous livrer une distribution Linux scuritaire, il est\n"
-"possible que certaines failles de scurit affectes les serveurs installs\n"
-"au-del de la date de publication. Si vous ne savez pas prcisment quoi\n"
-"sert un serveur en particulier ou pourquoi il est install, cliquez sur\n"
-"NON. En cliquant sur OUI, le serveur sera install et le service\n"
-"rendu disponible au dmarrage. !!\n"
-"\n"
-"L'option Dpendances automatiques dsactive les avertissements qui\n"
-"apparaissent chaque fois que l'installeur slectionne un nouveau paquet.\n"
-"Ces avertissements surviennent parce que DrakX a dtermin que pour qu'un\n"
-"paquetage soit fonctionnel, il lui en faut un autre dont il est dpendant.\n"
+"du type d'installation choisi ou du nombre de paquetages selectionnes, le\n"
+"temps requis peut tre substantiellement different. Une estimation du temps\n"
+"requis est presentee sur l'ecran en cours d'operation afin de vous\n"
+"permettre d'evaluer de combien de temps vous disposez pour prendre votre\n"
+"dejeuner.\n"
+"\n"
+"!! Si un logiciel serveur a ete selectionne, vous devrez confirmer que vous\n"
+"voulez vraiment que celui-ci soit installe. Sous Mandrake, par defaut, tous\n"
+"les serveurs installes sont lances au demarrage. Malgre tous les efforts\n"
+"investis pour vous livrer une distribution Linux securitaire, il est\n"
+"possible que certaines failles de securite affectes les serveurs installes\n"
+"au-del de la date de publication. Si vous ne savez pas precisement quoi\n"
+"sert un serveur en particulier ou pourquoi il est installe, cliquez sur\n"
+"NON. En cliquant sur OUI, le serveur sera installe et le service\n"
+"rendu disponible au demarrage. !!\n"
+"\n"
+"L'option Dependances automatiques desactive les avertissements qui\n"
+"apparaissent chaque fois que l'installeur selectionne un nouveau paquet.\n"
+"Ces avertissements surviennent parce que DrakX a determine que pour qu'un\n"
+"paquetage soit fonctionnel, il lui en faut un autre dont il est dependant.\n"
"\n"
"La petite icne de disquette qui apparat au bas de la liste permet de\n"
-"rcuprer une liste de paquetages slectionns durant une autre\n"
-"installation. En cliquant dessus, on vous demandera d'insrer la disquette\n"
-"cre lors d'une installation prcdente. Voir la deuxime note de la\n"
-"dernire tape afin de savoir comment crer une telle disquette."
+"recuperer une liste de paquetages selectionnes durant une autre\n"
+"installation. En cliquant dessus, on vous demandera d'inserer la disquette\n"
+"creee lors d'une installation precedente. Voir la deuxime note de la\n"
+"dernire etape afin de savoir comment creer une telle disquette."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2732,27 +2871,27 @@ msgid ""
"If you wish to configure the network later after installation, or if you\n"
"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Si vous dsirez connecter votre systme un rseau ou l'Internet,\n"
-"cliquez sur OK. L'autodtection des priphriques rseau et modems sera\n"
-"alors lance. Si cette dtection choue, dcochez la case Utiliser\n"
-"l'autodtection. Vous pouvez aussi choisir de ne pas configurer le\n"
-"rseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
+"Si vous desirez connecter votre systme un reseau ou l'Internet,\n"
+"cliquez sur OK. L'autodetection des peripheriques reseau et modems sera\n"
+"alors lancee. Si cette detection echoue, decochez la case Utiliser\n"
+"l'autodetection. Vous pouvez aussi choisir de ne pas configurer le\n"
+"reseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
"Annuler.\n"
"\n"
-"Les types de connexion supportes sont: modem tlphonique, modem ISDN,\n"
-"connexion ADSL, modem cble ou simplement LAN (rseau ethernet).\n"
+"Les types de connexion supportees sont : modem telephonique, modem ISDN,\n"
+"connexion ADSL, modem cble ou simplement LAN (reseau ethernet).\n"
"\n"
-"Nous ne dtaillerons pas ici chacune des configurations possible. Assurez\n"
+"Nous ne detaillerons pas ici chacune des configurations possible. Assurez\n"
"vous seulement que vous avez toutes les informations de votre fournisseur\n"
-"de service Internet porte de main.\n"
+"de service Internet portee de main.\n"
"\n"
-"Vous pouvez consulter le chapitre du Guide de l'utilisateur concernant les connexions Internet\n"
-"pour plus de dtails propos des configurations spcifiques de chaque type\n"
-"de connexion. Vous pouvez galement configurer votre connexion Internet\n"
-"une fois l'installation termine.\n"
+"Vous pouvez consulter le chapitre du Guide de l'utilisateur concernant\n"
+"les connexions Internet pour plus de details propos des configurations\n"
+"specifiques de chaque type de connexion. Vous pouvez egalement configurer\n"
+"votre connexion Internet une fois l'installation terminee.\n"
"\n"
-"Si vous dsirez configurer votre rseau plus tard ou si vous avez termin\n"
-"l'installation de votre rseau, cliquez sur Annuler."
+"Si vous desirez configurer votre reseau plus tard ou si vous avez termine\n"
+"l'installation de votre reseau, cliquez sur Annuler."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2774,20 +2913,20 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
-"Vous pouvez maintenant choisir les services disponibles au dmarrage de\n"
+"Vous pouvez maintenant choisir les services disponibles au demarrage de\n"
"votre systme.\n"
"\n"
-"Ici sont prsents tous les services disponibles avec l'installation en\n"
-"place. Faites une bonne vrification et enlevez tout ce qui n'est pas\n"
-"absolument ncessaire au dmarrage du systme.\n"
+"Ici sont presentes tous les services disponibles avec l'installation en\n"
+"place. Faites une bonne verification et enlevez tout ce qui n'est pas\n"
+"absolument necessaire au demarrage du systme.\n"
"\n"
"Vous pouvez obtenir une courte explication des services en les\n"
-"slectionnant spcifiquement. Cela dit, si vous n'tes pas certain de\n"
-"l'application d'un service, conservez les paramtres par dfaut\n"
+"selectionnant specifiquement. Cela dit, si vous n'tes pas certain de\n"
+"l'application d'un service, conservez les paramtres par defaut\n"
"\n"
-"!! cette tape, soyez particulirement attentif dans le cas d'un systme\n"
-"destin agir comme serveur. Dans ce cas, vous voudrez probablement\n"
-"permettre exclusivement les services ncessaires. !!"
+"!! cette etape, soyez particulirement attentif dans le cas d'un systme\n"
+"destine agir comme serveur. Dans ce cas, vous voudrez probablement\n"
+"permettre exclusivement les services necessaires. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2806,21 +2945,20 @@ msgid ""
"actually install on your machine a time server which can be optionally used\n"
"by other machines on your local network."
msgstr ""
-"GNU-Linux manipule l'heure au format GMT (Greenwich Mean Time) et la "
-"convertit en\n"
-"temps local selon le fuseau horaire choisi. Il est nanmoins possible de\n"
-"dsactiver cela en dslectionnant Horloge systme rgle sur le mridien\n"
-"de Greenwich de faon ce que l'horloge matrielle soit la mme que\n"
-"celle du systme. Cela est particulirement utile si la machine accueille\n"
-"un autre systme d'exploitation tel que .\n"
+"GNU/Linux manipule l'heure au format GMT (Greenwich Mean Time) et la\n"
+"convertit en temps local selon le fuseau horaire choisi. Il est neanmoins\n"
+"possible de desactiver cela en deselectionnant Horloge systme reglee sur\n"
+"le meridien de Greenwich de faon ce que l'horloge materielle soit la\n"
+"mme que celle du systme. Cela est particulirement utile si la machine\n"
+"accueille un autre systme d'exploitation tel que Windows.\n"
"\n"
-"La Synchronisation automatique permet de rgler l'heure automatiquement\n"
+"La Synchronisation automatique permet de regler l'heure automatiquement\n"
"en se connectant un serveur de temps sur Internet. Dans la liste qui est\n"
-"alors prsente, choisissez un serveur gographiquement proche de vous.\n"
+"alors presentee, choisissez un serveur geographiquement proche de vous.\n"
"Vous devez avoir une connexion Internet pour que cela fonctionne bien\n"
"entendu. Cela installera en fait sur votre machine un serveur de temps\n"
-"local qui pourra optionnellement tre lui-mme utilis par d'autres\n"
-"machines de votre rseau local."
+"local qui pourra optionnellement tre lui-mme utilise par d'autres\n"
+"machines de votre reseau local."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2846,13 +2984,13 @@ msgid ""
"after 10 seconds, restoring the screen."
msgstr ""
"X (pour le X Window system) est le coeur de votre interface graphique sous\n"
-"GNU/Linux. Tous les environnements graphiques (Gnome, KDE, Afterstep, ...) prsents\n"
-"sur Mandrake Linux dpendent de X. A cette tape, DrakX, va tenter de le configurer\n"
-"automatiquement.\n"
+"GNU/Linux. Tous les environnements graphiques (Gnome, KDE, Afterstep, ...)\n"
+"presents sur Mandrake Linux dependent de X. A cette etape, DrakX, va tenter\n"
+"de le configurer automatiquement.\n"
"\n"
-"Il est trs rare que cette tape choue, moins d'avoir un quipement\n"
-"obsolte (ou trop rcent). Si le processus russit, il va dmarrer X\n"
-"automatiquement avec la meilleure rsolution d'cran possible, en fonction\n"
+"Il est trs rare que cette etape echoue, moins d'avoir un equipement\n"
+"obsolte (ou trop recent). Si le processus reussit, il va demarrer X\n"
+"automatiquement avec la meilleure resolution d'ecran possible, en fonction\n"
"de la taille du moniteur. Une fentre apparat alors vous demandant si\n"
"cette configuration vous convient.\n"
"\n"
@@ -2861,8 +2999,8 @@ msgstr ""
"manuel pour plus d'information.\n"
"\n"
"Si vous pouvez voir le message et cliquez sur oui, DrakX continuera la\n"
-"prochaine tape. Si vous ne pouvez voir la fentre, ceci signifie que le\n"
-"test a chou et vous serez ramen l'cran prcdant en 10 secondes."
+"prochaine etape. Si vous ne pouvez voir la fentre, ceci signifie que le\n"
+"test a echoue et vous serez ramene l'ecran precedant en 10 secondes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2880,14 +3018,14 @@ msgid ""
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
"Il se peut que vous ne soyez pas entirement satisfait la premire\n"
-"tentative de configuration graphique (cran trop petit, peu de\n"
-"couleurs...). Ainsi, mme si X dmarre correctement, DrakX vous demande si\n"
+"tentative de configuration graphique (ecran trop petit, peu de\n"
+"couleurs...). Ainsi, mme si X demarre correctement, DrakX vous demande si\n"
"la configuration vous convient. Il proposera aussi de la changer en\n"
"affichant une liste des modes valides, si possible.\n"
"\n"
"En dernier recours, si vous ne pouvez pas faire fonctionner X, choisissez\n"
-"Changer la carte graphique, slectionnez carte non liste, et\n"
-"lorsqu'il vous sera demand le serveur graphique, choisissez FBDev.\n"
+"Changer la carte graphique, selectionnez carte non listee, et\n"
+"lorsqu'il vous sera demande le serveur graphique, choisissez FBDev.\n"
"c'est une option de secours qui fonctionnera sur n'importe quelle carte\n"
"graphique moderne. Choisissez ensuite Tester nouveau pour vous\n"
"assurer que tout va bien."
@@ -2902,17 +3040,17 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Finalement, il vous sera demand si vous souhaitez obtenir l'interface\n"
-"graphique ds le dmarrage ou non. Notez que cette question sera pose mme\n"
-"si vous choisissez de ne pas tester la configuration. Il est videmment\n"
-"souhaitable de rpondre Non si cette machine est un serveur sur\n"
-"laquelle personne n'est cense travailler en mode graphique."
+"Finalement, il vous sera demande si vous souhaitez obtenir l'interface\n"
+"graphique ds le demarrage ou non. Notez que cette question sera posee mme\n"
+"si vous choisissez de ne pas tester la configuration. Il est evidemment\n"
+"souhaitable de repondre Non si cette machine est un serveur sur\n"
+"laquelle personne n'est censee travailler en mode graphique."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2924,9 +3062,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2936,26 +3073,27 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
-"Le CDROM d'installation de Mandrake Linux a un mode de rcupration prdfini. Vous pouvez\n"
-"y accder en dmarrant l'ordinateur sur le CDROM. Selon la version de votre\n"
-"BIOS, il faut lui spcifier de dmarrer sur le CDROM. Vous devriez\n"
-"revenir au disquette de dmarrage dans deux cas prcis :\n"
+"Le CDROM d'installation de Mandrake Linux a un mode de recuperation\n"
+"predefini. Vous pouvez y acceder en demarrant l'ordinateur sur le CDROM.\n"
+"Selon la version de votre BIOS, il faut lui specifier de demarrer sur\n"
+"le CDROM. Vous devriez revenir au disquette de demarrage dans deux cas\n"
+"precis :\n"
"\n"
-" * Au moment d'installer le Programme d'amorce, DrakX va rcrire sur le\n"
-"secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
-"permettre de dmarrer avec Linux ou Windows (en prenant pour acquis que\n"
-"vous avez deux systmes d'exploitation installs. Si vous rinstallez\n"
-"Windows, celui-ci va rcrire sur le MBR et il vous sera dsormais\n"
-"impossible de dmarrer Linux.\n"
+" * Au moment d'installer le Programme d'amorce, DrakX va reecrire sur\n"
+"le secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
+"permettre de demarrer avec Linux ou Windows (en prenant pour acquis que\n"
+"vous avez deux systmes d'exploitation installes. Si vous reinstallez\n"
+"Windows, celui-ci va reecrire sur le MBR et il vous sera desormais\n"
+"impossible de demarrer Linux.\n"
"\n"
-" * Si un problme survient et qu'il vous est impossible de dmarrer partir\n"
-"du disque dur, cette disquette deviendra votre seul moyen de dmarrer votre\n"
-"systme Linux. Elle contient un bon nombre d'outils pour rcuprer un\n"
-"systme dfectueux, peu importe la source du problme.\n"
+" * Si un problme survient et qu'il vous est impossible de demarrer\n"
+"GNU/Linux partir du disque dur, cette disquette deviendra votre seul\n"
+"moyen de demarrer votre systme Linux. Elle contient un bon nombre d'outils\n"
+"pour recuperer un systme defectueux, peu importe la source du problme.\n"
"\n"
-"En cliquant sur cette tape, on vous demandera d'insrer une disquette. La\n"
-"disquette insre sera compltement efface et DrakX se chargera de la\n"
-"formater et d'y insrer les fichiers ncessaires."
+"En cliquant sur cette etape, on vous demandera d'inserer une disquette. La\n"
+"disquette inseree sera compltement effacee et DrakX se chargera de la\n"
+"formater et d'y inserer les fichiers necessaires."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2994,21 +3132,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -3024,73 +3161,76 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Cette tape vous permet de dterminer prcisment l'emplacement de votre\n"
-"installation de Mandrake Linux. Si votre disque est vide ou utilis par un autre systme\n"
-"d'exploitation, vous devrez repartitionner votre disque. Partitionner un\n"
-"disque signifie de le diviser prcisment afin de crer un espace pour\n"
-"votre installation.\n"
-"\n"
-"Comme les effets du partition sont irrversibles (l'ensemble du disque est\n"
-"effac), le partitionnement est gnralement intimidant et stressant pour\n"
-"un utilisateur inexpriment. Heureusement, une interface a t prvue \n"
-"cet effet. Avant de commencer, rvisez vos manuels et surtout, prenez votre\n"
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
+msgstr ""
+"Cette etape vous permet de determiner precisement l'emplacement de votre\n"
+"installation de Mandrake Linux. Si votre disque est vide ou utilise par un\n"
+"autre systme d'exploitation, vous devrez repartitionner votre disque.\n"
+"Partitionner un disque signifie de le diviser precisement afin de creer un\n"
+"espace pour votre installation.\n"
+"\n"
+"Comme les effets du partition sont irreversibles (l'ensemble du disque est\n"
+"efface), le partitionnement est generalement intimidant et stressant pour\n"
+"un utilisateur inexperimente. Heureusement, une interface a ete prevue \n"
+"cet effet. Avant de commencer, revisez vos manuels et surtout, prenez votre\n"
"temps.\n"
"\n"
"Si vous tes en mode expert, l'application DiskDrake, l'outil de\n"
-"partitionnement de Mandrake Linux, vous permettra de dterminer prcisment l'emplacement\n"
-"de chacune de vos partitions. partir de l'interface d'installation, vous\n"
-"pouvez lancer les assistants en cliquant sur Assistant.\n"
+"partitionnement de Mandrake Linux, vous permettra de determiner precisement\n"
+"l'emplacement de chacune de vos partitions. partir de l'interface\n"
+"d'installation, vous pouvez lancer les assistants en cliquant sur\n"
+"Assistant.\n"
"\n"
-"Si des partitions ont dj t dfinies, peu importe qu'elles proviennent\n"
+"Si des partitions ont dej ete definies, peu importe qu'elles proviennent\n"
"d'une autre installation ou d'un autre outil de partitionnement, il vous\n"
"suffit de simplement choisir sur quelle partition vous voulez installer\n"
"Mandrake.\n"
"\n"
-"Si vos partitions ne sont pas dfinies, vous devrez les crer en utilisant\n"
+"Si vos partitions ne sont pas definies, vous devrez les creer en utilisant\n"
"l'assistant. Selon la configuration de votre disque, plusieurs options sont\n"
"disponibles :\n"
"\n"
-" * Utilisez l'espace disponible: cette option tentera simplement de\n"
-"partitionner automatiquement l'espace inutilis sur votre disque. Il n'y\n"
+" * Utilisez l'espace disponible : cette option tentera simplement de\n"
+"partitionner automatiquement l'espace inutilise sur votre disque. Il n'y\n"
"aura pas d'autre question.\n"
"\n"
-" * Utiliser les partitions existantes: l' assistant a dtect une ou\n"
+" * Utiliser les partitions existantes : l' assistant a detecte une ou\n"
"plusieurs partitions existants sur votre disque. Si vous voulez les\n"
"utiliser, choisissez cette option.\n"
"\n"
-" * Utilisez l'espace libre sur une partition Windows: si Microsoft Windows est install\n"
-"sur votre disque et prend l'ensemble de l'espace vous devez crer une place\n"
-"pour votre installation Mandrake. Pour ce faire, vous pouvez tout effacer\n"
-"(voir effacer tout le disque ou Mode expert) ou vous pouvez\n"
-"redimensionner l'espace utilis par GNU/Linux. Le redimensionnement peut tre\n"
-"effectu sans pertes de donnes, condition que vous ayez pralablement\n"
-"dfragment la partition Windows. Une sauvegarde de Vos donnes ne fera pas de mal\n"
-"non plus. Cette seconde option peut tre accomplie sans perte de donnes.\n"
-"Cette solution est recommande pour faire cohabiter Linux et Windows sur le\n"
-"mme ordinateur.\n"
-"\n"
-" Avant de choisir cette option, il faut comprendre qu'aprs cette procdure\n"
-"l'espace disponible pour Windows sera rduit. Vous aurez moins d'espace\n"
-"pour installer des logiciels ou sauvegarder de l'information avec Windows.\n"
-"\n"
-" * Effacer tout le disque: si vous voulez effacer toutes les donnes et\n"
-"les applications installes sur votre systme et les remplacer par votre\n"
-"nouveau systme Mandrake Linux, choisissez cette option. Soyez prudent, car ce choix est\n"
-"irrversible et permanent. Il vous sera impossible de retrouver vos donnes\n"
-"effaces.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble du contenu de votre disque sera\n"
-"dtruit. !!\n"
-"\n"
-" * Supprimer Microsoft Windows: ce choix effacera tout simplement ce que\n"
-"contient le disque et recommencera zro. Toutes les donnes et les\n"
-"programmes prsents sur le disque seront effacs.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble de votre disque sera effac. !!\n"
+" * Utilisez l'espace libre sur une partition Windows : si Microsoft\n"
+"Windows est installe sur votre disque et prend l'ensemble de l'espace vous\n"
+"devez creer une place pour votre installation Mandrake. Pour ce faire, vous\n"
+"pouvez tout effacer (voir effacer tout le disque ou Mode expert) ou\n"
+"vous pouvez redimensionner l'espace utilise par Windows. Le\n"
+"redimensionnement peut tre effectue sans pertes de donnees, condition\n"
+"que vous ayez prealablement defragmente la partition Windows. Une\n"
+"sauvegarde de Vos donnees ne fera pas de mal non plus. Cette seconde option\n"
+"peut tre accomplie sans perte de donnees. Cette solution est recommandee\n"
+"pour faire cohabiter Linux et Windows sur le mme ordinateur.\n"
+"\n"
+" Avant de choisir cette option, il faut comprendre qu'aprs cette\n"
+"procedure l'espace disponible pour Windows sera reduit. Vous aurez moins\n"
+"d'espace pour installer des logiciels ou sauvegarder de l'information avec\n"
+"Windows.\n"
+"\n"
+" * Effacer tout le disque: si vous voulez effacer toutes les donnees et\n"
+"les applications installees sur votre systme et les remplacer par votre\n"
+"nouveau systme Mandrake Linux, choisissez cette option. Soyez prudent, car\n"
+"ce choix est irreversible et permanent. Il vous sera impossible de\n"
+"retrouver vos donnees effacees.\n"
+"\n"
+" !! En choisissant cette option, l'ensemble du contenu de votre disque\n"
+"sera detruit. !!\n"
+"\n"
+" * Supprimer Microsoft Windows: ce choix effacera tout simplement ce\n"
+"que contient le disque et recommencera zero. Toutes les donnees et les\n"
+"programmes presents sur le disque seront effaces.\n"
+"\n"
+" !! En choisissant cette option, l'ensemble de votre disque sera efface.\n"
+"!!\n"
"\n"
" * Mode expert: permet de partitionner manuellement votre disque. Soyez\n"
"prudent, parce que bien que plus puissante, cette option est dangereuse.\n"
@@ -3118,9 +3258,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3133,35 +3272,36 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
-"Votre installation de Mandrake Linux est maintenant termine et votre systme est prt \n"
-"tre utilis. Cliquez sur OK pour redmarrer votre systme. Vous aurez\n"
-"alors le choix de dmarrer ou Windows (s'il est prsent).\n"
+"Votre installation de Mandrake Linux est maintenant terminee et votre\n"
+"systme est prt tre utilise. Cliquez sur OK pour redemarrer votre\n"
+"systme. Vous aurez alors le choix de demarrer GNU/Linux ou Windows (s'il\n"
+"est present).\n"
"\n"
-"Le bouton Avance (en mode Expert uniquement) permet deux autres\n"
-"options:\n"
+"Le bouton Avancee (en mode Expert uniquement) permet deux autres\n"
+"options :\n"
"\n"
-" * Gnrer une disquette d'auto-install: Pour crer une disquette\n"
+" * Generer une disquette d'auto-install: Pour creer une disquette\n"
"d'installation qui permettra de reproduire l'installation que vous venez de\n"
-"raliser sans l'aide d'un administrateur.\n"
+"realiser sans l'aide d'un administrateur.\n"
"\n"
-" Notez que les deux options suivantes apparaissent aprs avoir cliqu sur le\n"
-"bouton:\n"
+" Notez que les deux options suivantes apparaissent aprs avoir clique sur\n"
+"le bouton :\n"
"\n"
-" * Replay. C'est une installation partiellement automatique o il est\n"
-"possible de personnaliser le partitionnement du disque (exclusivement).\n"
+" * Replay. C'est une installation partiellement automatique o il\n"
+"est possible de personnaliser le partitionnement du disque (exclusivement).\n"
"\n"
-" * Automatique. Compltement automatique, cette installation reformate\n"
-"le disque au complet.\n"
+" * Automatique. Compltement automatique, cette installation\n"
+"reformate le disque au complet.\n"
"\n"
-" Cette fonctionnalit est particulirement pratique pour l'installation de\n"
-"multiples systmes. Voir la sectionAuto install de notre site Web.\n"
+" Cette fonctionnalite est particulirement pratique pour l'installation\n"
+"de multiples systmes. Voir la sectionAuto install de notre site Web.\n"
"\n"
-" * Sauvegarder les paquetages slectionns(*) sauve la slection des\n"
-"paquetages installs. Puis, lorsque vous ferez une autre installation,\n"
-"insrer la disquette dans le lecteur et accder au menu d'aide en tapant\n"
-"[f1], et entrez la commande suivante: linux defcfg=\"floppy\".\n"
+" * Sauvegarder les paquetages selectionnes (*) sauve la selection des\n"
+"paquetages installes. Puis, lorsque vous ferez une autre installation,\n"
+"inserer la disquette dans le lecteur et acceder au menu d'aide en tapant\n"
+"[f1], et entrez la commande suivante : linux defcfg=\"floppy\".\n"
"\n"
-"(*) Vous avez besoin d'une disquette formate avec FAT (pour la crer sous\n"
+"(*) Vous avez besoin d'une disquette formatee avec FAT (pour la creer sous\n"
"Linux, tapez mformat a:)"
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -3193,30 +3333,30 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-"Chaque partition nouvellement dfinie doit tre formate, c'est dire\n"
-"qu'un systme de fichier (filesystem) doit y tre cr.\n"
+"Chaque partition nouvellement definie doit tre formatee, c'est dire\n"
+"qu'un systme de fichier (filesystem) doit y tre cree.\n"
"\n"
-"Durant cette tape, vous pouvez galement choisir de reformater d'autres\n"
-"partitions existantes afin d'effacer les donnes qu'elles contiennent. Si\n"
-"c'est ce que vous dsirez, il faut galement choisir ces partitions.\n"
+"Durant cette etape, vous pouvez egalement choisir de reformater d'autres\n"
+"partitions existantes afin d'effacer les donnees qu'elles contiennent. Si\n"
+"c'est ce que vous desirez, il faut egalement choisir ces partitions.\n"
"\n"
-"Sachez qu'il n'est pas ncessaire de reformater toutes les partitions\n"
+"Sachez qu'il n'est pas necessaire de reformater toutes les partitions\n"
"existantes. Vous devez reformater les partitions contenant le systme\n"
"d'exploitation, (tel que : /, /usr ou /var) mais vous n'avez\n"
-"pas reformater les partitions de donnes que vous voulez garder,\n"
+"pas reformater les partitions de donnees que vous voulez garder,\n"
"habituellement /home.\n"
"\n"
-"Restez prudent au moment de slectionner les partitions. Une fois formate,\n"
-"toutes les donnes contenues sur les partitions slectionnes seront\n"
-"dtruites et il sera impossible de les rcuprer.\n"
+"Restez prudent au moment de selectionner les partitions. Une fois formatee,\n"
+"toutes les donnees contenues sur les partitions selectionnees seront\n"
+"detruites et il sera impossible de les recuperer.\n"
"\n"
"Cliquez sur OK lorsque vous tre prt formater vos partitions.\n"
"\n"
"Cliquez sur Annuler si vous voulez choisir d'autres partitions pour\n"
"votre installation.\n"
"\n"
-"Cliquez sur Avanc頻, si vous dsirez choisir les partitions qui seront\n"
-"vrifies pour des secteurs corrompus."
+"Cliquez sur Avance, si vous desirez choisir les partitions qui seront\n"
+"verifiees pour des secteurs corrompus."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3229,9 +3369,10 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
-"Votre nouveau systme Mandrake Linux est maintenant en cours d'installation. Selon le\n"
-"nombre de paquetages installer et la puissance de votre ordinateur, cette\n"
-"opration peut prendre de quelques minutes quelques heures."
+"Votre nouveau systme Mandrake Linux est maintenant en cours\n"
+"d'installation. Selon le nombre de paquetages installer et la puissance\n"
+"de votre ordinateur, cette operation peut prendre de quelques minutes \n"
+"quelques heures."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3249,18 +3390,19 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Au moment o vous tes en train d'installer Mandrake Linux, il est possible que certains\n"
-"paquetages aient t mis jour depuis la sortie du produit. Des bogues ont\n"
-"pu tre corrigs, et des problmes de scurit rsolus. Pour vous permettre\n"
-"de bnficier de ces mises jour, il vous est maintenant propos de les\n"
-"tl-charger sur Internet. Choisissez Oui si vous avez une connexion\n"
-"Internet, ou Non si vous prfrez installer les mises jour plus tard.\n"
+"Au moment o vous tes en train d'installer Mandrake Linux, il est possible\n"
+"que certains paquetages aient ete mis jour depuis la sortie du produit.\n"
+"Des bogues ont pu tre corriges, et des problmes de securite resolus. Pour\n"
+"vous permettre de beneficier de ces mises jour, il vous est maintenant\n"
+"propose de les tele-charger sur Internet. Choisissez Oui si vous avez\n"
+"une connexion Internet, ou Non si vous preferez installer les mises \n"
+"jour plus tard.\n"
"\n"
"En choisissant Oui, la liste des sites depuis lesquels les mises \n"
-"jours peuvent tre tl-charges est affiche. Choisissez le site le plus\n"
-"proche. Puis un arbre de choix des paquetages apparat: vrifiez la\n"
-"slection, puis cliquez sur Installer pour tl-charger et installer\n"
-"les mises jour slectionnes, ou Annuler pour abandonner."
+"jours peuvent tre tele-chargees est affichee. Choisissez le site le plus\n"
+"proche. Puis un arbre de choix des paquetages apparat : verifiez la\n"
+"selection, puis cliquez sur Installer pour tele-charger et installer\n"
+"les mises jour selectionnees, ou Annuler pour abandonner."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3272,11 +3414,11 @@ msgid ""
"terminate the installation. To continue with the installation, click on the\n"
"\"Accept\" button."
msgstr ""
-"Avant d'aller plus loin, il est fortement recommand de lire attentivement\n"
-"les termes et conditions d'utilisations de la licence. Celle-ci rgit\n"
+"Avant d'aller plus loin, il est fortement recommande de lire attentivement\n"
+"les termes et conditions d'utilisations de la licence. Celle-ci regit\n"
"l'ensemble de la distribution Mandrake Linux. Si, pour une raison ou une\n"
"autre, vous n'acceptez pas ces conditions, cliquez sur Refuser.\n"
-"L'installation sera alors immdiatement interrompue. Pour continuer,\n"
+"L'installation sera alors immediatement interrompue. Pour continuer,\n"
"cliquez sur Accepter."
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -3292,17 +3434,17 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-" cette tape, vous devrez dterminer le niveau de scurit requis par\n"
-"votre systme. Le niveau de scurit requis se dtermine en fonction de\n"
-"l'exposition du systme d'autres utilisateurs (s'il est connect\n"
-"directement sur Internet par exemple) et selon le niveau de sensibilit de\n"
-"l'information contenu dans le systme (des numros de carte de crdit par\n"
-"exemple). Sachez que, de manire gnrale, plus la scurit d'un systme\n"
-"est leve, plus il est complexe oprer. Rfrez-vous au chapitre\n"
-"msec du Manuel de rfrence pour obtenir plus d'informations sur\n"
-"les niveaux de scurit.\n"
+" cette etape, vous devrez determiner le niveau de securite requis par\n"
+"votre systme. Le niveau de securite requis se determine en fonction de\n"
+"l'exposition du systme d'autres utilisateurs (s'il est connecte\n"
+"directement sur Internet par exemple) et selon le niveau de sensibilite de\n"
+"l'information contenu dans le systme (des numeros de carte de credit par\n"
+"exemple). Sachez que, de manire generale, plus la securite d'un systme\n"
+"est elevee, plus il est complexe operer. Referez-vous au chapitre\n"
+"msec du Manuel de reference pour obtenir plus d'informations sur\n"
+"les niveaux de securite.\n"
"\n"
-"Si vous ne savez pas quel niveau choisir, gardez la slection par dfaut."
+"Si vous ne savez pas quel niveau choisir, gardez la selection par defaut."
#: ../../help.pm_.c:442
msgid ""
@@ -3326,38 +3468,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3528,11 +3664,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3555,48 +3691,49 @@ msgid ""
"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
"choose this unless you know what you are doing."
msgstr ""
-"DrakX doit maintenant savoir quel type d'installation vous dsirez\n"
-"raliser. Deux types d'installations sont proposs: Par dfaut (\n"
-"Recommande), qui limite le nombre de questions l'utilisateur au\n"
-"minimum ou Expert qui vous permet de slectionner individuellement\n"
+"DrakX doit maintenant savoir quel type d'installation vous desirez\n"
+"realiser. Deux types d'installations sont proposes : Par defaut (\n"
+"Recommandee), qui limite le nombre de questions l'utilisateur au\n"
+"minimum ou Expert qui vous permet de selectionner individuellement\n"
"chacune des composantes installer. galement, on vous propose de faire\n"
-"une Installation ou une Mise jour d'un systme existant:\n"
+"une Installation ou une Mise jour d'un systme Mandrake Linux\n"
+"existant :\n"
"\n"
-" * Installation: balaye l'ancien systme. En fait, selon ce que votre\n"
+" * Installation : balaye l'ancien systme. En fait, selon ce que votre\n"
"machine comporte, vous pourrez garder intacte certaines des anciennes\n"
-"partition (Linux ou autres);\n"
+"partition (Linux ou autres) ;\n"
"\n"
-" * Mise jour: cette classe d'installation permet de simplement mettre\n"
-" jours les paquetages qui composent votre systme GNU/Linux. Elle conserve les\n"
-"partitions existantes, ainsi que la configuration des utilisateurs. Toutes\n"
-"les autres tapes de l'installation sont accessibles en comparaison avec\n"
-"une installation classique;\n"
+" * Mise jour : cette classe d'installation permet de simplement\n"
+"mettre jours les paquetages qui composent votre systme Mandrake Linux.\n"
+"Elle conserve les partitions existantes, ainsi que la configuration des\n"
+"utilisateurs. Toutes les autres etapes de l'installation sont accessibles\n"
+"en comparaison avec une installation classique ;\n"
"\n"
-" * Mise jour des paquetages uniquement: Cette nouvelle classe\n"
-"d'installation permet de mettre jour un systme Mandrake Linux existant, tout en gardant\n"
-"sa configuration inchange. L'ajout de nouveaux paquetages durant la mise \n"
-"jour est cependant possible.\n"
+" * Mise jour des paquetages uniquement : Cette nouvelle classe\n"
+"d'installation permet de mettre jour un systme Mandrake Linux existant,\n"
+"tout en gardant sa configuration inchangee. L'ajout de nouveaux paquetages\n"
+"durant la mise jour est cependant possible.\n"
"\n"
-"La mise jour devrait fonctionner correctement pour les systmes Mandrake Linux partir\n"
-"de la version 8.1.\n"
+"La mise jour devrait fonctionner correctement pour les systme Mandrake\n"
+"Linux partir de la version 8.1.\n"
"\n"
-"Selon votre niveau d'expertise avec les systmes d'exploitations GNU/Linux, il faut\n"
-"choisir l'un des deux types d'installations suivants:\n"
+"Selon votre niveau d'expertise avec les systmes d'exploitations GNU/Linux,\n"
+"il faut choisir l'un des deux types d'installations suivants:\n"
"\n"
-" * Recommande: choisissez cette option si vous n'avez jamais install\n"
-"de systme d'exploitation GNU/Linux. C'est la mthode la plus facile, la plupart des\n"
-"choix ont dj t fait pour vous.\n"
+" * Recommandee: choisissez cette option si vous n'avez jamais installe\n"
+"de systme d'exploitation GNU/Linux. C'est la methode la plus facile, la\n"
+"plupart des choix ont dej ete fait pour vous.\n"
"\n"
-" * Expert: si vous avez une bonne connaissance de GNU/Linux, vous pouvez choisir ce\n"
-"type d'installation. Cette mthode vous permettra de personnaliser\n"
-"l'ensemble des composantes de votre systme. Ces questions peuvent s'avrer\n"
-"complexes, particulirement en matire de partitionnement et du choix des\n"
-"paquetages installs. En consquence, il n'est pas recommand de s'y\n"
-"aventurer sans de bonnes connaissances au pralable."
+" * Expert: si vous avez une bonne connaissance de GNU/Linux, vous pouvez\n"
+"choisir ce type d'installation. Cette methode vous permettra de\n"
+"personnaliser l'ensemble des composantes de votre systme. Ces questions\n"
+"peuvent s'averer complexes, particulirement en matire de partitionnement\n"
+"et du choix des paquetages installes. En consequence, il n'est pas\n"
+"recommande de s'y aventurer sans de bonnes connaissances au prealable."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3610,22 +3747,22 @@ msgid ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
msgstr ""
-"Normalement, DrakX slectionne le clavier appropri en fonction de la\n"
-"langue choisie et vous ne devriez pas voir cette tape. Cela dit, il est\n"
+"Normalement, DrakX selectionne le clavier approprie en fonction de la\n"
+"langue choisie et vous ne devriez pas voir cette etape. Cela dit, il est\n"
"possible que vous ayez un clavier ne correspondant pas exactement votre\n"
-"langue d'utilisation. Par exemple, si vous habitez le Qubec et parlez le\n"
+"langue d'utilisation. Par exemple, si vous habitez le Quebec et parlez le\n"
"franais et l'anglais, vous pouvez vouloir avoir votre clavier anglais pour\n"
-"les tches d'administration systme et votre clavier franais pour crire\n"
-"de la posie. Dans ces cas, il vous faudra revenir cette tape\n"
-"d'installation et slectionner un autre clavier partir de la liste.\n"
+"les tches d'administration systme et votre clavier franais pour ecrire\n"
+"de la poesie. Dans ces cas, il vous faudra revenir cette etape\n"
+"d'installation et selectionner un autre clavier partir de la liste.\n"
"\n"
"Vous n'avez qu'a choisir la disposition de clavier qui vous convient.\n"
"\n"
-"Cliquez sur Davantage pour voir toutes les options proposes."
+"Cliquez sur Davantage pour voir toutes les options proposees."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3639,25 +3776,25 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
-"Veuillez choisir votre langue de communication. Celle-ci sera utilise\n"
+"Veuillez choisir votre langue de communication. Celle-ci sera utilisee\n"
"durant le processus d'installation, ainsi que durant les mises jour de\n"
"votre systme.\n"
"\n"
-"En cliquant sur Avanc頻, le programme vous proposera galement d'autres\n"
-"langues pouvant tre installes sur votre station de travail. En\n"
+"En cliquant sur Avance, le programme vous proposera egalement d'autres\n"
+"langues pouvant tre installees sur votre station de travail. En\n"
"choisissant d'autres langues, le programme vous installera toute la\n"
-"documentation et les applications ncessaires l'utilisation de cette\n"
-"autre langue. Par exemple, si vous prvoyez d'accueillir des utilisateurs\n"
+"documentation et les applications necessaires l'utilisation de cette\n"
+"autre langue. Par exemple, si vous prevoyez d'accueillir des utilisateurs\n"
"d'Espagne sur votre serveur, choisissez l'anglais comme langue principale,\n"
-"et, dans la section avance, cliquez sur l'toile grise correspondant \n"
+"et, dans la section avancee, cliquez sur l'etoile grise correspondant \n"
"Spanish|Spain.\n"
"\n"
-"Sachez que plusieurs langues peuvent tre installes. Une fois votre\n"
-"slection complte termine, cliquez sur OK pour continuer."
+"Sachez que plusieurs langues peuvent tre installees. Une fois votre\n"
+"selection complte terminee, cliquez sur OK pour continuer."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3672,21 +3809,21 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
-"DrakX dtecte gnralement le nombre de boutons de votre souris. Sinon, il\n"
+"DrakX detecte generalement le nombre de boutons de votre souris. Sinon, il\n"
"prend pour acquis que vous avez une souris deux boutons et configurera\n"
-"l'mulation du troisime bouton. galement, DrakX saura automatiquement si\n"
-"vous avez une souris PS/2, srie ou USB.\n"
+"l'emulation du troisime bouton. galement, DrakX saura automatiquement si\n"
+"vous avez une souris PS/2, serie ou USB.\n"
"\n"
-"Si vous dsirez installer une souris diffrente, veuillez la slectionner \n"
-"partir de la liste qui vous est propose.\n"
+"Si vous desirez installer une souris differente, veuillez la selectionner \n"
+"partir de la liste qui vous est proposee.\n"
"\n"
-"Si vous slectionnez une souris diffrente de celle choisie par dfaut,\n"
-"DrakX vous prsentera un cran de test. Utilisez les boutons et la roue\n"
+"Si vous selectionnez une souris differente de celle choisie par defaut,\n"
+"DrakX vous presentera un ecran de test. Utilisez les boutons et la roue\n"
"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
-"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entre]\n"
-"ou encore Annuler, puis, slectionner une autre souris."
+"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entree]\n"
+"ou encore Annuler, puis, selectionner une autre souris."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3696,23 +3833,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3733,40 +3870,40 @@ msgid ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-"Vous avez prendre ici une dcision cruciale pour la scurit de votre\n"
+"Vous avez prendre ici une decision cruciale pour la securite de votre\n"
"systme. L'utilisateur root est l'administrateur du systme qui a tous\n"
"les droits d'accs aux fichiers de configuration, etc. Il est donc\n"
-"impratif de choisir un mot de passe difficile deviner (pensez aux\n"
-"systmes prvus cet effet qui anticipent les combinaisons communes des\n"
-"utilisateurs). DrakX vous avertira si le mot de passe entr est trop facile\n"
-" deviner. Comme vous pouvez le voir, il est galement possible de ne pas\n"
-"entrer de mot de passe. Nous dconseillons fortement cette pratique. Comme\n"
+"imperatif de choisir un mot de passe difficile deviner (pensez aux\n"
+"systmes prevus cet effet qui anticipent les combinaisons communes des\n"
+"utilisateurs). DrakX vous avertira si le mot de passe entre est trop facile\n"
+" deviner. Comme vous pouvez le voir, il est egalement possible de ne pas\n"
+"entrer de mot de passe. Nous deconseillons fortement cette pratique. Comme\n"
"l'erreur est humaine, un utilisateur avec tous les droits peut tout\n"
-"dtruire sur votre systme, c'est pourquoi le mot de passe doit agir comme\n"
-"barrire l'entre.\n"
+"detruire sur votre systme, c'est pourquoi le mot de passe doit agir comme\n"
+"barrire l'entree.\n"
"\n"
"Le mot de passe choisi devrait contenir au moins 8 caractres\n"
-"alphanumriques. Ne jamais crire un mot de passe, forcez-vous vous en\n"
-"souvenir par coeur. Il faut donc mnager accessibilit et mmoire, donc un\n"
-"mot de passe de 30 caractres est presque impossible mmoriser.\n"
+"alphanumeriques. Ne jamais ecrire un mot de passe, forcez-vous vous en\n"
+"souvenir par coeur. Il faut donc menager accessibilite et memoire, donc un\n"
+"mot de passe de 30 caractres est presque impossible memoriser.\n"
"\n"
-"Afin d'viter les regards indiscrets, le mot de passe n'apparatra pas \n"
-"l'cran. Il vous faudra donc l'inscrire deux fois afin d'viter les erreurs\n"
+"Afin d'eviter les regards indiscrets, le mot de passe n'apparatra pas \n"
+"l'ecran. Il vous faudra donc l'inscrire deux fois afin d'eviter les erreurs\n"
"de frappe. videmment, si vous faites deux fois la mme erreur, celle-ci\n"
-"sera sauvegarde et vous devrez la reproduire afin d'accder votre\n"
+"sera sauvegardee et vous devrez la reproduire afin d'acceder votre\n"
"systme pour la premire fois.\n"
"\n"
"En mode expert, on vous demandera si vous comptez vous connecter sur un\n"
-"serveur d'authentification, tel que NIS ou LDAP. Si votre rseau utilise un\n"
-"de ces protocoles, il faut le slectionner. Si vous n'en avez aucune ide,\n"
-"demandez votre administrateur de rseau.\n"
+"serveur d'authentification, tel que NIS ou LDAP. Si votre reseau utilise un\n"
+"de ces protocoles, il faut le selectionner. Si vous n'en avez aucune idee,\n"
+"demandez votre administrateur de reseau.\n"
"\n"
-"Si votre ordinateur n'est pas connect sur un rseau administr, vous devez\n"
+"Si votre ordinateur n'est pas connecte sur un reseau administre, vous devez\n"
"choisir Fichiers Locaux pour l'authentification."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3788,7 +3925,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3796,7 +3933,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3816,52 +3953,53 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
-"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette tape est normalement\n"
-"compltement automatique. En fait, DrakX analyse le secteur de dmarrage\n"
-"(master boot record) et agit en fonction de ce qu'il peut y lire:\n"
+"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette etape est\n"
+"normalement compltement automatique. En fait, DrakX analyse le secteur de\n"
+"demarrage (master boot record) et agit en fonction de ce qu'il peut y lire\n"
+":\n"
"\n"
-" * Si un secteur de dmarrage Windows est dtect, il va tre remplacer par\n"
-"LILO/GRUB. Donc, vous serez capable de dmarrer et tout autre systme\n"
-"d'exploitation.\n"
+" * Si un secteur de demarrage Windows est detecte, il va tre remplacer par\n"
+"LILO/GRUB. Donc, vous serez capable de demarrer GNU/Linux et tout autre\n"
+"systme d'exploitation.\n"
"\n"
-" * si GRUB ou LILO est dtect, il sera remplac par la nouvelle version;\n"
+" * si GRUB ou LILO est detecte, il sera remplace par la nouvelle version;\n"
"\n"
-"En cas de doute, DrakX affiche diffrentes options.\n"
+"En cas de doute, DrakX affiche differentes options.\n"
"\n"
-" * Programme d'amorage utiliser vous propose trois choix:\n"
+" * Programme d'amorage utiliser vous propose trois choix :\n"
"\n"
-" * GRUB: si vous prfrer GRUB (menu texte).\n"
+" * GRUB : si vous preferer GRUB (menu texte).\n"
"\n"
-" * LILO en mode graphique: si vous prfrez l'interface graphique.\n"
+" * LILO en mode graphique : si vous preferez l'interface graphique.\n"
"\n"
-" * LILO en mode texte: si vous prfrez la version texte de LILO.\n"
+" * LILO en mode texte : si vous preferez la version texte de LILO.\n"
"\n"
-" * Priphriques de dmarrage: dans la plupart des cas, vous n'aurez pas\n"
-" changer le disque par dfaut (/dev/hda, mais si vous le dsirez, le\n"
-"programme d'amorce peut tre install sur un second disque, /dev/hdb,\n"
-"ou mme sur une disquette, /dev/fd0.\n"
+" * Peripheriques de demarrage: dans la plupart des cas, vous n'aurez\n"
+"pas changer le disque par defaut (/dev/hda, mais si vous le desirez,\n"
+"le programme d'amorce peut tre installe sur un second disque,\n"
+"/dev/hdb, ou mme sur une disquette, /dev/fd0.\n"
"\n"
-" * Dlais avant l'activation du choix par dfaut: au redmarrage de\n"
-"l'ordinateur, il s'agit du temps accord l'utilisateur pour dmarrer un\n"
+" * Delais avant l'activation du choix par defaut: au redemarrage de\n"
+"l'ordinateur, il s'agit du temps accorde l'utilisateur pour demarrer un\n"
"autre systme d'exploitation.\n"
"\n"
-"!! Prenez garde, si vous dcidez de ne pas installer de programme d'amorce\n"
-"(en cliquant sur Annuler), vous devez vous assurez d'avoir une mthode\n"
-"pour dmarrer le systme. Aussi, assurez vous de bien savoir ce que vous\n"
+"!! Prenez garde, si vous decidez de ne pas installer de programme d'amorce\n"
+"(en cliquant sur Annuler), vous devez vous assurez d'avoir une methode\n"
+"pour demarrer le systme. Aussi, assurez vous de bien savoir ce que vous\n"
"faites si vous modifiez les options. !!\n"
"\n"
-"En cliquant sur Avance, vous aurez accs plusieurs autres options de\n"
-"configuration. Sachez que celles-ci sont rserves aux experts en la\n"
+"En cliquant sur Avancee, vous aurez accs plusieurs autres options de\n"
+"configuration. Sachez que celles-ci sont reservees aux experts en la\n"
"matire.\n"
"\n"
-"Si vous avez d'autres systmes d'exploitation installs sur votre\n"
-"ordinateur, ils seront automatiquement dtects et ajout vos menus de\n"
-"dmarrage. cette tape, vous pouvez dcider de prciser ces options. En\n"
-"double-cliquant sur une entre existante vous pourrez la paramtrer votre\n"
-"guise, ou l'enlever. Ajouter permet de crer de nouvelles entres, et\n"
-"terminer vous conduit la prochaine tape d'installation."
+"Si vous avez d'autres systmes d'exploitation installes sur votre\n"
+"ordinateur, ils seront automatiquement detectes et ajout vos menus de\n"
+"demarrage. cette etape, vous pouvez decider de preciser ces options. En\n"
+"double-cliquant sur une entree existante vous pourrez la parametrer votre\n"
+"guise, ou l'enlever. Ajouter permet de creer de nouvelles entrees, et\n"
+"terminer vous conduit la prochaine etape d'installation."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3884,7 +4022,7 @@ msgstr ""
"dtruisant les entres correspondantes. Mais vous aurez alors besoin\n"
"d'une disquette de dmarrage afin de lancer ces autres systmes!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3899,29 +4037,28 @@ msgstr ""
" moins de savoir exactement ce que vous faites, choisissez\n"
"toujours Premier secteur du disque (MBR)."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3960,7 +4097,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3985,39 +4122,39 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"DrakX dtecte maintenant tous les priphriques IDE prsents sur votre\n"
-"systme. galement, DrakX recherchera les priphriques SCSI. Finalement,\n"
-"selon les composantes dtectes, DrakX installera tous les pilotes\n"
-"ncessaires son fonctionnement.\n"
+"DrakX detecte maintenant tous les peripheriques IDE presents sur votre\n"
+"systme. galement, DrakX recherchera les peripheriques SCSI. Finalement,\n"
+"selon les composantes detectees, DrakX installera tous les pilotes\n"
+"necessaires son fonctionnement.\n"
"\n"
-"Compte tenu de la vaste gamme de priphriques disponibles sur le march,\n"
-"dans certain cas la dtection de matriel ne fonctionnera pas. Dans ce cas,\n"
-"DrakX vous demandera de confirmer si des composantes SCSI sont prsentes\n"
+"Compte tenu de la vaste gamme de peripheriques disponibles sur le marche,\n"
+"dans certain cas la detection de materiel ne fonctionnera pas. Dans ce cas,\n"
+"DrakX vous demandera de confirmer si des composantes SCSI sont presentes\n"
"sur votre systme. Cliquez sur Oui si vous tes certain d'avoir un\n"
-"priphrique SCSI sur votre systme. DrakX vous prsentera alors une liste\n"
-"de carte SCSI disponibles. Slectionnez la vtre. videment, cliquez sur\n"
+"peripherique SCSI sur votre systme. DrakX vous presentera alors une liste\n"
+"de carte SCSI disponibles. Selectionnez la vtre. videment, cliquez sur\n"
"Non, si vous n'en avez pas. Si vous n'tes pas certain, cliquez sur\n"
-"Voir les informations sur le matriel, puis sur OK. Vrifiez la\n"
-"liste du matriel, puis cliquez sur OK pour retourner la question\n"
-"concernant les priphriques SCSI.\n"
+"Voir les informations sur le materiel, puis sur OK. Verifiez la\n"
+"liste du materiel, puis cliquez sur OK pour retourner la question\n"
+"concernant les peripheriques SCSI.\n"
"\n"
-"Si vous devez spcifier votre carte SCSI manuellement, DrakX vous demandera\n"
-"de confirmer les options du priphrique. Vous devriez permettre DrakX de\n"
-"vrifier automatiquement votre carte pour les options ncessaires \n"
-"dterminer.\n"
+"Si vous devez specifier votre carte SCSI manuellement, DrakX vous demandera\n"
+"de confirmer les options du peripherique. Vous devriez permettre DrakX de\n"
+"verifier automatiquement votre carte pour les options necessaires \n"
+"determiner.\n"
"\n"
-"Il peut arriver que DrakX soit incapable de vrifier les options\n"
-"ncessaires. Dans ce cas, vous devrez les dterminer manuellement.\n"
+"Il peut arriver que DrakX soit incapable de verifier les options\n"
+"necessaires. Dans ce cas, vous devrez les determiner manuellement.\n"
"Consultez le guide d'utilisation (Chapitre 3, section \"Obtenir des\n"
-"informations sur votre matriel\") pour quelques astuces pour retrouver les\n"
-"paramtres ncessaires dans la documentation de vos priphriques, sur le\n"
+"informations sur votre materiel\") pour quelques astuces pour retrouver les\n"
+"paramtres necessaires dans la documentation de vos peripheriques, sur le\n"
"site du fabricant (si vous avez un accs Internet) ou partir des menus\n"
-"de Microsoft Windows (si vous utilisiez ce priphrique avec Windows)."
+"de Microsoft Windows (si vous utilisiez ce peripherique avec Windows)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4027,9 +4164,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4041,7 +4177,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4109,7 +4245,7 @@ msgstr ""
"entre qui sera alors prcde d'un *, si vous pressez <Tab> pour voir\n"
"la liste des possibilits."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4136,9 +4272,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4178,10 +4313,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4189,12 +4324,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4209,36 +4343,34 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
-"On vous prsente ici les diffrents paramtres de votre systme. Selon le\n"
-"matriel install, certaines entres seront prsentes et d'autres pas.\n"
+"On vous presente ici les differents paramtres de votre systme. Selon le\n"
+"materiel installe, certaines entrees seront presentes et d'autres pas.\n"
"\n"
-" * Souris: pour vrifier la configuration actuelle de la souris. "
-"Cliquez\n"
-"sur le bouton pour modifier les options.\n"
+" * Souris: pour verifier la configuration actuelle de la souris.\n"
+"Cliquez sur le bouton pour modifier les options.\n"
"\n"
-" * Clavier: vrifie la configuration choisie pour le clavier. Cliquez\n"
+" * Clavier: verifie la configuration choisie pour le clavier. Cliquez\n"
"sur le bouton pour la modifier.\n"
"\n"
-" * Fuseau horaire: DrakX, par dfaut, essaie de trouver le fuseau\n"
+" * Fuseau horaire: DrakX, par defaut, essaie de trouver le fuseau\n"
"horaire dans lequel vous tes. Encore une fois, il est possible que vous ne\n"
"soyez pas dans le fuseau horaire qui vous convient. Donc, vous aurez\n"
"peut-tre cliquer sur le bouton fuseau horaire pour identifier\n"
-"prcisment l'heure qui doit apparatre dans vos horloges.\n"
+"precisement l'heure qui doit apparatre dans vos horloges.\n"
"\n"
" * Imprimante: en cliquant sur Pas d'imprimante, l'outil de\n"
-"configuration sera dmarr.\n"
+"configuration sera demarre.\n"
"\n"
-" * Carte son: si une carte son a t dtecte, elle apparatra ici.\n"
-"Aucune modification n'est possible cette tape.\n"
+" * Carte son: si une carte son a ete detectee, elle apparatra ici.\n"
+"Aucune modification n'est possible cette etape.\n"
"\n"
-" * Carte TV: si une carte d'entre/sortie vido (carte TV) a t\n"
-"dtecte, elle apparatra ici. Aucune modification possible cette tape.\n"
+" * Carte TV: si une carte d'entree/sortie video (carte TV) a ete\n"
+"detectee, elle apparatra ici. Aucune modification possible cette etape.\n"
"\n"
-" * Carte ISDN: si une carte ISDN est dtecte, elle apparatra ici. "
-"Vous\n"
-"pouvez cliquer sur le bouton pour en modifier les paramtres."
+" * Carte ISDN: si une carte ISDN est detectee, elle apparatra ici.\n"
+"Vous pouvez cliquer sur le bouton pour en modifier les paramtres."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4248,7 +4380,7 @@ msgstr ""
"nouvelle partition Mandrake Linux. Soyez prudent, toutes les donnes\n"
"prsentes sur ce disque seront perdues et ne seront pas rcuprables!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4264,7 +4396,7 @@ msgstr ""
"sur OK, vous n'aurez aucun moyen de rcuprer ces donnes et\n"
"partitions, y compris celles de Windows."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4276,12 +4408,12 @@ msgstr ""
"dsynchronise par rapport votre medium d'Installation (veuillez crer une "
"disquette de boot plus rcente)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Vous devez aussi formater %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4306,20 +4438,20 @@ msgstr ""
"\n"
"Confirmez vous l'installation de ces serveurs?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "On ne peut pas utiliser l'option broadcast sans domaine NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insrez une disquette formate en FAT (format DOS/Windows) %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Cette disquette n'est pas au format DOS/Windows"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4327,7 +4459,7 @@ msgstr ""
"Pour utiliser cette sauvegarde de slection des paquetages, veuillez "
"redmarrer l'installation avec la commande linux defcfg=floppy."
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erreur lors de la lecture du fichier %s"
@@ -4358,7 +4490,7 @@ msgstr "Vous devez crer une partition d'change (swap)"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4366,59 +4498,59 @@ msgstr ""
"\n"
"Dsirez-vous tout de mme continuer?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vous devez disposer d'une partition FAT monte en /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Utiliser l'espace libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Pas assez d'espace libre pour crer de nouvelles partitions"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Utiliser une partition existante"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Pas de partition existante utiliser"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Utiliser la partition Windows pour le loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quelle partition dsirez-vous utiliser pour Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Choix des tailles"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Taille de la partition racine en Mo: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Taille de la partition d'change (swap) en Mo: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Utiliser l'espace libre sur la partition de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Quelle partition dsirez-vous redimensionner?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calcul des limites du systme de fichiers de Windows en cours"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4427,14 +4559,17 @@ msgstr ""
"Le programme de redimensionnement des partitions FAT ne peut grer votre\n"
"partition. L'erreur suivante est survenue: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Votre partition FAT est trop fragmente. Redmarrez sous Windows\n"
"et lancez le programme de dfragmentation defrag,\n"
"puis relancez l'installation de Mandrake Linux."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4456,58 +4591,58 @@ msgstr ""
"\n"
"Si vous tes sr de vous, cliquez sur OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Quelle taille dsirez-vous allouer Windows?"
-
#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Quelle taille dsirez-vous allouer Windows sur la"
+
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
-msgstr "Le redimensionnement de la partition FAT a chou: %s"
+msgstr "Le redimensionnement de la partition FAT a chou: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Il n'y a aucune partition FAT redimensionner ou utiliser en tant que "
"loopback (ou trop peu d'espace est disponible)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Effacer tout le disque"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
-msgstr "Supprimer Microsoft Windows"
+msgstr "Supprimer Microsoft Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Vous possdez plus d'un disque dur.\n"
"Sur lequel dsirez vous installer Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"TOUTES les partitions et les donnes prsentes sur le disque %s seront "
"perdues"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Partitionnement personnalis"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Utiliser fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4518,11 +4653,11 @@ msgstr ""
"Lorsque vous aurez termin, n'oubliez pas d'enregistrer vos\n"
"modifications en appuyant sur la touche w."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Utiliser l'espace libre sur la partition de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Pas de place disponible pour l'installation"
@@ -4532,16 +4667,16 @@ msgstr ""
"L'assistant de partitionnement de DrakX\n"
"a trouv les solutions suivantes:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Le partitionnement a chou: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Dmarrage de l'interface rseau"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Arrt de l'interface rseau"
@@ -4553,12 +4688,12 @@ msgstr ""
"Une erreur est survenue et semble difficile rsoudre correctement.\n"
"Vous pouvez continuer, mais vos risques et prils."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Point de montage en double: %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4569,15 +4704,15 @@ msgstr ""
"peut que le lecteur de cdrom ou le cdrom lui-mme soit dfectueux. Vous\n"
"pouvez vous assurer du bon tat de ce dernier en excutant la commande "
"suivante\n"
-"sur un ordinateur fonctionnant correctement: rmp -qpl Mandrake/RPMS/*."
+"sur un ordinateur fonctionnant correctement: rpm -qpl Mandrake/RPMS/*."
"rpm\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Aucun lecteur de disquette disponible"
@@ -4587,9 +4722,9 @@ msgstr "Aucun lecteur de disquette disponible"
msgid "Entering step `%s'\n"
msgstr "Dmarrage de l'tape %s\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4599,202 +4734,153 @@ msgstr ""
"essayer de procder une installation en mode texte. Pour cela, appuyez\n"
"sur la touche F1 aprs l'amorage sur cdrom puis entrez text."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Classe d'installation"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Veuillez choisir une des classes d'installation ci-dessous:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La taille totale pour les groupes slectionns est approximativement de %d "
-"Mo.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si vous voulez rduire la taille de votre installation,\n"
-"choisissez le pourcentage de paquetages que vous souhaitez installer.\n"
-"\n"
-"Un faible pourcentage ne conservera que les paquetages les plus importants.\n"
-"Un pourcentage de 100%% installera tous les paquetages slectionns."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vous n'avez d'espace sur votre disque que pour %d%% de ces paquetages.\n"
-"\n"
-"Si vous souhaitez rduire encore la taille de l'installation,\n"
-"choisissez un pourcentage encore plus faible.\n"
-"\n"
-"Un faible pourcentage ne conserve que les paquetages les plus importants.\n"
-"Un pourcentage de %d%% installera le maximum possible de packages."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Vous pourrez affiner la slection des paquetages lors de la prochaine tape."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Pourcentage de paquetages installer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Slection des groupes de paquetages"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Slection individuelle des paquetages"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Taille totale: %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Mauvais paquetage"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Taille: %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importance: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Il n'y a pas assez de place pour installer ce paquetage"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Les paquetages suivants vont tre installs"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Les paquetages suivants vont tre dsinstalls"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Vous ne pouvez pas slectionner/dslectionner ce paquetage"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ce paquetage est ncessaire, vous ne pouvez pas l'enlever."
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Vous ne pouvez pas dslectionner ce paquetage. Il est dj install."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ce paquetage doit tre mis jour.\n"
"tes-vous certain de vouloir le dslectionner?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Vous ne pouvez pas dslectionner ce paquetage, il doit tre mis jour."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Montrer les paquetages slectionns automatiquement"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Charger/Sauver sur disquette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Mise--jour de la slection des paquetages"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Installation minimale"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Choisissez les paquetages que vous voulez installer"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimation en cours"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Veuillez patienter, prparation de l'installation..."
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetages"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installation du paquetage %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accepter"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Refuser"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4808,21 +4894,22 @@ msgstr ""
"Veuillez insrer le cdrom nomm %s,\n"
"puis cliquez sur OK.\n"
"\n"
-"Si vous ne le possdez pas, cliquez sur Annuler."
+"Si vous ne le possdez pas, cliquez sur Annuler afin de ne rien "
+"installer partir de ce Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Souhaitez-vous tout de mme continuer?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Erreur lors du tri des paquetages:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
-msgstr "Erreur lors de l'installation du paquetage:"
+msgstr "Erreur lors de l'installation des paquetages:"
#: ../../install_steps_interactive.pm_.c:10
msgid ""
@@ -4894,13 +4981,13 @@ msgstr "Une erreur est survenue"
#: ../../install_steps_interactive.pm_.c:85
msgid "Do you really want to leave the installation?"
-msgstr "Dsirez-vous vraiment quitter l'installation?"
+msgstr "Dsirez-vous vraiment quitter l'installation?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licence"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4915,7 +5002,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -5123,109 +5210,113 @@ msgstr ""
"litige. Pour toute question relative au prsent document, veuillez \n"
"contacter MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Etes vous sur de refuser cette license ?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Clavier"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Veuillez choisir votre type de clavier."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Voici la liste complte des claviers disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Quelle classe d'installation dsirez-vous utiliser?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installation/Mise--jour"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Dsirez-vous faire une installation ou une mise--jour?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recommande"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Mise--jour"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Mise--jour seulement des paquetages"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Veuillez choisir le type de votre souris."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port souris"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Veuillez choisir le port srie sur lequel votre souris est connecte."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "mulation des boutons"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
-msgstr "mulation du bouton 2"
+msgstr "mulation du bouton n 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
-msgstr "mulation du bouton 3"
+msgstr "mulation du bouton n 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configuration des cartes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configuration IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Aucune partition disponible"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Examen des partitions afin d'identifier les points de montage"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Choix des points de montage"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5237,7 +5328,7 @@ msgstr ""
"\n"
"tes-vous d'accord pour perdre toutes vos partitions?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5245,90 +5336,93 @@ msgstr ""
"DiskDrake ne peut pas lire la table des partitions de faon satisfaisante.\n"
"Vous pouvez continuer, mais vos risques et prils."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-"Pas de place libre pour la partition d'amorage (bootstrap) de 1 Mo."
+"Pas de place libre pour la partition d'amorage (bootstrap) de 1Mo."
"L'installation va\n"
"continuer, mais pour que votre systme puisse dmarrer, vous aurez besoin "
"de\n"
"crer la partition d'amorage avec DiskDrake."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
"Impossible de trouver une partition racine pour procder une mise jour."
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partition racine"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Quelle est la partition racine (/) de votre systme?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Vous devez redmarrer pour que les modifications apportes la\n"
"table des partitions soient prises en compte"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Slectionnez les partitions que vous souhaitez formater"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Vrifier la prsence de secteurs endommags?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatage des partitions"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Cration et formatage du fichier %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Le swap est insuffisant pour achever l'installation, veuillez en ajouter."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr ""
+"Recherche des paquetages disponibles et reconstruction de la base de donne "
+"rpm..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Recherche des paquetages disponibles..."
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Recherche des paquetages mettre jour..."
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Recherche des paquetages dja installs..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Votre systme ne dispose pas d'assez d'espace libre pour l'installation ou "
"la mise--jour (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Complte (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimale (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recommande (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5340,55 +5434,55 @@ msgstr ""
"Le format est le mme que celui des disquettes gnres pour l'installation "
"automatise."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Charger partir d'une disquette..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Chargement depuis la disquette..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Slection des paquetages"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Insrez une disquette contenant une slection de paquetages."
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Sauvegarder sur disquette..."
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "La taille slectionne est plus importante que la place disponible"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Type d'installation"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-"Vous n'avez slectionn aucun groupe de paquetages\n"
-"Veuillez choisir l'installation minimale voulue."
+"Vous n'avez slectionn aucun groupe de paquetages.\n"
+"Veuillez choisir l'installation minimale dsire:"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Avec X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Avec la documentation de base (recommand!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5396,18 +5490,18 @@ msgid ""
msgstr ""
"Si vous possdez tous les cdroms ci-dessous, cliquez sur OK.\n"
"Si vous n'en possdez aucun, cliquez sur Annuler.\n"
-"Sinon dslectionnez ceux que vous n'avez pas, puis cliquez sur OK."
+"Sinon, dslectionnez ceux que vous n'avez pas, puis cliquez sur OK."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "cdrom %s"
+msgstr "Cdrom %s"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Prparation de l'installation"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5416,23 +5510,23 @@ msgstr ""
"Installation du paquetage %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuration post-installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insrez la disquette d'amorage utilise dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insrez la disquette de mise--jour de modules dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5507,167 +5601,198 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+# I added an example (install on a networked machine, and the server is connected to the Internet).
+# / J'ai rajout un exemple (voir texte) car cela me semble plus clair comme .
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Vous avez maintenant la possibilit de tlcharger les mises jour\n"
-"cres depuis la sortie de cette version de Mandrake Linux.\n"
+"Vous avez maintenant la possibilit de tlcharger les mises--jour\n"
+"cres depuis la sortie de cette distribution. Il peut y avoir des "
+"correctifs de\n"
+" scurit ou des rsolutions de bogues.\n"
"\n"
-"Il s'agit de correctifs de scurit, ou de correction de bogues,\n"
-"et vous aurez besoin d'une connexion internet pour les obtenir.\n"
+"Vous devez avoir une connexion internet active pour les tlcharger,\n"
+"par exemple si vous tes en rseau et que votre serveur est connect.\n"
"\n"
"Voulez-vous installer les mises--jour?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Connexion au site web de Mandrake Linux pour obtenir la liste des serveurs "
"miroirs disponibles..."
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Choisissez un serveur miroir d'o tlcharger les paquetages"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Tlchargement de la liste des paquetages disponibles..."
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Quelle est votre fuseau horaire?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Horloge systme rgle sur le Temps Universel (GMT)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Synchronisation automatique de l'horloge (via NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Serveur NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Serveur CUPS distant"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Pas d'imprimante"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Possdez-vous une carte son ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Lancez sndconfig aprs l'installation pour configurer la carte son"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Aucune carte son detecte. Essayez avec harddrake aprs l'installation"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Rsum"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Souris"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Fuseau horaire"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Imprimante"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Carte RNIS/ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Carte son"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Carte TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Fichiers locaux"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Mot de passe root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Pas de mot de passe"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ce mot de passe est trop court (minimum %d caractres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentification"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Authentification LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Racine (dn) LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Serveur LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Authentification NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domaine NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Serveur NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Authentification Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Domaine Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Serveur de nom PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5700,19 +5825,19 @@ msgstr ""
"Si vous voulez crer une disquette d'amorage pour votre systme, insrez \n"
"une disquette dans le premier lecteur et appuyer sur \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Premier lecteur de disquette"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Second lecteur de disquette"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Abandonner"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5743,7 +5868,7 @@ msgstr ""
"Dsirez-vous crer une disquette d'amorage pour votre systme?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5754,33 +5879,33 @@ msgstr ""
"\n"
"\n"
"(ATTENTION! Vous utilisez XFS pour votre partition racine,\n"
-"crer une disquette de boot 1.44 Mb va probablement chouer,\n"
+"crer une disquette de boot 1.44Mb va probablement chouer,\n"
"parce que XFS a besoin d'un pilote trs gros)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Dsol, aucun lecteur de disquette ne semble disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Choisissez le lecteur de disquette utiliser pour\n"
"crer votre disquette d'amorage."
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Insrez une disquette dans le %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Cration de la disquette d'amorage..."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Prparation du programme d'amorage..."
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5794,11 +5919,11 @@ msgstr ""
"dmarrer\n"
"votre machine."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Dsirez-vous utiliser aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5807,16 +5932,16 @@ msgstr ""
"Dsirez-vous forcer l'installation au risque de dtruire la\n"
"premire partition du disque?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Installation du programme d'amorage..."
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"L'installation du programme d'amorage a chou pour la raison suivante:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5836,18 +5961,17 @@ msgstr ""
"Au prochain dmarrage vous devriez voir apparatre l'invite du\n"
"programme d'amorage."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insrez une disquette vierge dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Cration de la disquette d'auto-installation..."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5857,7 +5981,8 @@ msgstr ""
"\n"
"Voulez-vous vraiment quitter maintenant?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5868,7 +5993,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5882,17 +6007,21 @@ msgstr ""
"de Mandrake Linux, consultez les Errata disponibles depuis:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Des informations sur la configuration de votre systme sont \n"
"disponibles dans le Guide de l'Utilisateur de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Crer une disquette d'auto-installation"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5906,15 +6035,15 @@ msgstr ""
"\n"
"Vous pouvez prfrer rejouer l'installation.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatise"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Rejouer"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Sauvegarder la slection des paquetages..."
@@ -5942,77 +6071,61 @@ msgstr "le programme consolehelper est introuvable"
msgid "Choose a file"
msgstr "Choisissez un fichier"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanc"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Basique"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Veuillez patienter"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Information"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Dvelopper l'arborescence"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Rduire l'arborescence"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Basculer entre tri alphabtique et tri par groupes"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
-msgstr "Choix erron. Veuillez recommencer\n"
+msgstr "Choix erron, veuillez recommencer\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Que choisissez-vous? (%s par dfaut) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-"Champs que vous devrez remplir:\n"
+"Les champs que vous devrez remplir sont:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Votre choix? (0/1, dfaut %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Bouton %s: %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Dsirez-vous cliquer sur ce bouton?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr "Saisissez `void' pour une entre vide"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "Que choisissez-vous? (%s%s par dfaut) "
+msgstr "Que choisissez-vous? (%s par dfaut%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Il y a beaucoup de choses choisir (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6022,7 +6135,7 @@ msgstr ""
"souhaitez modifier, ou appuyez juste sur <Entre> pour continuer.\n"
"Votre choix? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6031,327 +6144,327 @@ msgstr ""
"=> Notez qu'un message a chang:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Revalider"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "tchque (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "allemand"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak standard"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "espagnol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "finlandais"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "franais"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "norvgien"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "polonais"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "russe"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "sudois"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "anglais"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "amricain (tats-Unis)"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "albanais"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "armnien (ancien)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "armnien (machine crire)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "armnien (phontique)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "azerbadjanais (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "belge"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "bulgare (phontique)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "bulgare (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "brsilien"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "bllorusse"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "suisse (allemand)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "suisse (franais)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "tchque (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "allemand (sans touches mortes)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "danois"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak amricain"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak norvgien"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak sudois"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "estonien"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "gorgien (disposition russe)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "gorgien (disposition latine)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "grec"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "hongrois"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "croate"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "isralien"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "isralien (phontique)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "iranien"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "islandais"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "italien"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "japonais 106 touches"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "coren"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "latino-amricain"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "lituanien (AZERTY, ancien modle)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "lituanien (AZERTY, nouveau modle)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "lituanien ligne de nombres QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "lituanien phontique QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "letton"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "macdonien"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "hollandais"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "polonais (QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "polonais (QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "portugais"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "canadien (Qubec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "roumain (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "roumain (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "russe (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "slovnien"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "slovaque (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "slovaque (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "serbe (cyrillique)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "tamoul"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "thalandais"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "tadjik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "turc (modle traditionnel F)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "turc (modle moderne Q)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "ukrainien"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "amricain (international)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "vietnamien colonne numrique QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "yougoslave (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Touche Alt droite"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Deux touches Shift simultanment"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Touches Control et Shift simultanment"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Touche CapsLock (verrouillage majuscule)"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Touches Ctrl et Alt simultanment"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Touches Alt et Shift simultanment"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Touche Menu"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Touche Windows gauche"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Touche Windows droite"
@@ -6364,7 +6477,29 @@ msgstr "Points de montage circulaires %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Enlevez d'abord les volumes logiques\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "un nombre"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d nombres spars par des virgules"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d chanes spares par des virgules"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "nombres spars par des virgules"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "chanes spares par des virgules"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6407,10 +6542,6 @@ msgstr "1 bouton"
msgid "Generic 2 Button Mouse"
msgstr "Souris standard 2 boutons"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Gnrique"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Roulette"
@@ -6475,41 +6606,57 @@ msgstr "aucun"
msgid "No mouse"
msgstr "Pas de souris"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Veuillez tester votre souris"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Pour activer la souris,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr "veuillez faire tourner la molette"
+msgstr "VEUILLEZ FAIRE TOURNER LA MOLETTE!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Terminer"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Suivant ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Prcdent"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Est-ce correct?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Information"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Dvelopper l'arborescence"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Rduire l'arborescence"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Basculer entre tri alphabtique et tri par groupes"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
-msgstr "Connexion l'internet"
+msgstr "Connexion Internet"
#: ../../network/adsl.pm_.c:20
msgid ""
@@ -6517,7 +6664,7 @@ msgid ""
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-"La faon la plus courante de se connecter l'internet en utilisant\n"
+"La faon la plus courante de se connecter Internet en utilisant\n"
"une ligne ADSL est d'utiliser pppoe.\n"
"\n"
"Certaines connexions utilisent pptp, quelques unes se servent de DHCP "
@@ -6558,20 +6705,20 @@ msgstr ""
"Aucune carte rseau n'a t dtecte sur votre systme.\n"
"La connexion ne peut donc pas tre configure."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Choisissez la carte rseau"
#: ../../network/ethernet.pm_.c:93
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Veuillez choisir la carte rseau qui sera connecte l'internet"
+msgstr "Veuillez choisir la carte rseau qui sera connecte Internet"
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
msgstr "Aucune carte rseau n'a t identifie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configuration du rseau"
@@ -6587,15 +6734,15 @@ msgstr ""
"Celui-ci doit tre pleinenement qualifi, comme par exemple:\n"
"mamachine.monlabo.masociete.com"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nom d'hte:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Assistant de configuration rseau"
@@ -6635,11 +6782,11 @@ msgstr ""
#: ../../network/isdn.pm_.c:54
msgid "New configuration (isdn-light)"
-msgstr "nouvelle configuration (isdn-light)"
+msgstr "Nouvelle configuration (isdn-light)"
#: ../../network/isdn.pm_.c:54
msgid "Old configuration (isdn4net)"
-msgstr "ancienne configuration (isdn4net)"
+msgstr "Ancienne configuration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
@@ -6650,7 +6797,7 @@ msgstr "Configuration RNIS/ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Veuillez choisir votre fournisseur d'accs.\n"
"S'il ne figure pas dans la liste, choisissez Non list頻."
@@ -6669,14 +6816,14 @@ msgstr "Protocole pour le reste du monde"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocole pour le reste du monde \n"
" Pas de D-Channel (lignes loues)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Quel protocole dsirez-vous utiliser?"
#: ../../network/isdn.pm_.c:199
@@ -6700,7 +6847,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si vous possdez une carte ISA, les donnes du prochain cran devraient\n"
@@ -6718,13 +6866,13 @@ msgid "Continue"
msgstr "Continuer"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Quel est le modle de votre carte RNIS/ISDN?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Une carte RNIS/ISDN a t dtecte mais son type est inconnu. Veuillez "
"slectionner une carte PCI dans le prochain cran."
@@ -6743,47 +6891,47 @@ msgstr "Veuillez choisir le port srie sur lequel votre modem est connect."
msgid "Dialup options"
msgstr "Options d'appel"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nom de la connexion"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Numro de tlphone"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Identifiant de connexion"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Base sur un script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Manuelle par terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nom de domaine"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "serveur DNS principal (optionnel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "serveur DNS secondaire (optionnel)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6791,7 +6939,7 @@ msgstr ""
"\n"
"Vous pouvez vous dconnecter ou reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6799,44 +6947,44 @@ msgstr ""
"\n"
"Vous pouvez reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
-msgstr "Vous tes actuellement connect l'internet."
+msgstr "Vous tes actuellement connect Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
-"Vous pouvez vous connecter l'internet ou reconfigurer votre connexion."
+"Vous pouvez vous connecter Internet ou reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
-msgstr "Vous n'tes actuellement pas connect l'internet."
+msgstr "Vous n'tes actuellement pas connect Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Connecter"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Se dconnecter"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Configurez la connection"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connexion internet et configuration"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Nous allons configurer la connexion %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6855,12 +7003,12 @@ msgstr ""
"\n"
"Cliquez sur OK pour continuer."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuration du rseau"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6872,9 +7020,9 @@ msgstr ""
"Cliquez sur <Ok> pour conserver votre configuration,\n"
"ou sur <Annuler> pour reconfigurer votre connexion internet et rseau.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6885,92 +7033,98 @@ msgstr ""
"Si vous ne souhaitez pas utiliser la dtection automatique, dslectionnez "
"la case correspondante.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Choisissez le profil configurer"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Utiliser la dtection automatique"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode Expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Dtection des priphriques..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Connexion par modem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "dtect sur le port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Connexion par RNIS/ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "dtect %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Connexion par ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "dtect sur l'interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
-msgstr "Connexion par Cable"
+msgstr "Connexion par cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
-msgstr "Connexion par Cable dtecte"
+msgstr "connexion par Cable dtecte"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
-msgstr "Connection travers un rseau local (LAN)"
+msgstr "Connexion travers un rseau local (LAN)"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "carte(s) ethernet dtecte(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Choisissez la connexion que vous voulez configurer"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-"Vous avez configur plusieurs moyens d'accs l'internet.\n"
+"Vous avez configur plusieurs moyens d'accs Internet.\n"
"Choisissez celui que vous voulez utiliser.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Connexion internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Dsirez-vous activer la connexion lors du dmarrage?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuration du rseau"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Le rseau doit tre redmarr"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6981,7 +7135,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6992,7 +7146,7 @@ msgstr ""
"La configuration va maintenant tre applique votre systme.\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7000,32 +7154,32 @@ msgstr ""
"Une fois termin, il est recommand de redmarrer votre interface graphique, "
"afin d'viter les problmes lis au changement de nom d'hte de la machine."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Des problmes sont apparus pendant la configuration.\n"
"Testez votre connexion avec le Centre de Contrle Mandrake (dans la "
"section rseau) ou la commande net_monitor. Si votre connexion ne "
"fonctionne pas, vous pouvez essayer de relancer la configuration."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-"ATTENTION: Ce priphrique a dj t configur pour la connexion "
+"ATTENTION: ce priphrique a dj t configur pour la connexion "
"internet.\n"
"\n"
"Cliquez simplement sur OK pour conserver sa configuration.\n"
"Sinon la configuration actuelle sera crase par les modifications que vous "
"ferez."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7035,38 +7189,42 @@ msgstr ""
"Chaque champ doit tre complt avec une adresse IP en notation\n"
"dcimale pointe (par exemple, 12.34.56.78)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configuration du priphrique rseau %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (pilote %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Adresse IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Masque de sous-rseau"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Attribution automatique de l'adresse IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Excuter au dmarrage"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adresse IP doit ressembler quelque chose comme 192.168.1.20"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7079,176 +7237,181 @@ msgstr ""
"Vous pouvez galement indiquer l'adresse IP de la passerelle\n"
"si votre rseau local en possde une."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Serveur DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passerelle (p.ex. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Priphrique passerelle"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuration des serveurs mandataires (proxy)"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Serveur mandataire HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Serveur mandataire FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Identifiant de la carte rseau (utile pour les portables)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "La syntaxe doit tre http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "La syntaxe doit tre ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
-msgstr "Configuration de l'accs internet"
+msgstr "Configuration de l'accs Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
-msgstr "Voulez-vous vous connecter l'internet maintenant?"
+msgstr "Voulez-vous vous connecter Internet maintenant?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Test de votre connexion..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
-msgstr "Le systme est prsent connect l'internet."
+msgstr "Le systme est prsent connect Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Pour des raisons de scurit, il va tre dconnect maintenant."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-"Le systme ne semble pas connect l'internet.\n"
-"Essayez de reconfigurer votre connection."
+"Le systme ne semble pas connect Internet.\n"
+"Essayez de reconfigurer votre connexion."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuration de la connexion"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Veuillez complter ou vrifier les champs ci-dessous"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "n IRQ de la carte"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Plage mmoire (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S de la carte"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_O de la carte"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 de la carte"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Votre numro de tlphone personnel"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
-msgstr "Fournisseur d'accs (ex.: provider.fr)"
+msgstr "Fournisseur d'accs (ex.: fournisseur.fr)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Numro de tlphone pour l'accs"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "1er DNS du fournisseur (optionnel)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "2me DNS du fournisseur (optionnel)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Choisissez votre pays"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Numrotation"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Vitesse de connexion"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Temps maxi pour tablir la connexion (en sec.)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
-msgstr "nom d'utilisateur du compte"
+msgstr "Nom d'utilisateur du compte"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Mot de passe du compte"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Royaume-Uni"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "Le montage a chou: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Les partitions tendues ne sont pas supporte par cette plateforme"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Il y a un espace vide dans la table des partitions mais il est\n"
"inutilisable. La seule solution est de dplacer vos partitions primaires\n"
"de telle faon que cet espace soit plac contre les partitions tendues."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restauration impossible depuis le fichier %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Mauvais fichier de sauvegarde"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Erreur d'criture dans le fichier %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7259,186 +7422,186 @@ msgstr ""
"chou.\n"
"Cela signifie que serez victime de pertes alatoires de donnes."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
-msgstr "doit avoir"
+msgstr "obligatoire"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "trs utile"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "utile"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ventuellement"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Nouvelle Gnration"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Imprimante locale"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Imprimante distante"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Imprimante sur serveur CUPS distant"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Imprimante sur serveur LPD distant"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Imprimante rseau autonome (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Imprimante sur serveur SMB (Windows 95/98/NT)"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Imprimante sur serveur NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Indiquer l'adresse du priphrique d'impression"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Impression vers une commande shell"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Modle inconnu"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Imprimantes locales"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Imprimantes distantes"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " sur port parallle \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", imprimante USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", priphrique multi-fonctions sur le port parallle \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", priphrique USB multi-fonctions"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", priphrique HP JetDirect multi-fonctions"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", priphrique multi-fonctions"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", impression sur %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "sur serveur d'impression LPD %s, imprimante %s"
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", hte TCP/IP %s, port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "sur serveur Windows %s, partage %s"
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "sur serveur Novell %s, imprimante %s"
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", en utilisant la commande %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Imprimante accs direct (pas de pilote)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(sur %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(sur cette machine)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Sur serveur CUPS %s"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Dfaut)"
@@ -7460,11 +7623,11 @@ msgstr ""
"Si vous utilisez un serveur CUPS distant, vous n'avez pas besoin de "
"configurer d'imprimante ici. Elles seront automatiquement dtectes."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Configuration de CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Specifiez le serveur CUPS"
@@ -7512,7 +7675,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'adresse IP doit ressembler quelque chose comme 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Le numro de port doit tre un nombre entier!"
@@ -7520,7 +7683,7 @@ msgstr "Le numro de port doit tre un nombre entier!"
msgid "CUPS server IP"
msgstr "Adresse IP du serveur CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7528,20 +7691,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuration automatique du serveur CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Dtection des priphriques..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test des ports"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Ajouter une nouvelle imprimante"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7565,13 +7720,13 @@ msgstr ""
"disponibles ainsi qu' toutes leurs options et tous les types de "
"connection."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Imprimante locale"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7604,11 +7759,11 @@ msgstr ""
"printerdrake si vous voulez installer une imprimante rseau\n"
"qui n'est pas liste automatiquement."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Dtection automatique des imprimantes"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7632,11 +7787,11 @@ msgstr ""
"etc.), rendez-vous dans la partie imprimantede la section matriel "
"du Centre de Contrle Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Dtection automatique des imprimantes"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7653,33 +7808,37 @@ msgstr ""
"\n"
"Voulez-vous vraiment auto-dtecter vos imprimantes?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Lancer la dtection automatique"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Configurer l'imprimante manuellement"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test des ports"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Dtect %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Imprimante sur le port parallle \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Imprimante USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7692,11 +7851,11 @@ msgstr ""
"quivalents LPT1:, LPT2:, ..., premire imprimante USB: /dev/usb/lp0, "
"deuxime imprimante USB: /dev/usb/lp1, ...) "
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Vous devez enter un nom de fichier ou de priphrique!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7704,7 +7863,7 @@ msgstr ""
"Aucune imprimante locale n'a pu tre trouve!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7713,7 +7872,7 @@ msgstr ""
"Choississez Matriel puis Imprimantes dans le Centre de Contrle de "
"Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7722,7 +7881,7 @@ msgstr ""
"en Mode Expert et cliquez nouveau sur Ajouter une nouvelle "
"imprimante."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7731,7 +7890,7 @@ msgstr ""
"voulez configurer, tapez un nom de fichier ou de priphrique dans le champs "
"d'entre"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7740,7 +7899,7 @@ msgstr ""
"l'imprimante que vous voulez configurer ou tapez un nom de priphrique ou "
"de fichier dans le champs d'entre"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7752,7 +7911,7 @@ msgstr ""
"correctement dtecte ou si vous prfrer effectuer une configuration "
"personalise, activez Configuration Manuelle ."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7765,7 +7924,7 @@ msgstr ""
"correctement dtecte ou si vous prfrer effectuer une configuration "
"personalise, activez Configuration Manuelle .\""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7773,11 +7932,11 @@ msgstr ""
"Veuillez choisir le port sur laquelle votre imprimante est connecte ou "
"tapez le nom du priphrique ou de fichier dans le champs d'entre"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Veuillez choisir le port sur lequel votre imprimante est connecte."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7786,52 +7945,63 @@ msgstr ""
"LPT2:, ..., premire imprimante USB: /dev/usb/lp0, deuxime imprimante "
"USB: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Vous devez choisir ou entrer une imprimante ou un priphrique!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Configuration manuelle"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Votre imprimante est-elle un appareil multifonction de HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"LaserJet 1100/1200/1220/3200/3300 avec scanner), une HP PhotoSmart ou une HP "
+"LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installation du paquetage HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Vrification du priphrique et configuration de HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Installation du paquetage SANE ..."
+#: ../../printerdrake.pm_.c:504
+msgid "Installing SANE packages..."
+msgstr "Installation des paquetages SANE ..."
+
+#: ../../printerdrake.pm_.c:524
+msgid "Installing mtools packages..."
+msgstr "Installation des paquetages mtools..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Acquisition partir de votre priphrique multi-fonction HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Acquisition partir de votre priphrique multi-fonction HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Mise disposition du port imprimante pour CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lecture de la base de donnes des imprimantes..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Configuration d'une imprimante Unix (lpd) distante"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7839,27 +8009,27 @@ msgstr ""
"Pour utiliser une imprimante Unix distante, vous devez indiquer le nom "
"d'hte du serveur LPD et le nom attribu l'imprimante par ce serveur."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nom d'hte du serveur"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nom de l'imprimante"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nom du serveur distant manquant!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Le nom de l'imprimante est manquant!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Configuration d'une imprimante SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7873,35 +8043,35 @@ msgstr ""
"d'utilisateur, mot de passe et groupe de travail ncessaires pour accder "
"l'imprimante."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Nom du serveur"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "Adresse IP du serveur"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nom de partage de l'imprimante"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Groupe de travail"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Il faut au moins prciser le nom du serveur ou son adresse IP."
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Il faut prciser le nom de partage de l'imprimante."
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "ALERTE DE SCURITɠ!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7924,8 +8094,29 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Vous tes sur le point de paramtrer l'impression vers un compte Windows "
+"avec mot de passe. A cause d'une erreur dans la conception du logiciel "
+"client Samba, le mot de passe est inscrit en clair dans la ligne de commande "
+"qu'il envoie pour transmettre le travail d'impression au serveur Windows. Il "
+"est donc possible pour n'importe quel utilisateur de cette machine "
+"d'afficher l'cran ce mot de passe, simplement ent tapant une commande "
+"comme ps auxwww.\n"
+"\n"
+"Nous vous conseillons d'utiliser les solutions alternatives suivantes (dans "
+"tous les cas, vous devez vous assurer que seules les machines de votre "
+"rseau local peuvent accder votre serveur Windows, l'aide d'un pare-feu "
+"logiciel (firewall) par exemple):\n"
+"\n"
+"Utilisez un compte sans mot de passe sur votre serveur Windows, tel que le "
+"compte Invit頻 ou alors un compte ddi spcialement l'impression. "
+"N'enlevez pas la protection d'un compte Utilisateur ou Administrateur.\n"
+"\n"
+"Paramtrez votre serveur Windows afin que les imprimantes soient disponibles "
+"sous le protocole LPD. Rglez ensuite l'impression de cette machine-ci avec "
+"le type de connexion %s dans Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7933,20 +8124,29 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Paramtrez votre serveur Windows afin que l'imprimante soit disponible sous "
+"le protocole IPP et rglez l'impression partir de cette machine-ci avec le "
+"type de connexion %s dans Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"Branchez votre imprimante sur un serveur Linux et laissez votre(vos) machine"
+"(s) Windows se connecter en tant que client.\n"
+"\n"
+"Voulez-vous vraiment poursuivre le parmtrage de cette imprimante de cette "
+"faon?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Options de l'imprimante NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7958,27 +8158,27 @@ msgstr ""
"du nom d'hte TCP/IP) et le nom de la file d'impression laquelle vous "
"voulez accder ainsi qu'un nom de login et un mot de passe si ncessaire."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Nom du serveur d'impression"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nom de la file d'impression"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Nom du serveur NCP manquant!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Nom de la file d'attente NCP manquant!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Options de l'imprimante rseau (TCP/socket)"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7991,19 +8191,19 @@ msgstr ""
"port est habituellement 9100, mais cela peut tre diffrent pour\n"
"d'autres serveurs. Veuillez consulter le manuel de votre imprimante."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nom d'hte de l'imprimante"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nom d'hte de l'imprimante manquant!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Adresse rseau du priphrique d'impression"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8015,11 +8215,11 @@ msgstr ""
"que tous les types d'URL ne sont pas supports par tous les gestionnaires "
"d'impression."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Une adresse valide doit tre entre!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8029,27 +8229,23 @@ msgstr ""
"Les champs Description et Emplacement n'ont pas besoin d'tre "
"remplis. Ce sont de simples commentaires pour les utilisateurs."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nom de l'imprimante"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Description"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Emplacement"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Prparation de la base de donnes des imprimantes..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Le modle de votre imprimante"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8073,24 +8269,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Le modle est correct"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Slectionner manuellement le modle"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Slection du modle de l'imprimante"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Quel modle d'imprimante possdez-vous?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8104,7 +8300,7 @@ msgstr ""
"modle correct dans la liste si le curseur se situe sur un modle erron ou "
"sur Imprimante accs direct."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8112,11 +8308,11 @@ msgstr ""
"Si votre imprimante n'est pas liste, choisissez-en une compatible (voir le "
"manuel de l'imprimante) ou similaire."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Configuration de l'imprimante OKI winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8133,11 +8329,11 @@ msgstr ""
"l'impression de la page de test. Sans cela, l'imprimante ne fonctionnera pas "
"Vos paramtres de type de connexion seront ignors par le pilote."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Configuration de l'imprimante Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8149,7 +8345,7 @@ msgstr ""
"des serveurs d'impression. Veuillez connecter votre imprimante sur un port "
"local ou configurez-la sur la machine laquelle elle est connecte."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8173,7 +8369,7 @@ msgstr ""
"d'impression avec lexmarkmaintain et ajustez les paramtres de ces ttes "
"avec ce programme."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8188,22 +8384,22 @@ msgstr ""
"sont correctement indiqus. Notez que la vitesse d'impression peut diminuer "
"si vous augmentez la qualit d'impression."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "L'option %s doit tre un nombre entier!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "L'option %s tre un nombre!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "L'option %s est en dehors des limites!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8212,11 +8408,11 @@ msgstr ""
"Dsirez-vous que l'imprimante %s soit l'imprimante\n"
"par dfaut?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Pages de test"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8229,39 +8425,39 @@ msgstr ""
"mme ne pas sortir.\n"
"Dans la plupart des cas, l'impression de la page de test standard suffit."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Pas de page de test"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Imprimer"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Page de test standard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Page de test alternative (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Page de test alternative (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Page de test photo"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Ne pas imprimer de page de test"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Impression des pages de test..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8276,7 +8472,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8284,15 +8480,15 @@ msgstr ""
"Les pages de test ont t envoyes l'imprimante.\n"
"Il peut se passer un certain temps avant le dbut effectif de l'impression.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "tes-vous satisfait du rsultat?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Imprimante accs direct"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8306,7 +8502,7 @@ msgstr ""
"<fichier>. Les utilitaires graphiques vous permettent de choisir "
"l'imprimante et de modifier les paramtres d'impression facilement.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8317,8 +8513,8 @@ msgstr ""
"applications. Dans ce cas n'indiquez pas le nom du fichier puisqu'il sera "
"fourni par l'application elle-mme.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8331,18 +8527,18 @@ msgstr ""
"pour une impression particulire. Il suffit pour cela d'ajouter les "
"paramtres voulus sur la ligne de commande. Par exemple, %s <fichier>. "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Pour obtenir la liste des paramtres disponibles pour l'imprimante courante, "
-"lisez la liste ci-dessous ou cliquez sur le bouton liste des options "
-"d'impression.%s\n"
+"lisez la liste ci-dessous ou cliquez sur le bouton imprimer la liste des "
+"options.%s%s\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8351,7 +8547,7 @@ msgstr ""
"courante:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8360,8 +8556,8 @@ msgstr ""
"Pour imprimer un fichier depuis la ligne de commande (une fentre de "
"terminal), utilisez la commande %s<fichier>.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8372,7 +8568,7 @@ msgstr ""
"applications. Dans ce cas, n'indiquez pas le nom du fichier imprimer "
"puisque celui-ci sera fourni par l'application elle-mme.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8380,7 +8576,7 @@ msgstr ""
"Pour obtenir la liste des paramtres disponibles pour l'imprimante courante, "
"cliquez sur le bouton liste des options d'impression."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8389,7 +8585,7 @@ msgstr ""
"Pour imprimer un fichier depuis la ligne de commande (une fentre de "
"terminal), utilisez la commande %s <fichier> ou %s <fichier>.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8406,7 +8602,7 @@ msgstr ""
"les travaux d'impression. Ceci peut tre utile en cas de bourrage papier, "
"par exemple.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8420,38 +8616,49 @@ msgstr ""
"cela d'ajouter les paramtres voulus sur la ligne de commande, par exemple "
"%s <fichier>.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Fermer"
+#: ../../printerdrake.pm_.c:1773
+#, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Impression/Acquisition/Cartes photo sur %s"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Impression/Acquisition sur l'imprimante %s"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Impression/Accs aux cartes photos sur %s"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Impression sur l'imprimante %s"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Fermer"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste des options d'impression"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8466,39 +8673,30 @@ msgstr ""
"\n"
"N'utilisez pas scannerdrake pour cet appareil! "
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Votre appareil multifonction HP a t configur automatiquement pour tre "
-"capable de scanner. Maintenant vous pouvez scanner avec tal-hp %s scan ... "
-" dans une fentre de commandes. L'acquisition par interface graphique ou "
-"grace Gimp n'est pas encore suporte avec cet appareil. Vous trouverez "
-"plus d'informations dans le fichier /usr/share/doc/hpoj-0.8/ptal-hp-scan."
-"html sur votre systme. Si vous avez une HP LaserJet 1100 ou 1200, vous "
-"pouvez seulement scanner si vous avez l'option scanner installe.\n"
-"\n"
-"N'utilisez pas scannerdrake pour cet appareil! "
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lecture des donnes de l'imprimante..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Transfert de la configuration de l'imprimante"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8515,7 +8713,7 @@ msgstr ""
"Toutes les files d'attente n'ont pas pu tre transfres cause des raisons "
"suivantes:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8523,7 +8721,7 @@ msgstr ""
"CUPS ne supporte pas les imprimantes sur les serveurs Novell ni les "
"impressions vers des commandes shell.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8531,11 +8729,11 @@ msgstr ""
"PDQ ne supporte que les imprimantes locales, les imprimantes LPD distantes, "
"et les imprimantes rseau autonomes.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD et LPRng ne supportent pas les imprimantes IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8543,7 +8741,7 @@ msgstr ""
"De plus, les files d'attente qui n'ont pas t cres avec ce programme ou "
"avec foomatic-configure ne peuvent pas tre transfres."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8553,7 +8751,7 @@ msgstr ""
"Aussi, les imprimantes configures avec les fichiers PPD fournis par leur "
"fabriquant ou avec des pilotes CUPS natifs ne peuvent pas tre transfres."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8563,15 +8761,15 @@ msgstr ""
"Cochez les imprimantes que vous voulez transfrer, et\n"
"cliquez sur Transfert."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Ne pas transfrer les imprimantes"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Transfert"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8583,13 +8781,13 @@ msgstr ""
"Vous pouvez galement taper un nouveau nom ou\n"
"simplement ignorer cette imprimante."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Le nom de l'imprimante ne devrait contenir que des lettres, des nombres et "
"des tirets bas (_)"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8598,16 +8796,16 @@ msgstr ""
"L'imprimante %s existe dj,\n"
"voulez-vous vraiment craser sa configuration?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nouveau nom de l'imprimante"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Transfert de %s..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8617,29 +8815,29 @@ msgstr ""
"elle tre galement l'imprimante par dfaut de votre nouveau systme "
"d'impression %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Mise jour des donnes de l'imprimante..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Configuration d'une imprimante distante"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Dmarrage du rseau..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Configurez le rseau maintenant"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Les fonctionnalits du rseau ne sont pas configures"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8651,11 +8849,11 @@ msgstr ""
"voulez continuer sans configurer le rseau, vous ne pourez pas utiliser "
"l'imprimante que vous tes en train de configurer. Que voulez-vous faire?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Continuer sans configurer le rseau"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8671,7 +8869,7 @@ msgstr ""
"essayez nouveau de configurer l'imprimante dans la section Matriel / "
"Imprimante."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8681,24 +8879,24 @@ msgstr ""
"de votre matriel et de votre accs rseau grce au Centre de Contrle "
"Mandrake puis essayez nouveau de configurer l'imprimante distante."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Redmarrage du systme d'impression..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "lev"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoaque"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation du systme d'impression sous le niveau de scurit %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8724,11 +8922,11 @@ msgstr ""
"\n"
"Voulez-vous rellement installer un systme d'impression?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Activation du systme d'impression au dmarrage"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8750,63 +8948,63 @@ msgstr ""
"\n"
"Voulez-vous rtablir l'activation automatique du systme d'impression?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Vrification du logiciel install..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Suppression de LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Suppression de LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Choisissez le gestionnaire d'impression"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quel systme d'impression dsirez-vous utiliser?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configuration de l'imprimante %s..."
+msgid "Configuring printer \"%s\"..."
+msgstr "Configuration en cours de l'imprimante %s..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installation de Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Options de l'imprimante"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Prparation de PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Configuration des applications...."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Dsirez-vous configurer l'impression?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Systme d'impression: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8818,7 +9016,7 @@ msgstr ""
"consulter les informations son propos ou pour rendre une imprimante d'un "
"serveur CUPS distant utilisable par Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8828,30 +9026,34 @@ msgstr ""
"pour modifier ses paramtres, en faire l'imprimante par dfaut ou consulter "
"les informations son propos."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Rafrachir la liste des imprimantes (pour afficher toutes les imprimantes "
"CUPS distantes)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Changer le systme d'impression"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Quitter"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Dsirez-vous configurer une autre imprimante?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modifier la configuration de l'imprimante"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8860,102 +9062,102 @@ msgstr ""
"Imprimante %s\n"
"Que souhaitez-vous modifier sur cette imprimante?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Faire"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Type de connexion"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nom, description, emplacement"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Marque, modle, pilote"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Marque, modle"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Choisir comme imprimante par dfaut"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Ajouter cette imprimante StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Retirer cette imprimante de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Imprimer des pages de test"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Savoir comment utiliser cette imprimante"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Dsinstaller l'imprimante"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Dsinstallation de l'ancienne imprimante %s..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Imprimante par dfaut"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "L'imprimante %s est maintenant celle par dfaut."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ajout de l'imprimante StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "L'imprimante %s a t ajoute avec succs StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Impossible d'ajouter l'imprimante %s StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Retrait de l'imprimante de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "L'imprimante %s a t retire avec succs de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Impossible de retirer l'imprimante %s de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Dsirez-vous vraiment dsinstaller l'imprimante %s?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Suppression de l'imprimante %s..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9043,24 +9245,62 @@ msgstr ""
"Impossible d'ajouter une partition au RAID md%d car\n"
"celui-ci est dj format"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Impossible d'crire le fichier %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid a chou"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid a chou (les raidtools sont-ils installs?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Trop peu de partitions pour du RAID de niveau %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Ce niveau de scurit doit tre utilis avec prcaution. Il rend votre\n"
+"systme plus facile utiliser, aux dpens de la scurit. Il ne devrait\n"
+"donc pas tre utilis sur une machine connecte un rseau ou Internet.\n"
+"Aucun mot de passe n'est requis."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Avec ce niveau de scurit, l'utilisation de cette machine en tant que\n"
+"serveur devient envisageable. La scurisation est suffisamment forte pour\n"
+"accepter les connexions de nombreux clients. Note: si votre machine est\n"
+"seulement connecte en tant que client sur Internet, vous devriez plutt\n"
+"choisir un niveau infrieur."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Options avances"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Options"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9130,7 +9370,7 @@ msgstr ""
"HardDrake effectue une dtection matrielle, et configure ventuellement le "
"nouveau matriel."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9177,7 +9417,7 @@ msgid ""
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Rgnration automatique des fichiers d'en-ttes pour le noyau\n"
-"dans le dossier /boot pour /usr/include/linux/{autoconf,version}.h"
+"dans le rpertoire /boot pour /usr/include/linux/{autoconf,version}.h"
#: ../../services.pm_.c:40
msgid "Automatic detection and configuration of hardware at boot."
@@ -9209,7 +9449,7 @@ msgstr ""
"utilis pour crer un serveur virtuel haute-performance et haute "
"disponibilit, compos d'un ensemble de serveur linux relis entre eux."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9247,9 +9487,10 @@ msgid ""
"/etc/exports file."
msgstr ""
"Dmarrage ou arrt du serveur NFS. Un serveur NFS permet d'effectuer un "
-"partage de fichiers en ouvrant l'accs certains dossiers depuis un rseau. "
-"Les dossiers partags sont lists dans le fichier /etc/exports, mais vous "
-"pouvez l'diter grce linuxconf dans la section rseau / serveur."
+"partage de fichiers en ouvrant l'accs certains rpertoires depuis un "
+"rseau. Les rpertoires partags sont lists dans le fichier /etc/exports, "
+"mais vous pouvez l'diter grce linuxconf dans la section rseau / "
+"serveur."
#: ../../services.pm_.c:55
msgid ""
@@ -9297,7 +9538,7 @@ msgstr ""
"comme NFS et NIS. Le serveur portmap doit tre activ sur des machines "
"jouant le rle de serveur pour des protocoles utilisant le mcanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9402,7 +9643,7 @@ msgstr "internet"
msgid "File sharing"
msgstr "Partage de fichiers"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systme"
@@ -9533,6 +9774,7 @@ msgstr ""
"environnements Open Source."
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Control Center"
@@ -9656,6 +9898,17 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Installation des paquetages..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Veuillez vous dconnecter puis presser simultanment les touches Ctrl-Alt-"
+"BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Veuillez relancer %s pour activer les changements"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9664,6 +9917,145 @@ msgstr ""
"La table des partitions ne peut tre lue car elle semble endommage.\n"
"Une rinitialisation des partitions endommages va tre tente."
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuration du Serveur de Terminaux Mandrake"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Activer le serveur"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Dsactiver le serveur"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Lancer le serveur"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Arrter le serveur"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Ajouter/Effacer un utilisateur"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Ajouter/Effacer un client"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Aide"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Disquette de dmarrage"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Image ISO de dmarrage"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Construire le Kernel entier -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Cel va prendre quelques minutes."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Aucun noyau slectionn!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Aucune interface rseau slectionne!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Construire tous les noayx -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Effacer"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Slectionne tout"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Ajouter un utilisateur -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Effacer un utilisateur"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Ajouter un client -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Effacer un client"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Configuration de dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "crire la configuration"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "SVP, veuillez insrez une disquette d'amorage dans le lecteur"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Impossible d'accder la disquette!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "La disquette peut maintenant etre retire du lecteur"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Aucun lecteur de disquette disponible!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Quelque chose s'est mal pass! mkisofs est-il bien install?"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Erreur!"
@@ -9717,6 +10109,10 @@ msgstr ""
"Veuillez choisir, pour chaque tape, si celle-ci doit tre rejoue comme "
"pendant votre installation, ou si elle doit s'effectuer manuellement."
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Cration de la disquette d'auto-installation"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9730,12 +10126,12 @@ msgstr ""
"Les paramtres de l'installation automatique sont disponibles dans les "
"sections sur la gauche."
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Flicitations!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9743,28 +10139,19 @@ msgstr ""
"La disquette a t gnre avec succs.\n"
"Vous pouvez maintenant rejouer votre installation."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Installation automatique"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Ajouter un lment"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Supprimer le dernier lment"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9774,7 +10161,7 @@ msgstr ""
" Rapport de sauvegarde (DrakBackup) \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9786,19 +10173,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9810,63 +10185,85 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "TOTAL:"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Sauvegarde des fichiers systmes..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Sauvegarde des autres fichiers..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-"liste envoye par FTP: %s\n"
+"liste des fichiers envoye par FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Problme de connection FTP: impossible d'envoyer les sauvegardes par "
-"FTP.\n"
+"Problme de connection FTP: impossible d'envoyer vos fichiers de sauvegarde "
+"par FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Erreur lors de l'envoi du mail?\n"
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr "Erreur lors de l'envoi du courrier.\n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
-msgstr "Slection de fichiers ou dossiers"
+msgstr "Slection de fichiers ou rpertoires"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
-msgstr "Slectionnez les fichiers ou dossiers puis cliquez sur Ajouter"
+msgstr "Slectionnez les fichiers ou rpertoires puis cliquez sur Ajouter"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9874,107 +10271,100 @@ msgstr ""
"\n"
"Veuillez cocher toutes les options dont vous avez besoin.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ces options peuvent sauvegarder et restaurer\n"
-"tous les fichiers du dossier de configuration systme /etc\n"
+"tous les fichiers du rpertoire de configuration systme /etc\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
-msgstr "Sauvegarder le dossier de configuration systme (dossier /etc)"
+msgstr "Sauvegarder le rpertoire de configuration systme (rpertoire /etc)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Sauvegardes incrmentales (conomie d'espace)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Ne pas inclure les fichiers critiques (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
"Note: la sauvegarde incrmentale n'crase pas les anciennes sauvegardes."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Veuillez cocher tous les comptes utilisateurs sauvegarder"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Ne pas inclure le cache du navigateur internet (fichiers tampon)"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Sauvegardes incrmentales (conomie d'espace)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Supprimer slection"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Utilisateurs..."
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Sauvegarder par FTP"
+#: ../../standalone/drakbackup_.c:1257
+msgid "Use network connection to backup"
+msgstr "Sauvegarder via le rseau"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Nom d'hte ou adresse IP de la machine de sauvegarde"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Dossier o poser la sauvegarde sur cette machine"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Nom de connexion sur cette machine"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Veuillez entrer votre mot de passe"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Se souvenir du mot de passe"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "par connexion FTP..."
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "par connexion scurise..."
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Sauvegarder sur CDR (ou DVDR)"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Veuillez choisir la taille de votre CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "CD Rinscriptible"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Effacer le CDRW avant sauvegarde"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9982,7 +10372,7 @@ msgstr ""
"Veuillez vrifier que vous voulez inclure\n"
"le lanceur de l'installation sur votre CD"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9990,144 +10380,151 @@ msgstr ""
"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
"(dtecter avec cdrecord -scanbus. Par exemple: 0,1,0 )"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Sauvegarde sur cartouche"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Nom de priphrique du matriel de sauvegarde (/dev/...?)"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+msgid "Please check if you want to erase your tape before the backup."
+msgstr ""
+"Etes vous sur de vouloir effacer votre bande magntique avant de faire la "
+"sauvegarde."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr "Taille maximale de sauvegarde:"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Dossier o poser la sauvegarde:"
+#: ../../standalone/drakbackup_.c:1497
+msgid "Please enter the directory to save to:"
+msgstr "Veuillez indiquer le dossier o sauvegarder:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Limiter la taille de la sauvegarde"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "par transfert rseau..."
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
-msgstr "Dans un dossier (local ou partag)..."
+msgstr "Dans un rpertoire (local ou partag)..."
+
+#: ../../standalone/drakbackup_.c:1595
+msgid "Tape"
+msgstr "Bande"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "toutes les heures"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "tous les jours"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "toutes les semaines"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "tous les mois"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Sauvegarde priodique"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Veuillez choisir l'intervalle de temps entre les sauvegardes"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Quelle sauvegarde sera priodique?"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "celle sur Disque dur / NFS"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "celle par FTP"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"ATTENTION: Le cron doit tre actif dans vos services. (voir le Centre "
-"de Contrle Mandrake section systme / services)"
+"Veuillez vrifier que le dmon cron fait partie de vos services.\n"
+"\n"
+"Tenez compte du fait qu'actuellement tous les mdias rseaux utilisent "
+"galement le disque dur."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Envoyer un rapport par mail aprs chaque sauvegarde :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Quoi..."
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "O..."
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Quand..."
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Plus d'options..."
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Configuration de sauvegarde Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Veuillez choisir o stocker la sauvegarde"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "sur disque dur"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "par rseau"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Veuillez choisir ce que vous voulez sauvegarder"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Sauvegarder le systme"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Sauvegarder les comptes utilisateurs"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Slectionner individuellement les utilisateurs"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10135,7 +10532,7 @@ msgstr ""
"\n"
"Sources de sauvegarde: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10143,7 +10540,7 @@ msgstr ""
"\n"
"- Fichiers systme:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10151,42 +10548,73 @@ msgstr ""
"\n"
"- Donnes des utilisateurs:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
"\n"
-"- Autres fichiers ou dossiers:\n"
+"- Autres fichiers ou rpertoires:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
"\n"
-"- Sauvegarde sur le disque dur dans le dossier: %s\n"
+"- Sauvegarde sur le disque dur dans le rpertoire: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+"\n"
+"- Graver le CD"
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr "RW"
+
+#: ../../standalone/drakbackup_.c:1978
+#, c-format
+msgid " on device : %s"
+msgstr "sur le priphrique: %s"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Sauvegarde sur bande via le pphrique: %s"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
-"- Sauvegarde par FTP sur la machine: %s\n"
+"- Sauvegarde via %s sur la machine: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
"\t\t nom de connexion: %s\n"
-"\t\t dans le dossier: %s \n"
+"\t\t dans le rpertoire: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10194,19 +10622,19 @@ msgstr ""
"\n"
"- Options:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tFichiers systmes non inclus\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLe sauvegarde utilise tar et bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tLa sauvegarde utilise tar et gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10215,30 +10643,44 @@ msgstr ""
"\n"
"- Le Dmon (%s) comprend:\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-celle sur Disque dur.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-celle sur CDR.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr "\t-Bande\n"
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-celle par transfert FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-celle par transfert SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-celle par transfert FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-celle par transfert FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"La configuration de sauvegarde n'est pas encore dfinie. \n"
"Veuillez cliquer sur Configuration par assistant, ou Configuration "
"manuelle\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10246,7 +10688,7 @@ msgstr ""
"Liste de donnes restaurer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10254,139 +10696,142 @@ msgstr ""
"Liste des donnes corrompues:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Veuillez le dcocher ou le retirer la prochaine fois"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Les fichiers de sauvegarde sont corrompus"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Toutes vos donnes slectionnes ont t "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-" correctement restaures en prenant %s comme dossier racine "
+" correctement restaures en prenant %s comme rpertoire racine "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Restauration de la configuration "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK pour restaurer les autres fichiers."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Fichiers de sauvegarde restaurer (seul le plus rcent compte)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Sauvegarder les fichiers systme avant:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Veuillez choisir la date restaurer"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Sauvegarde sur disque dur"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Dossier o poser la sauvegarde:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "par connexion FTP..."
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "par connexion scurise..."
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr "Restaurer partir d'un dossier"
+msgstr "Restaurer partir d'un rpertoire"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr "Veuillez entrer le dossier o rsident les sauvegardes"
+msgstr "Veuillez entrer le rpertoire o rsident les sauvegardes"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Choisir un autre support de sauvegarde"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Autre support"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Restaurer le systme"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Restaurer les comptes utilisateurs"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
-msgstr "Restaurer les autres fichiers ou dossiers"
+msgstr "Restaurer les autres fichiers ou rpertoires"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr "Choisir un autre dossier racine de restauration ( au lieu de / )"
+msgstr "Choisir un autre rpertoire racine de restauration ( au lieu de / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Nouvelle sauvegarde avant restauration (seulement pour l'incrmental)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr "Retirer les dossiers personnels ds utilisateurs avant restauration"
+msgstr "Retirer les rpertoires personnels ds utilisateurs avant restauration"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Restaurer toutes les sauvegardes..."
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Restauration personnalise..."
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Aide"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "<- Prcdent"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Valider"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Sauvegarder!"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurer!"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Suivant ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
"Merci de vouloir faire une sauvegarde avant de vouloir restaurer... (ou bien "
-"vrifiez que votre dossier de sauvegarde est correct)"
+"vrifiez que votre rpertoire de sauvegarde est correct)"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10396,31 +10841,34 @@ msgstr ""
" Votre rapport n'a pas t envoy\n"
" Veuillez configurer sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Liste des paquetages installer"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Les paquetages suivants vont tre installs"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-"Erreur pendant l'envoi par FTP.\n"
-" Veuillez corriger votre configuration FTP"
+"Erreur pendant l'envoi du fichier par FTP.\n"
+" Veuillez corriger votre configuration FTP"
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Veuillez choisir les donnes restaurer..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Veuillez choisir le support de sauvegarde..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Veuillez choisir les donnes sauvegarder..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10429,77 +10877,77 @@ msgstr ""
"Veuillez cliquer sur Configuration par assistant, ou Configuration "
"manuelle"
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "En dveloppement ... veuillez patienter."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Sauvegarde des fichiers systmes..."
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr "Sauvegarde des autres fichiers ou dossiers..."
+msgstr "Sauvegarde des autres fichiers ou rpertoires..."
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "TOTAL:"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "Envoi par FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Envoi des fichiers..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Liste include sur le CDR"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Veuillez taper la vitesse de gravure:"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
"(dtecter avec cdrecord -scanbus. Par exemple: 0,1,0 )"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Veuillez vrifier si vous voulez Inclure l'install boot sur le CD"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Sauvegarder partir de la configuration dfinie"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Voir la configuration de sauvegarde"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Configuration par assistant"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Configuration manuelle"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Sauvegarder!"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10550,7 +10998,7 @@ msgstr ""
" - le mode .backupignore:\n"
"\n"
" Comme avec CVS, Drakbackup va ignorer les rfrences\n"
-" incluses dans les fichiers .backupignore de chaque dossier.\n"
+" incluses dans les fichiers .backupignore de chaque rpertoire.\n"
" ex: \n"
" /*> cat .backupignore*/\n"
" *.o\n"
@@ -10559,7 +11007,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10573,7 +11021,7 @@ msgstr ""
" configurer le nom de machine ou de domaine dans /etc/postfix/main.cf.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10617,7 +11065,7 @@ msgstr ""
"\n"
" - Sauvegarde des fichiers systmes:\n"
" \n"
-"\tCette option vous permet de sauvegarder votre dossier /etc,\n"
+"\tCette option vous permet de sauvegarder votre rpertoire /etc,\n"
"\tqui contient tous les fichiers de configuration. Faites attention\n"
"\tpendant la restauration de ne pas craser:\n"
"\t\t/etc/passwd \n"
@@ -10629,7 +11077,7 @@ msgstr ""
"\tCette option vous permet de choisir les utilisateurs \n"
"\t sauvegarder.\n"
"\tPour prserver l'espace disque, il est recommand\n"
-"\tde ne pas inclure les dossier cache des navigateurs.\n"
+"\tde ne pas inclure les rpertoire cache des navigateurs.\n"
"\n"
" - Sauvegarde des autres fichiers: \n"
"\n"
@@ -10651,7 +11099,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10689,13 +11137,18 @@ msgstr ""
"\n"
"Sinon, vous ne pouvez en choisir qu'une\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft par DUPONT Sbastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10726,7 +11179,7 @@ msgstr ""
"en mme temps que ce programme; sinon, crivez la Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10783,10 +11236,10 @@ msgstr ""
"\t- Webdav.\n"
"\t- Cartouche.\n"
"\n"
-" Drakbackup peut restaurer votre systme vers un dossier choisi\n"
+" Drakbackup peut restaurer votre systme vers un rpertoire choisi\n"
"\n"
" Par dfaut toute sauvegarde sera stocke dans le\n"
-" dossier /var/lib/drakbackup\n"
+" rpertoire /var/lib/drakbackup\n"
"\n"
" Fichier de configuration:\n"
"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
@@ -10795,13 +11248,13 @@ msgstr ""
"tape de restauration:\n"
" \n"
" Pendant l'tape de restauration, DrakBackup va retirer \n"
-" votre dossier d'origine et vrifier que tous les \n"
+" votre rpertoire d'origine et vrifier que tous les \n"
" fichiers de sauvegarde ne sont pas corrompus. Il est recommand \n"
" de faire une dernire sauvegarde avant restauration.\n"
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10819,7 +11272,7 @@ msgstr ""
"avant de l'envoyer vers le serveur.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10835,12 +11288,12 @@ msgstr ""
"Problmes de restauration:\n"
"\n"
"Avant l'tape de restauration, Drakbackup va vrifier tous vos\n"
-"fichiers de sauvegarde. Les dossiers originaux seront effacs\n"
+"fichiers de sauvegarde. Les rpertoires originaux seront effacs\n"
"et vous allez perdre toutes vos donnes. Il est important de \n"
"faire les choses avec prcaution et de ne pas modifier la main\n"
"les fichiers de sauvegarde.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10896,10 +11349,10 @@ msgstr ""
"\t- Webdav.\n"
"\t- Cartouche.\n"
"\n"
-" Drakbackup peut restaurer votre systme vers un dossier choisi\n"
+" Drakbackup peut restaurer votre systme vers un rpertoire choisi\n"
"\n"
" Par dfaut toute sauvegarde sera stocke dans le\n"
-" dossier /var/lib/drakbackup\n"
+" rpertoire /var/lib/drakbackup\n"
"\n"
" Fichier de configuration:\n"
"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
@@ -10908,7 +11361,7 @@ msgstr ""
"tape de restauration:\n"
" \n"
" Pendant l'tape de restauration, DrakBackup va retirer \n"
-" votre dossier d'origine et vrifier que tous les \n"
+" votre rpertoire d'origine et vrifier que tous les \n"
" fichiers de sauvegarde ne sont pas corrompus. Il est recommand \n"
" de faire une dernire sauvegarde avant restauration.\n"
"\n"
@@ -10919,99 +11372,518 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "L'installation de %s a chou pour la raison suivante:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Outil de signalement de bug Mandrake"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Assistant de premire connection"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Outil de synchronisation"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Utilitaires console"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Contrle distance"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Gestionnaire de programmes"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Outil de migration windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Assistants de configuration"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Application:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Paquetage:"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Noyau:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Version: "
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Non install"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Signaler"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Connection l'assistant Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Pas de navigateur disponible! Veuillez en installer un"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuration du rseau (%d cartes rseaux)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Effacer le profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil effacer:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nouveau profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nom du profil crer (le nouveau profil est cr comme une copie du profil "
+"courant:"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nom de machine: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Accs internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Type:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Passerelle:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "tat:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Veuillez patienter"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurer l'accs Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuration LAN (rseau local)"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Pilote"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocole"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "tat"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurer le rseau local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Cliquez ici pour lancer l'assistant ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistant..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Appliquer"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Veuillez patienter... mise en place de la configuration"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Connect"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Non connect"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Se connecter..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Se dconnecter..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Attention, une autre connexion internet a t dtecte, peut-tre utilisant "
+"votre rseau"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Vous n'avez aucune interface rseau configure.\n"
+"Vous pouvez en configurer une en cliquant sur Configurer"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuration du LAN (rseau local)"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Carte rseau %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocole d'amorage"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Lancer au dmarrage"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "activer maintenant"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "dsactiver maintenant"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Cette interface n'a pas encore t configure.\n"
+"Lancez l'assistant de configuration dans la fentre principale"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Vous n'avez aucune connection internet.\n"
+"Vous pouvez en crer une en cliquant sur Configurer"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuration de la connexion internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuration de la connexion internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Type de connexion: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Paramtres"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Passerelle"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Carte ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "mode d'emploi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nom du module"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Taille"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "cration d'une disquette d'amorage"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "par dfaut"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Erreur DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "version du noyau"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Gnral"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Mode Expert"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "arguments optionnels pour mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Ajouter un module"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forcer"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si besoin est"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "ne pas tenir compte des modules SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "ne pas tenir compte des modules RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Retirer un module"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Sortie"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crer la disquette"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Assurez-vous qu'un mdium est prsent dans le priphrique %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Il n'y a aucune disquette dans le lecteur %s ou alors elle est \n"
+"protge contre l'criture. Veuillez vrifier ou en insrer une."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne peut ddoubler (fork): %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne peut terminer correctement mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Chercher les polices installes"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Dslectionner les polices installes"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "Parcourir toutes les polices"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "aucune fonte trouve"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "termin"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "impossible de trouver des polices dans vos disques"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Rslectionnez des polices correctes"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "impossible de trouver des polices.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Chercher des polices dans la liste des installes"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copie des fontes"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation de polices True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Veuillez patienter pendant ttmkfdir"
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Installation True Type termine"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Conversion de polices"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "cration de type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Inscription dans ghoscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "Conversion de polices True Type"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "Conversion de polices pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Supprimer les fichiers temporaires"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Relancer le serveur de polices"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Supprimer les fichiers de polices"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "redmarrage du serveur de fonte"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11026,167 +11898,167 @@ msgstr ""
"cas,\n"
"des polices bogues peuvent bloquer votre serveur d'affichage XFree."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Importation de polices"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Rcuprer les polices de Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Dsinstaller des polices"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Options avances"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Liste des polices"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Choisissez les applications qui supporteront ces polices"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Imprimante gnrique"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr "Slectionnez les polices ou dossiers et cliquez sur Ajouter"
+msgstr "Slectionnez les polices ou rpertoires et cliquez sur Ajouter"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Installe la liste"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Cliquez ici si vous tes sr"
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Ici sinon"
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Dslectionne tout"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Slectionne tout"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Dsinstalle la liste"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Tests initiaux"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copier les polices sur votre systme"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installe et convertit des polices"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post-installation"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Retirer des polices de votre systme"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post-dsinstallation"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Partage de la connexion internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Dsol, nous ne prenons en charge que les noyaux (kernel) 2.4 ."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Le partage de la connexion internet est activ"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
-"La configuration du partage de la connexion l'internet a dj t\n"
+"La configuration du partage de la connexion Internet a dj t\n"
"effectue. Elle est actuellement active.\n"
"\n"
"Que voulez-vous faire?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "dsactiver"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ne rien faire"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurer"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Dsactivation des serveurs..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
-msgstr "Le partage de la connexion l'internet est maintenant dsactiv."
+msgstr "Le partage de la connexion Internet est maintenant dsactiv."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
-msgstr "Le partage de la connexion l'internet est dsactiv"
+msgstr "Le partage de la connexion Internet est dsactiv"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
-"La configuration du partage de la connexion l'internet a dj t\n"
+"La configuration du partage de la connexion Internet a dj t\n"
"effectue. Elle est actuellement dsactive.\n"
"\n"
"Que voulez-vous faire?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activer"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activation des serveurs..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Le partage de la connexion internet est maintenant activ."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11203,21 +12075,21 @@ msgstr ""
"Veuillez noter que vous avez besoin d'une carte rseau ddie votre rseau "
"local."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (utilisant le module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Aucune carte rseau n'est prsente dans votre systme"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11225,11 +12097,11 @@ msgstr ""
"Aucune carte rseau n'a t dtecte sur votre systme. Veuillez utiliser "
"l'outil de configuration du matriel."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Carte rseau"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11244,18 +12116,18 @@ msgstr ""
"\n"
"Je vais configurer votre rseau local avec cette carte rseau."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Veuillez choisir quelle carte rseau sera connecte votre rseau local"
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Interface rseau dj configure"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11270,15 +12142,15 @@ msgstr ""
"\n"
"Vous pouvez le faire manuellement, mais vous devez savoir ce que vous faites."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Reconfiguration automatique"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Montrer la configuration actuelle"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11295,7 +12167,7 @@ msgstr ""
"Attribution de l'adresse: %s\n"
"Pilote: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11320,34 +12192,34 @@ msgstr ""
"DHCP.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Rseau Local de class C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Adresse IP du serveur DHCP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Re-configurer l'interface et le serveur DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Le rseau local ne finissait pas par `.0', j'abandonne."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Conflit potentiel d'adresses du rseau local trouv dans la configuration de "
"%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Configuration du Firewall dtecte"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11355,22 +12227,22 @@ msgstr ""
"Attention! Une configuration existante du Firewall a t dtecte. Vous "
"devrez peut-tre modifier la configuration manuellement aprs l'installation."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configuration en cours..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configuration des scripts, installation des logiciels, dmarrage des "
"serveurs..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Des problmes sont apparus en installant le paquetage %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11381,25 +12253,25 @@ msgstr ""
"ordinateurs sur votre rseau local, en utilisant la configuration rseau "
"automatique (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La configuration a dj t effectue, mais elle est actuellement dsactive."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La configuration a dj t effectue, et elle est actuellement active."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Le partage de la connexion internet n'a encore jamais t configur."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuration du partage de la connexion internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11414,216 +12286,6 @@ msgstr ""
"\n"
"Cliquez sur Configurer pour lancer l'assistant de configuration."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuration du rseau (%d cartes rseaux)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Effacer le profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil effacer:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nouveau profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nom du profil crer (le nouveau profil est cr comme une copie du profil "
-"courant:"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de machine: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accs internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passerelle:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "tat:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Veuillez patienter"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurer l'accs l'internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuration LAN (rseau local)"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Pilote"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocole"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "tat"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurer le rseau local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliquez ici pour lancer l'assistant ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistant..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Appliquer"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Veuillez patienter... mise en place de la configuration"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connect"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non connect"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Se connecter..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Se dconnecter..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Attention, une autre connexion internet a t dtecte, peut-tre utilisant "
-"votre rseau"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune interface rseau configure.\n"
-"Vous pouvez en configurer une en cliquant sur Configurer"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuration du LAN (rseau local)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Carte rseau %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocole d'amorage"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Lancer au dmarrage"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "activer maintenant"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "dsactiver maintenant"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Cette interface n'a pas encore t configure.\n"
-"Lancez l'assistant de configuration dans la fentre principale"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune connection internet.\n"
-"Vous pouvez en crer une en cliquant sur Configurer"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuration de la connexion internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuration de la connexion internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Type de connexion: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paramtres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passerelle"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Carte ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Mise en place du niveau de scurit"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centre de contrle"
@@ -11632,63 +12294,92 @@ msgstr "Centre de contrle"
msgid "Choose the tool you want to use"
msgstr "Choisissez l'outil que vous voulez utiliser"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+"XawTV n'est pas install!\n"
+"\n"
+"\n"
+"Si vous avez une carte TV mais que DrakX n'e l'a pas dtecte (pas de\n"
+"module bttv dans /etc/modules) ou que DrakX n'a pas install xawtv,\n"
+"envoyez, s'il vous plat, le rsultat de la commande lspcidrake -v -f\n"
+" install\\@mandrakesoft.com avec comme sujet undetected TV card.\n"
+"\n"
+"\n"
+"Vous pouvez quand mme l'installer en tapant urpmi xawtv dans un "
+"terminal en tant que root."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr "USA (hertzien)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable ou HRC)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr "Chine (hertzien)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr "Japon (hertzien)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japon (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Europe de l'est"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "France [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlande"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Europe de l'ouest"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nouvelle Zlande"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Afrique du Sud"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentine"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11696,27 +12387,43 @@ msgstr ""
"SVP,\n"
"Veuillez choisir votre rgion et votre norme de TV"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norme TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Zone:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Recherche des canaux de tlvision en cours ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Recherche des canaux de tlvision"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Une erreur est survenue pendant la recherche des chanes TV."
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV n'est pas install!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Passez une bonne journe!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Maintenant vous pouvez lancer xawtv (sous X-Window)!\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Aucune carte TV dtecte!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11727,7 +12434,8 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Aucune carte TV n'a t dtecte sur votre ordinateur. Veuillez vrifier qu'une carte TV/Vido supporte par Linux est correctement branche.\n"
+"Aucune carte TV n'a t dtecte sur votre ordinateur. Veuillez vrifier "
+"qu'une carte TV/Vido supporte par Linux est correctement branche.\n"
"\n"
"\n"
"Vous pouvez visiter notre base de donnes de support matriel :\n"
@@ -11774,7 +12482,7 @@ msgstr ""
"Les changements ont t effectus mais ne seront effectifs qu'aprs votre "
"dconnection"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11800,7 +12508,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/Fichier/_Enregistrer"
+msgstr "/Fichier/Enregi_strer"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -11808,7 +12516,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Fichier/Enregistrer _Sous"
+msgstr "/Fichier/_Enregistrer sous"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11822,10 +12530,6 @@ msgstr "/_Options"
msgid "/Options/Test"
msgstr "/Options/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Aide"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Aide/_A propos..."
@@ -11886,7 +12590,7 @@ msgstr "Calendrier"
msgid "Content of the file"
msgstr "Contenu du fichier"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Alerte mail/SMS"
@@ -11895,11 +12599,11 @@ msgstr "Alerte mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "s'il vous plat attendez, examen du fichier: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Configuration des alertes mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11909,64 +12613,89 @@ msgstr ""
"\n"
"Vous allez pouvoir configurer ici vos les alertes systmes.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr "Apache (serveur www)"
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nom de domaine"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+msgid "Ftp Server"
+msgstr "Serveur Ftp"
+
+#: ../../standalone/logdrake_.c:420
+msgid "Postfix Mail Server"
+msgstr "Serveur de courrier Postfix"
+
+#: ../../standalone/logdrake_.c:421
+msgid "Samba Server"
+msgstr "Serveur Sambe"
#: ../../standalone/logdrake_.c:422
+msgid "SSH Server"
+msgstr "Serveur SSH"
+
+#: ../../standalone/logdrake_.c:423
+msgid "Webmin Service"
+msgstr "Service Webmin"
+
+#: ../../standalone/logdrake_.c:424
+msgid "Xinetd Service"
+msgstr "Service Xinetd"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "configuration des services"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Vous recevrez une alerte si l'un des services slectionns ne tourne plus"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "chargement des paramtres"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Vous recevrez une alerte si la charge machine dpasse cette valeur"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "configuration des alertes"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Configurer les moyens de vous alerter"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Enregistrer sous..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Veuillez choisir le type de votre souris."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "aucun priphrique USB srie trouv\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "muler le troisime bouton?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Lecture des donnes de l'imprimante..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Dtection des priphriques..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12013,7 +12742,22 @@ msgid ""
"applications menu."
msgstr ""
"Votre scanner %s a t configur.\n"
-"Vous pouvez maintenant scanner des documents en utilisant XSane partir de Multimdia/Graphisme dans le menu des applications."
+"Vous pouvez maintenant scanner des documents en utilisant XSane partir "
+"de Multimdia/Graphisme dans le menu des applications."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Certains matriels lists dans la classe %s ont t enlevs:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Certains matriels lists dans la classe %s ont t ajouts :\n"
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -12144,7 +12888,7 @@ msgid ""
"re-running this application!"
msgstr ""
"Nous allons maintenant vous poser des questions sur quels services vous\n"
-"souhaitez pouvoir connecter l'internet. Veuillez rflchir avec soin sur\n"
+"souhaitez pouvoir connecter Internet. Veuillez rflchir avec soin sur\n"
"chacune de ces questions, car la scurit de votre ordinateur est\n"
"importante.\n"
"\n"
@@ -12160,7 +12904,7 @@ msgid ""
"\n"
msgstr ""
"Utilisez-vous un serveur web sur cette machine, que vous avez besoin de\n"
-"rendre visible depuis tout l'internet? Si vous utilisez un serveur web\n"
+"rendre visible depuis tout Internet? Si vous utilisez un serveur web\n"
"pour seulement cette machine, vous pouvez rpondre NON ici.\n"
"\n"
@@ -12173,7 +12917,7 @@ msgid ""
msgstr ""
"Utilisez-vous un serveur de nom sur cette machine? Si vous n'avez pas\n"
"configur un tel serveur pour donner des informations d'IP et de zone\n"
-"pour tout l'internet, veuillez rpondre NON.\n"
+"pour tout Internet, veuillez rpondre NON.\n"
"\n"
#: ../../tinyfirewall.pm_.c:31
@@ -12210,7 +12954,7 @@ msgid ""
"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
"attackers, since FTP also uses no encryption for transferring passwords.\n"
msgstr ""
-"Utilisez-vous un serveur FTP, que vous voulez visible depuis l'internet?\n"
+"Utilisez-vous un serveur FTP, que vous voulez visible depuis Internet?\n"
"Si c'est le cas, nous recommandons fortement de ne l'utiliser que\n"
"pour les transferts en mode anonyme. Tous les mots de passe envoys\n"
"par FTP peuvent tre vols par des pirates, car FTP n'utilise pas\n"
@@ -12427,10 +13171,6 @@ msgid "Multimedia - Sound"
msgstr "Multimdia - Son"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitaires"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentation"
@@ -12537,10 +13277,6 @@ msgstr ""
"mutt), des news (tin), et pour naviguer sur le Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivage, mulateurs, surveillance"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Gestion Financire"
@@ -12587,3 +13323,217 @@ msgstr "Multimdia - Gravage de CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Applications scientifiques"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck a chou avec le code de sortie %d ou le signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Indentification de la carte graphique: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Choisissez les options du serveur d'affichage"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Le moniteur n'est pas configur"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La carte graphique n'est pas encore configure"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "La rsolution n'a pas encore t choisie"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "essayez de modifier quelques paramtres"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Une erreur est survenue:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Fin du test dans %d secondes"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "tes-vous satisfait(e)?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr ""
+#~ "Une erreur est survenue, essayez de modifier\n"
+#~ "quelques paramtres"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Serveur XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Tout montrer"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Prparation de la configuration de X Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Que dsirez-vous faire?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Choisir un type de moniteur"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Choisir un type de carte graphique"
+
+#~ msgid "Change Server options"
+#~ msgstr "Changer les options du serveur d'affichage"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Changer la rsolution"
+
+#~ msgid "Show information"
+#~ msgstr "Afficher la configuration actuelle"
+
+#~ msgid "Test again"
+#~ msgstr "Tester nouveau"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Votre appareil multifonction HP a t configur automatiquement pour tre "
+#~ "capable de scanner. Maintenant vous pouvez scanner avec tal-hp %s "
+#~ "scan ... dans une fentre de commandes. L'acquisition par interface "
+#~ "graphique ou grace Gimp n'est pas encore suporte avec cet "
+#~ "appareil. Vous trouverez plus d'informations dans le fichier /usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html sur votre systme. Si vous avez une HP "
+#~ "LaserJet 1100 ou 1200, vous pouvez seulement scanner si vous avez "
+#~ "l'option scanner installe.\n"
+#~ "\n"
+#~ "N'utilisez pas scannerdrake pour cet appareil! "
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "celle sur Disque dur / NFS"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "celle par FTP"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Liste des paquetages installer"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Mise en place du niveau de scurit"
+
+#~ msgid "Graphics card"
+#~ msgstr "Carte graphique"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Choisissez une carte graphique"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Choisissez un pilote d'affichage X11"
+
+#~ msgid "X driver"
+#~ msgstr "serveur X11"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Attention: tester cette carte vido peut bloquer votre ordinateur"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 87 Hz entrelac (sans 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 87 Hz entrelac, 800x600 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA tendu, 800x600 60 Hz, 640x480 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA non entrelac, 1024x768 60 Hz, 800x600 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA haute frquence, 1024x768 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frquences supportant le 1280x1024 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frquences supportant le 1280x1024 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frquences supportant le 1280x1024 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Moniteur supportant le 1600x1200 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Moniteur supportant le 1600x1200 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "La taille totale pour les groupes slectionns est approximativement de %"
+#~ "dMo.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Si vous voulez rduire la taille de votre installation,\n"
+#~ "choisissez le pourcentage de paquetages que vous souhaitez installer.\n"
+#~ "\n"
+#~ "Un faible pourcentage ne conservera que les paquetages les plus "
+#~ "importants.\n"
+#~ "Un pourcentage de 100%% installera tous les paquetages slectionns."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Vous n'avez d'espace sur votre disque que pour %d%% de ces paquetages.\n"
+#~ "\n"
+#~ "Si vous souhaitez rduire encore la taille de l'installation,\n"
+#~ "choisissez un pourcentage encore plus faible.\n"
+#~ "\n"
+#~ "Un faible pourcentage ne conserve que les paquetages les plus "
+#~ "importants.\n"
+#~ "Un pourcentage de %d%% installera le maximum possible de packages."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Vous pourrez affiner la slection des paquetages lors de la prochaine "
+#~ "tape."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Pourcentage de paquetages installer"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Choisissez le niveau de scurit"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 30649a12a..e43baf63e 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -1,117 +1,123 @@
-# Irish translations for DrakX, the Mandrake Installer.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Irish Linux Users Group <ilug@linux.ie>, 1999
-#
-# Credits where due:
-# Proinnsias Breathnach <breatpro@dublin.ml.com-nospam>
-# Donncha 'Caoimh <donncha.ocaoimh@tradesignals.com-nospam>
-# Barra 'Caoimh <Care of donncha.ocaoimh@tradesignals.com-nospam>
-# John McDonnell <johnmc@student.nuigalway.ie-nospam>
-# <Alastair McKinstry <mckinstry@computer.org>
-# Who've all contributed so far.
-# Proinnsias 16-Dec-1999
-#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 1999-12-16 10:33+0100\n"
-"Last-Translator: Proinnsias Breathnach <breatpro@dublin.ml.com>\n"
-"Language-Team: Gaeilge <ga@li.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-08-24 12:00-0000\n"
+"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
+"Language-Team: Irish <ga@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Cumraigh gach cinn ar leith"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Cumraigh carta \"%s\" (%s) amhain"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB n nos m"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Roghnaigh freastala X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X freastala"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Cumraochti gach cinn iolrach"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carta Grafach"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Roghnaigh an mid cuimhne at id' charta grafachach"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Roghnaigh carta grafachach"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Cumraocht XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Roghnaigh freastala X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X freastala"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Cumraigh gach cinn ar leith"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Roghnaigh freastala X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X freastala"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Cumraigh carta \"%s\" (%s) amhain"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "Freastala XFree86: %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s le luadghear crua-earra 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s le luadghear crua-earra 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "Freastala XFree %s le luasghear crua-earra 3D TRIALACH"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -119,31 +125,52 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Cumraocht XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Roghnaigh an mid cuimhne at id' charta grafachach"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Roghnaigh cumraocht an freastala"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Coimead an cumraocht IP at ann"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Roghnaigh scilen"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Scilen"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Socraithe"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Gnth"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Leas"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -157,506 +184,325 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Rta athnuachana cothromnach"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Rta athnuachana ingearach"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Nl aon scilen cumraithe"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Nl aon carta grafachach cumraithe"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Nl aoin riteach cumraithe"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Trialaigh an cumraocht"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 dath (8 giotin)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bain trial as roinnt paraimadair a athr"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mle dath (15 giotin)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tharla Earrid:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mle dath (16 giotin)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Ag al i %d siocand"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millin dath (24 giotin)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "An bhfuil seo ceart?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 billin dath (32 giotin)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tharla earrid, bain trial as roinnt paraimadair a athr"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Riteacha"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Riteach"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Roghnaigh Riteach agus an mid dath"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Carta Grafach: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Freastala XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mr"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cealaigh"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ceart go Leor"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Md Saineola"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Taispan gach ceann"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Riteacha"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Trialaigh an cumraocht"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Leagan amach eocharchlra: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Cinel luchg: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Gaireas luchige: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Scilen: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Scilen HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Scilen VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Carta Grafach: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Carta Grafach: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Cuimhne grafach: %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, fuzzy, c-format
msgid "Color depth: %s\n"
msgstr "Scilen VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Riteacha: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Freastala XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Tiomna XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ag ullmh cumraocht X-Windows"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Card a theastaonn uait a dhanamh?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Athraigh Scilen"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Athraigh carta grafach"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Athraigh cumraocht an freastala"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Athraigh Riteach"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Taispen Eolas"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Bain trial as ars"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "alaigh"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr "Coimead an cumraocht IP at ann"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ag ts"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Is fidir linn do romhaire a shocr le X a thosn i ndhiadh bootil.\n"
"An dteastaonn uait go dtosnfar X nuair a aththosntear an romhaire?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "irigh as le do thoil agus Crtl-Alt-BackSpace a sid"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 dath (8 giotin)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mle dath (15 giotin)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mle dath (16 giotin)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millin dath (24 giotin)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 billin dath (32 giotin)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB n nos m"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Gnth VGA, 640x480 ag 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ag 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cinal 8514, 1024x768 ag 87 Hz Idirdhuillith (gan 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ag 87 Hz Idirdhuillithe, 800x600 ag 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "SVGA Leathnaithe, 800x600 ag 60 Hz, 640x480 ag 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA Neamh-idirdhuillithe, 1024x768 ag 60 Hz, 800x600 ag 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'rd minicocht, 1024x768 ag 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Scilen ilmhinicocht a bhfuil in ann do 1280x1024 ag 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Scilen ilmhinicocht a bhfuil in ann do 1280x1024 ag 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Scilen ilmhinicocht a bhfuil in ann do 1280x1024 ag 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Scilen a bhfuil in ann do 1600x1200 ag 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Scilen a bhfuil in ann do 1600x1200 ag 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr ""
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr ""
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Roghnaigh rang feisti"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Feisti LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO le chlr teacs"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO le Chlr Graphaice"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootil as DOS/Windows (loadin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Promhroghanna bootil"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Romhchlar Tosnaithe a sid "
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Feisti cd tosnaithe"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Gaireas bootil"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Md fs"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Pasfhocal"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Pasfhocal (ars)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Teorannaigh roghanna lne ord"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "teorannaigh"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Glan /tmp nuair a thosnaigh an coris"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr ""
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Tabhair na Mid Cuimhne as MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Aththrialaigh"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "N mar a chile na pasfhocail"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Scal Tosn"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS Loiceadh?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -665,81 +511,81 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Suim"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Crochnithe"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Athraigh"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Cn sort iontril a suimigh do"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "CO Eile (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "CO Eile (MunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "CO Eile (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Iomha"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lamh-Scrobh"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Baolach"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Lipad"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Gnth"
@@ -772,53 +618,72 @@ msgstr "Nl aon ranna agat!"
msgid "This label is already used"
msgstr "Is ann cheana don ainm sideora seo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fuair %s %s comhadan"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "An bhfuil comhadan %s agat?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nl"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "T"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Lemh an t-eolais crua-earra"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ag feistil tiomana do %s, carta %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modl %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Roghachais modil:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr ""
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -830,115 +695,101 @@ msgid ""
"not cause any damage."
msgstr ""
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Cumraigh roghanna"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Roghachais modil:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "T an pasfhocal seo ro-shimpl"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr ""
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Is ann cheana don ainm sideora seo"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Is ann cheana don ainm sideora seo"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Suimigh sideoir"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr ""
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "For ainm"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Ainm sideora"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Blaosc"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Dealbh"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Uath-Logann"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -947,181 +798,162 @@ msgstr ""
"Is fidir linn do romhaire a shocr le X a thosn i ndhiadh bootil.\n"
"An dteastaonn uait go dtosnfar X nuair a aththosntear an romhaire?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Roghnagih an sidoer gnes:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistoir Fhuinneoga a ssd:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Gach Rud"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Suimigh sideoir"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Socraithe"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Ag Tosnaigh CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cealaigh"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr ""
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Bocht"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "rd"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "rd"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Roghnaigh liebhal slndil"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Roghnaigh liebhal slndil"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Roghnaigh cumraocht an freastala"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1142,52 +974,52 @@ msgstr ""
# FIXME
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "File go GRUB, an roghnir Choris "
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Deasc"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Clr Tosn"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1200,15 +1032,19 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Cumraocht Stl Tosn"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/C_omhad"
+msgstr "/_Comhad"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Comhad/_Ealu"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>E"
@@ -1243,12 +1079,12 @@ msgstr "Md Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Cumraigh"
@@ -1258,7 +1094,7 @@ msgid "System mode"
msgstr "Md Coras"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1269,14 +1105,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Ceart go Leor"
@@ -1325,7 +1163,7 @@ msgstr "N fidir liom rann eile a cur isteach"
msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Fraince"
@@ -1333,7 +1171,7 @@ msgstr "Fraince"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgiris"
@@ -1362,11 +1200,12 @@ msgstr "Ioruais"
msgid "Sweden"
msgstr "Amharc"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Iodlais"
@@ -1376,7 +1215,7 @@ msgstr "Iodlais"
msgid "Austria"
msgstr "srathach"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1384,8 +1223,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Ligh go curamach"
@@ -1396,11 +1235,12 @@ msgid ""
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Earrid"
@@ -1408,11 +1248,11 @@ msgstr "Earrid"
msgid "Wizard"
msgstr "Draodoir"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Roghnaigh gnomh"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1423,148 +1263,153 @@ msgstr ""
"Molaim dhuit an rann sin a athmhad ar dts\n"
"(roghnaigh an rann agus br ar \"Athmidigh\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Roghnaigh rann le do thoil"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Sonra"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Malairte"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Folamh"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Eile"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Cinel crais-comhadlanna"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Cruthaigh"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Cinel"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Scros"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Roghnaigh gnomh"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Leas"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Lean ar aghaidh ar aon ns?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "alaigh gan sabhil"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "alaigh gan an clr-ranna a scrobh?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Glan gach ceann"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mr"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "T na ranna profa uilig sidthe"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "N fidir liom rann eile a cur isteach"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1572,34 +1417,34 @@ msgstr ""
"Le breis ranna a bheith agat, dealaigh ceann amhin le bheith in ann "
"rannsnithe a cruth"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Scriobh clr-ranna"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Scriobh clr-ranna"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Scriobh clr-ranna"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Roghnaigh Comhad"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1607,11 +1452,11 @@ msgstr ""
"Nl an mid canna ar an rann cltaca\n"
"Lean ar aghaidh ar aon ns?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Rabhadh"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1619,254 +1464,266 @@ msgstr ""
"Cur diosca flapach sa dioscthiomant\n"
"Caillfear gach sonra ar an dhiosca seo"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Ag iarraidh an clr-ranna a tarrthil"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Roghnachais"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Athmidigh"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Bog"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formidigh"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Cur le RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Cur le LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Bain RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Bain RAID"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Athraigh RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Teascn tosasch: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Mid i MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Cinel cras-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Tosaocht: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ag formidi comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Athraigh cinel ranna"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Cn rann at uait?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Ag romhadh teorainn na crais-comhadlanna FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ag athmad"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "caillfear gach sonra ar an rann seo"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Roghnaigh an mid nua"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Mid i MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Cn diosca ag a dteastaonn uait a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Teascn"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Cn tescn ag a dteastaonn uait a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ag bogadh"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ag bogadh rann..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Roghnaigh RAID at ann le mad"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nua"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
#, fuzzy
msgid "Choose an existing LVM to add to"
msgstr "Roghnaigh RAID at ann le mad"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "ainm LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "For ainm"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Roghachais modil:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "gaireas"
+msgstr "feist"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "leibhal"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "mid smutn"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Cn sort rann at ort?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Roghnaigh pacist ..."
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1878,7 +1735,7 @@ msgstr ""
"M t t ag sid LILO n oibridh s, n nl /boot uait muna n-sideann t "
"LILO"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1889,144 +1746,144 @@ msgstr ""
"sorcir ar an dhiosca, agus nl aon rann /boot agat.\n"
"M t t chun LILO a sid, beidh ort rann /boot a cruth ar ball."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Scrobhfar clr diosca %s go dhiosca!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Beidh ort an romhaire a aththosn sula ndanfar an athr"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ag formidi"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ag formidi comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ag formidi rann %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "teip ar 'mkraid'"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Riteacha: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Gaireas: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litir Dioscthiomnt DOS: %s (buile faoi thuraim)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Cinel: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ainm: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Ts: teascn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Mid: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s teascin"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sorcir %d go sorcir %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Neamhformidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2034,27 +1891,27 @@ msgstr ""
"Rann tosaithe de ghnth\n"
" (do thosn MS-DOS, n lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Leibhal %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Mid smutn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Diosca RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2062,7 +1919,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2070,65 +1927,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Mid: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Cimseasamh: %s sorcir, %s ceann, %s teascn\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
#, fuzzy
msgid "Info: "
msgstr "Eolas"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diosca LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Cinal tabla rann: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ar bhs %d, id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Roghnachais: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Cinel cras-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "N mar a chile na pasfhocail"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2139,36 +1996,66 @@ msgstr "Athraigh cinel ranna"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Roghnaigh rann le do thoil"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Deimni"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Idirlon"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ainm sideora"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Ainm sideora"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Fearannas NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "freastala DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "Formidi %s de %s teipithe"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nl a fhios agam conas %s a formidi go %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2185,67 +2072,319 @@ msgstr ""
msgid "server"
msgstr "Freastala"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Earrid ag oscailt %s do scrobh: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Tharla earrid - n fhuaireadh aon gaireas ar a bhfadfa crais-comhadlanna "
"nua a cruthu. Ba chir duit do chuid crua-earra a seiceil le cis an fadhb "
"a aimsi"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nl aon ranna agat!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Scros Printir"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Gnth"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Cuimhne Charta (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ag formidi"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Athraigh cinel ranna"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "alaigh"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/C_idi"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/C_idi"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cidi/_Faoi..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Luchg"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Cuimhne Charta (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cealaigh"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Luchg"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Cuntas"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Deimni"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Roghnaigh Comhad"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gaireas na hInneal Geata"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 cnaip"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "leagan `kernel'"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Lemh an t-eolais crua-earra"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Taispen Eolas"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Cumraigh luchg"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Pointe taca dublach %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Fan tamall"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d siocand"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Scros Printir"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2259,7 +2398,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2330,9 +2469,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2514,7 +2652,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2526,9 +2664,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2574,21 +2711,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2604,9 +2740,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2627,9 +2763,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2739,38 +2874,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2844,11 +2973,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2872,7 +3001,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2887,7 +3016,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2902,7 +3031,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2918,29 +3047,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -2962,7 +3091,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -2984,7 +3113,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -2992,7 +3121,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3013,7 +3142,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3026,7 +3155,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3035,29 +3164,28 @@ msgid ""
"(MBR)\"."
msgstr ""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3066,7 +3194,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3091,11 +3219,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3105,9 +3233,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3119,7 +3246,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3145,7 +3272,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3172,18 +3299,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3191,12 +3317,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3212,14 +3337,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3230,7 +3355,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3238,12 +3363,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3258,26 +3383,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Earrid ag lamh comhad %s"
@@ -3302,7 +3427,7 @@ msgstr ""
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3310,73 +3435,76 @@ msgstr ""
"\n"
"x1Lean ar aghaidh ar aon ns?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "sid sps saor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "Ag iarraidh an clr-ranna a tarrthil"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Cn rann a bhfuil t ag iarraidh sid mar rann framhach"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Roghnaigh an mid nua"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Mid i MB do Rhann Framhach:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Mid i MB do rhann malairte:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
-msgid "Computing Windows filesystem bounds"
+msgid "Resizing Windows partition"
msgstr "Ag romhadh teorainn na crais-comhadlanna FAT"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3388,64 +3516,64 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "rann %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Theip ar uathathmhad FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Glan diosca ina iomln"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Dealaigh Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "sid fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Nl aon ranna agat!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "N fidir liom rann eile a cur isteach"
@@ -3454,16 +3582,16 @@ msgstr "N fidir liom rann eile a cur isteach"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Theip ar rann: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Ag tosn suas an ghrasn"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ag dnadh sos an ghreasn"
@@ -3475,12 +3603,12 @@ msgstr ""
"Ta earraid ann, nl a fhios agam conas a cheart.\n"
"Lean ort, ar do phriacal fin."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pointe taca dublach %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3488,12 +3616,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Filte go %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nl dioscthiomnt flapach ar fil"
@@ -3503,195 +3631,161 @@ msgstr "Nl dioscthiomnt flapach ar fil"
msgid "Entering step `%s'\n"
msgstr "Ag tosn ar cim `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Rann Feisti"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Roghn Grpa Pacist"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mid iomln: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paciste mcheart"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ainm: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Leagan: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Mid: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Tbhacht: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Feisti"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Sabhil ar dhiosca flapach"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Roghn Grpa Pacist"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eirigh as Feisti"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Ag Feisti"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Ag meast"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Am fagtha "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Fan tamall, ag ullmhaigh feisti"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pacist"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Ag feistil paciste %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aontaigh"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Tarrthil"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3701,17 +3795,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Lean ar aghaidh ar aon ns?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3756,11 +3850,11 @@ msgstr "Tharla earrid"
msgid "Do you really want to leave the installation?"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Ceadnas"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3775,7 +3869,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -3881,113 +3975,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Eocharclr"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Cn leagan amach at ar d'eocharchlrsa"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Cn rann feisti at uait?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Feistii/Uadgrdaigh"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Feistigh n uasgrdaigh ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Molta"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Saineola"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Uasgrdaigh"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Roghn Grpa Pacist"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Cn cinal luchg at agat?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Gaireas luchige"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Cumraigh Crta PCMCIA"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Ag cumraigh IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nl aon ranna saora ann"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -3995,7 +4093,7 @@ msgstr ""
"Ni fidir liom an tbla rainn a lamh, t mchaill ann :(\n"
"Leanfaidh m orm ag ceal droch rainn"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4003,152 +4101,155 @@ msgstr ""
"Theip ar DiskDrake an tabla rainn a lamh i gceart.\n"
"Lean ort, ar do phriacal fin!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Roghnaigh na ranna at le formidi"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rann Framhach"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Card an rann framhach (/) ded' chras?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
#, fuzzy
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Beidh ort an romhaire a aththosn sula ndanfar an athr"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Roghnaigh na ranna at le formidi"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ag formidi ranna"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Ag curdach do na pacist at ar fil"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Ag curdach do na pacist at ar fil"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ag crdach pacist le hasgrd"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Roghnaigh pacist ..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Crochnaithe (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "osta (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Molta (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Aisig dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Aisig dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Roghn Grpa Pacist"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Sabhil ar dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Roghnaigh pacist a feisti ..."
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Fan tamall"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ag Ullmhaigh feisti"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4157,23 +4258,23 @@ msgstr ""
"Ag feisteil paciste %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Cumraocht Iar-feist"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4210,159 +4311,190 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Cn ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Freastala NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Scrios Freastala CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Gan Printir"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Coimri"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Luchg"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Am Cros"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printir"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Carta ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Carta Fuaim"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Carta Telefs"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Dealaigh Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Chomaid itil"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Socraigh pasfhocal root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Deimni"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Deimni LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Freastala LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Deimni NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Freastala NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Deimni LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Fearannas NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Freastala NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4380,19 +4512,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Cead dioscthiomnt flapach"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Dara dioscthiomint flapach"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Scipeil"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4408,7 +4540,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4417,29 +4549,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Brn orm, nl aon dioscthiomnt flapach ar fil"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
#, fuzzy
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Roghnaigh na ranna at le formidi"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Ag Cruthaigh diosca thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Ag Ullmhaigh romhchlar thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4447,27 +4579,27 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Card a theastaonn uait a dhanamh?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Feistigh cd tosnaithe"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4478,25 +4610,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4507,19 +4639,23 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Cruthaigh flapach bootil"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4528,15 +4664,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Athldaigh"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Roghn Grpa Pacist"
@@ -4564,418 +4700,402 @@ msgstr ""
msgid "Choose a file"
msgstr "Roghnaigh gnomh"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Ramhioaocht"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Fan tamall"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Eolas"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Droch rogha, aththrialaigh\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Do rogha? (gns %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Do rogha? (gns %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Roghnachais: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Card a theastaonn uait a dhanamh?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Do rogha? (gns %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ceichs (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Gearminis"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spinis"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fionlainnais"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francaigh"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Ioruais"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polainnais"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruisls"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Marchlr UK"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Merchlr US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgiris"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Bulgiris"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgiris"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarisis"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Eilvis (Stl Ghearmnais)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Eilvis (Stl Francaigh)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ceichs (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Gearminis (gach meachlr marbh)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danmharghais"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (Meirice)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ioruais)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Meirice)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eastinis"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Greics"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungrais"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Critis"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Iodlais"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Sepainis (106 eochair)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Marchlr Chiris"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Mheirce Theas"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "it"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Risis (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Risis (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Risis (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slbaicis (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slbaicis (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Table"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Merchlr US"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Mearchlr US (idirnaisinta)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -4988,7 +5108,31 @@ msgstr ""
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Uimhir fn"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formidigh ranna"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5031,10 +5175,6 @@ msgstr "1 Cnaipe"
msgid "Generic 2 Button Mouse"
msgstr "Luchg 2-cnaipe Loiceadh"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Gnth"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rothar"
@@ -5099,38 +5239,54 @@ msgstr "Ar bith"
msgid "No mouse"
msgstr "Luchg ar bith"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Teastil an luchg, le do thoil"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BOG DO ROTHAR!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Fionnlainnis"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "An bhfuil seo ceart?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Eolas"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr ""
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr ""
@@ -5170,7 +5326,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Roghnaigh an clradan ghrasn"
@@ -5184,7 +5340,7 @@ msgstr "Cn cinal luchg at agat?"
msgid "no network card found"
msgstr "n fuaireathas crta grasn"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Cumraigh grasn"
@@ -5196,15 +5352,15 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "stAinm"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Draodir Cumraocht Grasn"
@@ -5252,7 +5408,7 @@ msgstr "Cumraigh ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5271,12 +5427,12 @@ msgstr "Trialaigh an cumraocht"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr ""
#: ../../network/isdn.pm_.c:199
@@ -5300,7 +5456,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5312,13 +5469,13 @@ msgid "Continue"
msgstr "Lean"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Cn sort carta ISDN at uait?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
#: ../../network/isdn.pm_.c:244
@@ -5334,102 +5491,102 @@ msgstr "Cn cinal luchg at agat?"
msgid "Dialup options"
msgstr "Roghanna 'Dialup'"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ainm Nasc"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Uimhir fn"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Ainm Login:"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Script-bhunaithe"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Teirminal-bhunaithe"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ainm Fearannas"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Cead Freastala DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Dara Freastala DNS"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Bainteach le hIdirlon"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Cn diosca ag a dteastaonn uait a bhogadh?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Lean"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Cumraigh grasn"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Nasc na hIdirlon agus cumraocht"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5441,12 +5598,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Cumraocht Grasn"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5454,105 +5611,111 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Roghnagih an sidoer gnes:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Md Saineola"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Pointe taca dublach %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Cumraigh ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Clradan Grasn"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Roghnaigh na ranna at le formidi"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Nasc Printir"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Cumraocht Grasn"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5560,73 +5723,78 @@ msgid ""
"%s"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Ag cumr glas grasn %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " (tiomint $module)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Seoladh IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr ""
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Uath-IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Cruthaigh an diosca "
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5634,374 +5802,379 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "freastala DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gaireas na hInneal Geata"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Cumraigh seach-freastala"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Seach-HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Seach-FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr ""
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Cumraigh Idirlon"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
#, fuzzy
msgid "Do you want to try to connect to the Internet now?"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Cumraigh nasc ghrasn"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Cn diosca ag a dteastaonn uait a bhogadh?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Cumraocht Idirlon."
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ na Carta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Cuimhne Charta (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "I/A Carta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "I/A_0 Carta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "I/A_1 Carta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
#, fuzzy
msgid "Your personal phone number"
msgstr "Uimhir fn"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Uimhir fn"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "Roghanna Printir"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "Roghanna Printir"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Roghnaigh mharchlr"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Athraigh cinel ranna"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Ainm Nasc"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Pasfhocal"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr ""
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Droch comhad chltaca"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Earridh ag scrobh comhad %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "riachtanas"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "tbhachtach"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "an-dheas"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "deas"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "b'fhidir"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Printir itil"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Scros Printir"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Scrios Freastala CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Scrios freastala lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Printir Grasn (lpd)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Freastala Printir"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Gaireas Printir (URI)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Printir itil"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Scros Printir"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Earridh ag scrobh comhad %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modl %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP freastala SMP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
#, fuzzy
msgid " (Default)"
msgstr "Gnth"
@@ -6021,12 +6194,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "cumraocht"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Scrios Freastala CUPS"
@@ -6056,7 +6229,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6065,7 +6238,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP freastala SMP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Poirt"
@@ -6074,21 +6247,13 @@ msgstr "Poirt"
msgid "Automatic CUPS configuration"
msgstr "Cumraigh ADSL"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Gan Printir"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6101,14 +6266,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Printir itil"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6126,12 +6291,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6145,11 +6310,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6159,35 +6324,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Pointe taca dublach %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6195,43 +6364,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Gaireas Printir (URI)"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Printir itil"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6239,7 +6408,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6247,100 +6416,110 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Cn cinal luchg at agat?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Gaireas Printir (URI)"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Cumraigh Idirlon"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Ag feistil paciste %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Ag feistil paciste %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Ag feistil paciste %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "stAinm"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Roghanna Printir SMB (Fuinneoga 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6348,35 +6527,35 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "freastala stann SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP freastala SMP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Comh. ainm"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupa na hOibre"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6400,7 +6579,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6409,7 +6588,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6417,11 +6596,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Roghanna Printir NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6429,28 +6608,28 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Freastala Printir"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Roghanna Printir NetWare"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6458,59 +6637,55 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "stainm Printir"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "stainm Printir"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Gaireas Printir (URI)"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Ainm Printir"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Cuntas"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "it"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6525,28 +6700,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "An bhfuil seo ceart?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Nasc Printir"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Cn sort printir at ort?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6555,18 +6730,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Cumraigh Idirlon"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6576,12 +6751,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Cumraigh Idirlon"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6589,7 +6764,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6602,7 +6777,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6612,34 +6787,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Bain trial as ars"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6647,42 +6822,42 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printir"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Uirlis gnth"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "stainm Printir"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6692,22 +6867,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Gan Printir"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6716,15 +6891,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -6733,49 +6908,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6785,7 +6960,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -6794,30 +6969,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Dn"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ag dnadh sos an ghreasn"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ag dnadh sos an ghreasn"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ag dnadh sos an ghreasn"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ag dnadh sos an ghreasn"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Dn"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Roghanna Printir"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -6825,37 +7011,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Cumraigh Idirlon"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6865,51 +7051,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -6917,61 +7103,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Gan Printir"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Cumraigh Printir"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Nasc Printir"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Cumraigh grasn"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Nl aon scilen cumraithe"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -6979,12 +7165,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Cumraigh grasn"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -6994,34 +7180,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "rd"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7036,11 +7222,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7054,69 +7240,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Nasc Printir"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Cn rann at uait?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Cumraigh printir"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Ag feistil paciste %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Roghanna Printir"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Cumraigh printir"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "An dteastaonn uait printir a chumr?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Cldir"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7124,146 +7310,150 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Cumraigh grasn"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Luchg ar bith"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "alaigh"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Cumraigh Idirlon"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Nasc Printir"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "stainm Printir"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "Scros Printir"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Printir itil"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Scros Printir"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7342,24 +7532,52 @@ msgstr "N mar a chile na pasfhocail"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, fuzzy, c-format
msgid "Can't write file %s"
msgstr "Earridh ag scrobh comhad %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "teip ar 'mkraid'"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/msec.pm_.c:144
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+
+#: ../../security/msec.pm_.c:150
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "irigh as cumraocht"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Roghnachais"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7402,7 +7620,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7458,7 +7676,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7515,7 +7733,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -7593,7 +7811,7 @@ msgstr "Idirlon"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Md Coras"
@@ -7713,6 +7931,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Bainteach le hIdirlon"
@@ -7817,6 +8036,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Ag feistil paciste %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "irigh as le do thoil agus Crtl-Alt-BackSpace a sid"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr ""
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -7825,6 +8053,158 @@ msgstr ""
"Ni fidir liom an tbla rainn a lamh, t mchaill ann :(\n"
"Leanfaidh m orm ag ceal droch rainn"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Cumraigh Idirlon"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Freastala Printir"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Freastala Printir"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Freastala NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Freastala NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Suimigh sideoir"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/C_idi"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Scros"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Roghnaigh Comhad"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Suimigh sideoir"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ag cumraigh IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nl dioscthiomnt flapach ar fil"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -7866,6 +8246,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Cruthaigh flapach bootil"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -7874,47 +8259,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Comhghairdeas!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Feisti"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Suimigh sideoir"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Ag formidi comhad 'loopback' %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -7922,15 +8300,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -7938,707 +8308,769 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Earrid ag lamh comhad $f"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Roghn Grpa Pacist"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Scrios ci"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Dealaigh Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Ainm sideora"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Teastil an luchg, le do thoil"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Nasc LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Nasc Printir"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Cn leagan amach at ar d'eocharchlrsa"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Roghnaight do theangam le do thoil."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Teastil an luchg, le do thoil"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Clradan Grasn"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Cinel"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Ainm sideora"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Athraigh cumraocht an freastala"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Athraigh cumraocht an freastala"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Fan tamall"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Roghachais modil:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Cumraocht Grasn"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Socraigh cras chomhad"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Gaireas luchige: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Roghnachais"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Cumraocht Grasn"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Teastil an luchg, le do thoil"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Nasc LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Nasc Printir"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Aisig dhiosca flapach"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Eile"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Feistigh cras"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Socraithe"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/C_idi"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Clr Tosn"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Aisig comhad"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Teacs"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Roghnaigh pacist ..."
+#: ../../standalone/drakbackup_.c:2933
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Droch comhad chltaca"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Sabhil i gcomhad"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Teastil an luchg, le do thoil"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Cumraocht Grasn"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Cumraocht Grasn"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "cumraocht"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "irigh as cumraocht"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Socraigh cras chomhad"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -8670,7 +9102,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8679,7 +9111,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -8720,7 +9152,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -8748,12 +9180,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -8770,7 +9207,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -8810,7 +9247,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -8821,7 +9258,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -8834,7 +9271,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -8878,104 +9315,537 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr ""
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Bainteach le hIdirlon"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "sainordaitheach"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Luchg"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Scros Printir"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Comh. ainm"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Cldir"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Draodir Cumraocht Grasn"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Deimni"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Roghn Grpa Pacist"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Fan tamall"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Eirigh as Feisti"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Poirt"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+msgid "No browser available! Please install one"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Cumraocht Grasn"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Ainm sideora"
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "suimiil"
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Cinel: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Inneal Geata:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "suimiil"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Cumraigh grasn"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Tiomna"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "Clradan Grasn"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Clr Tosn"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Cumraigh grasn"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Draodoir..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Trialaigh an cumraocht"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Ainm Nasc"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "cumraocht"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Nasc na hIdirlon agus cumraocht"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Nasc na hIdirlon agus cumraocht"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Athraigh cinel ranna"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Inneal Geata:"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "sid: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Ainm Modl"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Mid"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Trialaigh an cumraocht"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "gnth"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Earraidh DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "leagan `kernel'"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Gnth"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Roghnachais Saineoia"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Suimigh Modil"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forsil"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "Luchg ar bith"
+
+#: ../../standalone/drakfloppy_.c:164
+#, fuzzy
+msgid "omit raid modules"
+msgstr "Scros modil"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Scros modil"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Aschur"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Teip ar glaoch `fork': %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "Teip ag cuardach %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Crochnithe"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formadaigh flapach"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ag Ullmhaigh feisti"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "teorannaigh"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -8984,121 +9854,120 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formidigh ranna"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "irigh as cumraocht"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr ""
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Roghnaigh na ranna at le formidi"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oifig"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Tobscoir"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printir"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Feistigh cras"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Scros Printir"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Scal Tosn"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Nl aon gaireas ghreasn san do chors!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Feisti"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Nl aon gaireas ghreasn san do chors!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Eirigh as Feisti"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9106,32 +9975,32 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Nasc na hIdirlon agus cumraocht"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9139,20 +10008,20 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Nasc na hIdirlon agus cumraocht"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9162,31 +10031,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "suimiil"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nl aon gaireas ghreasn san do chors!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Clradan Grasn"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9196,18 +10065,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Nl aon scilen cumraithe"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9217,17 +10086,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Cumraigh ADSL"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Cumraigh Idirlon"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9238,7 +10107,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9250,78 +10119,78 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP freastala SMP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Ag cumraigh IDE"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Ag feistil paciste %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nasc na hIdirlon agus cumraocht"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Nasc na hIdirlon agus cumraocht"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9331,222 +10200,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Cumraocht Grasn"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr ""
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Ainm sideora"
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "suimiil"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Cinel: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Inneal Geata:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "suimiil"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Cumraigh grasn"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Tiomna"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Clradan Grasn"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Clr Tosn"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Cumraigh grasn"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Draodoir..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Trialaigh an cumraocht"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Ainm Nasc"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "cumraocht"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Nasc na hIdirlon agus cumraocht"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Nasc na hIdirlon agus cumraocht"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Athraigh cinel ranna"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Inneal Geata:"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -9556,93 +10209,128 @@ msgstr "Bainteach le hIdirlon"
msgid "Choose the tool you want to use"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Eorap"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Fraince"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Athldaigh"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Eorap"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "srathach"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -9684,7 +10372,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -9732,10 +10420,6 @@ msgstr "/_Roghanna"
msgid "/Options/Test"
msgstr "/Roghnachais/Teastil"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/C_idi"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Cidi/_Faoi..."
@@ -9798,7 +10482,7 @@ msgstr "Feilire"
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -9807,81 +10491,110 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "Ag Parsil an comhad %s, fan tamall"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Cumraigh Lilo/Grub"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "scil"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ainm Fearannas"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Freastala NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Freastala Printir"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Freastala NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Freastala NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Seirbish"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Freastala Printir"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "suimiil"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Ag formidi"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Cumraigh Idirlon"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Sbhil mar..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Cn cinal luchg at agat?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr ""
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Scros Printir"
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr ""
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -9925,6 +10638,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10272,10 +10997,6 @@ msgid "Multimedia - Sound"
msgstr "Ilmhenach"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
msgstr "it"
@@ -10380,10 +11101,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -10431,593 +11148,108 @@ msgstr "Ilmhenach"
msgid "Scientific Workstation"
msgstr "Stisin Oibre"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Tobscoir"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Ar bith"
+#~ msgid "Choose options for server"
+#~ msgstr "Roghnaigh cumraocht an freastala"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Roghnagih an sidoer gnes:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Scros Printir"
-
-#~ msgid "Low"
-#~ msgstr "Bun"
+#~ msgid "Monitor not configured"
+#~ msgstr "Nl aon scilen cumraithe"
-#~ msgid "Medium"
-#~ msgstr "Gnth"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Nl aon carta grafachach cumraithe"
-#, fuzzy
-#~ msgid "mount failed"
-#~ msgstr "teip ar 'mkraid'"
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ilmhenach"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Nl aoin riteach cumraithe"
-#~ msgid "Boot mode"
-#~ msgstr "Md Bootil"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Saineola"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Bainteach le hIdirlon"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Cumraigh nasc ghrasn"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Cn diosca ag a dteastaonn uait a bhogadh?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Cn cinal luchg at agat?"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Eolas"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Stisin Gnome"
-
-#~ msgid "authentification"
-#~ msgstr "dar"
-
-#~ msgid "user"
-#~ msgstr "sideoir"
-
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Cn cinal luchg at agat?"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "alaigh"
-
-#~ msgid "Active"
-#~ msgstr "Gnomhach"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nl"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Gaireas na Printir itil"
-
-#~ msgid "Printer Device"
-#~ msgstr "Gaireas Printir"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Scrios Freastala CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Md Coras"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Eile"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Cn leagan amach at ar d'eocharchlrsa"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Roghnaigh rann le do thoil"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Cinel: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Droch comhad chltaca"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Cumraigh X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Gaireas Printir"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cealaigh"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ceart go Leor"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Dn"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Nasc Printir"
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Cumraigh nasc ghrasn"
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-
-#~ msgid "Total size: "
-#~ msgstr "Mid iomln: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Fan tamall, "
-
-#~ msgid "Total time "
-#~ msgstr "Am iomln "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Bain sid as an cumraocht X11 at ann?"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid "New"
-#~ msgstr "Nua"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Scros"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
+#~ "try to change some parameters"
+#~ msgstr ""
#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Roghnaigh rann le do thoil"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Dbhroch (%s), b nos cruinn\n"
+#~ "bain trial as roinnt paraimadair a athr"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (gns %s)"
+#~ msgid "An error occurred:"
+#~ msgstr "Tharla Earrid:"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Do rogha? (gns %s sid `none' do ceann ar bith) "
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Ag al i %d siocand"
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "An bhfuil t ag iarraidh an cumraocht a thrial?"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Rithlibheal Loiceadh"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Scrobh /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formidigh gach ceann"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "I ndhiadh na rann ar fad formidi,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "caillfear gach sonra ar na ranna"
-
-#~ msgid "Error reading file $f"
-#~ msgstr "Earrid ag lamh comhad $f"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Ceichis (FIXME)"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Cumraigh nasc ghrasn"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "An bhfuil seo ceart?"
-#~ msgid "Choose"
-#~ msgstr "Rogha"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tharla earrid, bain trial as roinnt paraimadair a athr"
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Freastala XFree86: %s"
-#~ msgid "Remote queue"
-#~ msgstr "Scrios ci"
+#~ msgid "Show all"
+#~ msgstr "Taispan gach ceann"
-#~ msgid "Paper Size"
-#~ msgstr "Mid Pipir"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Ag ullmh cumraocht X-Windows"
-#~ msgid "Uniprint driver options"
-#~ msgstr "Roghanna tiomna Uniprint"
-
-#~ msgid "Name of queue"
-#~ msgstr "Ainm ci"
-
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Cumraocht Grasn"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Bainteach le hIdirlon"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Bainteach le hIdirlon"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Bainteach le hIdirlon"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Bainteach le hIdirlon"
-
-#~ msgid "yellow pages"
-#~ msgstr "leathanaigh bu"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Cumraigh ADSL"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Roghnaigh Comhad"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Cumraigh nasc ghrasn"
-
-#~ msgid "Configure..."
-#~ msgstr "Cumraigh..."
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "cumraocht"
-
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Trialaigh an cumraocht"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Cumraigh LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Cruthaigh flapach bootil"
-
-#~ msgid "Choice"
-#~ msgstr "Rogha"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Eile"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Ceisteanna eile"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Cead Freastala DNS"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Dara Freastala DNS"
-
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Luchg ar bith"
-
-#, fuzzy
-#~ msgid "Development, Database"
-#~ msgstr "Forbairt"
-
-#, fuzzy
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Cn tescn ag a dteastaonn uait a bhogadh?"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Dan iarracht mideam a aimsi?"
-
-#, fuzzy
-#~ msgid "Configure local network"
-#~ msgstr "Cumraigh grasn"
-
-#, fuzzy
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nasc na hIdirlon agus cumraocht"
-
-#, fuzzy
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "T grasn lganta cumraithe cheana fin. An dteastaonn uait:"
-
-#, fuzzy
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Cumraigh Crta PCMCIA"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Uirlis Idirlon"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Forbairt C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Cumraigh crios ama"
-
-#, fuzzy
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Printir Grasn (lpd)"
-
-#, fuzzy
-#~ msgid "Enable num lock at startup"
-#~ msgstr "X ag ts"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Pasfhocal (ars)"
-
-#~ msgid "Gateway device:"
-#~ msgstr "Gaireas na hInneal Geata:"
-
-#~ msgid "default"
-#~ msgstr "gnth"
-
-#, fuzzy
-#~ msgid "What is your system used for?"
-#~ msgstr "Cn ceann do chrois ama"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "sid diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Socraithe"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Bain sid as scilcomhad"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Bain sid as pasfhocail MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cuardaigh"
-
-#~ msgid "Package"
-#~ msgstr "Paciste"
-
-#~ msgid "Tree"
-#~ msgstr "Crann"
-
-#~ msgid "Category"
-#~ msgstr "Saghas"
-
-#~ msgid "Installed packages"
-#~ msgstr "Pacist feisti"
-
-#~ msgid "Available packages"
-#~ msgstr "Pacist le fil"
-
-#~ msgid "Find Package"
-#~ msgstr "Cuardaigh Paciste"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Directory"
-#~ msgstr "Eolaire"
-
-#~ msgid "Other countries"
-#~ msgstr "Tr Eile"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "mideim alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "mideim ECI"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "n sid pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (tbhachtach)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (an-dheas)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (deas)"
-
-#~ msgid "Czech"
-#~ msgstr "Ceichs"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Athchumraigh an grasn itil"
-
-#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Bainteach le hIdirlon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Bainteach le hIdirlon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Bainteach le hIdirlon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Bainteach le hIdirlon"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Uath-Riteach"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Uath-cuardaigh riteach"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Feisti/Tarrthil"
-
-#~ msgid "Rescue"
-#~ msgstr "Tarrthil"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Luchg ADB Apple"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Luchg ADB Apple (2 Cnaip)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Luchg Apple ADB (3+ Cnaip)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Luchg USB Apple"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Luchg USB Apple (2 Cnaip)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Luchg USB Apple (3+ Cnaip)"
-
-#~ msgid "Generic Mouse (PS/2)"
-#~ msgstr "Mouse Gnth (PS/2)"
-
-#~ msgid "Logitech MouseMan/FirstMouse (ps/2)"
-#~ msgstr "Logitech MouseMan/FirstMouse (ps/2)"
-
-#~ msgid "ASCII MieMouse (PS/2)"
-#~ msgstr "ASCII MieMouse (PS/2)"
-
-#~ msgid "Genius NetMouse Pro (PS/2)"
-#~ msgstr "Genius NetMouse Pro (PS/2)"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "Luchg Bus ATI"
+#~ msgid "What do you want to do?"
+#~ msgstr "Card a theastaonn uait a dhanamh?"
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Luchg Bus Microsoft"
+#~ msgid "Change Monitor"
+#~ msgstr "Athraigh Scilen"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "Luchg USB (3 cnaip n nos m)"
+#~ msgid "Change Graphics card"
+#~ msgstr "Athraigh carta grafach"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A n barr (srathach)"
+#~ msgid "Change Server options"
+#~ msgstr "Athraigh cumraocht an freastala"
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (srathach)"
+#~ msgid "Change Resolution"
+#~ msgstr "Athraigh Riteach"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (srathach)"
+#~ msgid "Show information"
+#~ msgstr "Taispen Eolas"
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (srathach)"
+#~ msgid "Test again"
+#~ msgstr "Bain trial as ars"
-#~ msgid "Microsoft IntelliMouse (serial)"
-#~ msgstr "Microsoft IntelliMouse (srathach)"
+#~ msgid "Graphics card"
+#~ msgstr "Carta Grafach"
-#~ msgid "Logitech MouseMan/FirstMouse (serial)"
-#~ msgstr "Logitech MouseMan/FirstMouse (srathach)"
+#~ msgid "Select a graphics card"
+#~ msgstr "Roghnaigh carta grafachach"
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Luchg de gnth (srathach)"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Gnth VGA, 640x480 ag 60Hz"
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft n comhorinach (srathach)"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 ag 56 Hz"
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Luchg 3-cnaipe de gnth (srathach)"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Cinal 8514, 1024x768 ag 87 Hz Idirdhuillith (gan 800x600)"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (srathach)"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ag 87 Hz Idirdhuillithe, 800x600 ag 56 Hz"
-#~ msgid "What do you wish to do?"
-#~ msgstr "Card a theastaonn uait a dhanamh?"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "SVGA Leathnaithe, 800x600 ag 60 Hz, 640x480 ag 72 Hz"
-#~ msgid "pump"
-#~ msgstr "pump"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA Neamh-idirdhuillithe, 1024x768 ag 60 Hz, 800x600 ag 72 Hz"
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA d'rd minicocht, 1024x768 ag 70 Hz"
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Scilen ilmhinicocht a bhfuil in ann do 1280x1024 ag 60 Hz"
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Cn cinal luchg at agat?"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Scilen ilmhinicocht a bhfuil in ann do 1280x1024 ag 74 Hz"
-#~ msgid "Cryptographic"
-#~ msgstr "Rnscrobhach"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Scilen ilmhinicocht a bhfuil in ann do 1280x1024 ag 76 Hz"
-#~ msgid "Configure LAN"
-#~ msgstr "Cumraigh LAN"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Scilen a bhfuil in ann do 1600x1200 ag 70Hz"
-#~ msgid "Show less"
-#~ msgstr "Taispan nos l"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Scilen a bhfuil in ann do 1600x1200 ag 76Hz"
-#~ msgid "Show more"
-#~ msgstr "Taispen nos mo"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Roghnaigh liebhal slndil"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index a0f63f21a..1c219d281 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -1,82 +1,108 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999, 2000 Mandrakesoft.
-# Copyright (C) 2000 Jess Bravo lvarez.
-# Jos Manuel Cambre <asforber@asforber.com>, 1999
-# Jess Bravo lvarez <jba@pobox.com>, 2000
-#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-06-08 18:14+0200\n"
+"Project-Id-Version: drakfloppy\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-03-17 19:17+0100\n"
"Last-Translator: Jess Bravo lvarez (mdk) <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-#, fuzzy
-msgid "Use Xinerama extension"
-msgstr "Usar deteccin automtica"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ou mis"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Escolla un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "lendo a configuracin"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Tarxeta grfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccione a cantidade de memoria da tarxeta grfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione unha tarxeta grfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuracin de XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolla un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Que configuracin de XFree quere usar?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
+#: ../../Xconfig/card.pm_.c:375
#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolla un servidor X"
+msgid "Use Xinerama extension"
+msgstr "Usar deteccin automtica"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Axudante da configuracin de rede"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Que configuracin de XFree quere usar?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s con aceleracin 3D por hardware"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,33 +112,18 @@ msgstr ""
"XFree %s. A tarxeta est soportada por XFree %s, que pode ter un mellor\n"
"soporte en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"A sa tarxeta pode ter soporte de aceleracin 3D por hardware con XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleracin 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"A sa tarxeta pode ter soporte de aceleracin 3D por hardware, pero s con\n"
-"XFree %s, ADVIRTA QUE ESTE SOPORTE EXPERIMENTAL E PODE COLGAR O SISTEMA."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleracin 3D por hardware EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +135,58 @@ msgstr ""
"A sa tarxeta est soportada por XFree %s, que pode ter un mellor soporte en "
"2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"A sa tarxeta pode ter soporte de aceleracin 3D por hardware, pero s con\n"
+"XFree %s, ADVIRTA QUE ESTE SOPORTE EXPERIMENTAL E PODE COLGAR O SISTEMA."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuracin de XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione a cantidade de memoria da tarxeta grfica"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolla as opcins para o servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Manter os cambios?\n"
+"A configuracin actual :\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Escolla o monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalizado"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Xenrico"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Refacer"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,515 +209,327 @@ msgstr ""
"xa que pode danalo.\n"
"No caso de dbida, escolla unha configuracin conservadora."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frecuencia de actualizacin horizontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frecuencia de actualizacin vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "O monitor non est configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "A tarxeta grfica anda non est configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolucins anda non escollidas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Desexa probar a configuracin?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Aviso: probar esta tarxeta grfica pode colgar o ordenador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Proba da configuracin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 cores (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probe a cambiar algns parmetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil cores (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ocorreu un erro:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil cores (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Sando en %d segundos"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millns de cores (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr " esta a configuracin correcta?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 mil millns de cores (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ocorreu un erro, probe a cambiar algns parmetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolucins"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolucin"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Escolla a resolucin e a profundidade de cor"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Tarxeta grfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mis"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelar"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Aceptar"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ver todo"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Desexa probar a configuracin?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucins"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Proba da configuracin"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposicin do teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo de rato: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo do rato: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecuencia horizontal do monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecuencia vertical do monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Tarxeta grfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Tarxeta grfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memoria da tarxeta grfica: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profundidade de cor: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolucin: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando a configuracin de X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Qu desexa facer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Mudar o monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Mudar a tarxeta grfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Mudar as opcins do servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Mudar a resolucin"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar informacin"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probar de novo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Sar"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Manter os cambios?\n"
-"A configuracin actual :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Lanzar X11 arrincar"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Pdese configurar o seu ordenador para que entre automaticamente\n"
"en X arrincar. Desexa que se execute X reiniciar?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Entre de novo en %s para activar os cambios"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Saia da sesin e use Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 cores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil cores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil cores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millns de cores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 mil millns de cores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ou mis"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estndar, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA estendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor soportando 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor soportando 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primeiro sector da particin de arranque"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primeiro sector do disco (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalacin do SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Onde quere instalar o cargador de arrinque?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalacin do LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO con men de texto"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO con men grfico"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrincar dende DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opcins principais do cargador de arrinque"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Cargador de arrinque que usar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalacin do cargador de arrinque"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositivo de arrinque"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (non funciona en BIOS antigas)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modo de vdeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Retardo antes de arrincar a imaxe por omisin"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Contrasinal"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Restrinxir opcins da lia de comandos"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "restrinxir"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Baleirar /tmp en cada arrinque"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tamao exacto de memoria se for necesario (atopronse %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Activar perfs mltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Indicar o tamao da memoria en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"A opcin ``restrinxir opcins da lia de comandos'' non ten sentido sen "
"contrasinal"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Tente de novo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Mensaxe inicial"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Permitir o arrinque de CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "SO por omisin?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -688,83 +538,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas mis ou cambiar as que xa existen."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Engadir"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Feito"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Que tipo de entrada desexa engadir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imaxe"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Raz"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Agregar"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura-escritura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tboa"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Por omisin"
@@ -797,53 +647,75 @@ msgstr "Debe ter unha particin de intercambio"
msgid "This label is already used"
msgstr "Esta etiqueta xa se est a usar"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s atopadas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Ten algunha outra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ten algunha interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Si"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Mire a informacin sobre o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando o controlador para a tarxeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mdulo %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Aqu deben ir as diferentes opcins para o mdulo %s.\n"
+"As opcins son da forma nome=valor nome2=valor2 ....\n"
+"Por exemplo pode ter io=0x300 irq=7"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcins do mdulo:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Que controlador de %s desexa probar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -861,37 +733,15 @@ msgstr ""
"analizar o equipo pode provocar que se pare, pero non debera\n"
"causar ningn dano."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Autodeteccin"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especificar as opcins"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Aqu deben ir as diferentes opcins para o mdulo %s.\n"
-"As opcins son da forma nome=valor nome2=valor2 ....\n"
-"Por exemplo pode ter io=0x300 irq=7"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcins do mdulo:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -900,49 +750,54 @@ msgstr ""
"Fallo o cargar o mdulo %s\n"
"Desexa retentalo con outros parmetros?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Este contrasinal demasiado simple"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Indique o nome de usuario"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "O nome de usuario (login) s debe conter letras, nmeros, '-' e '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Este nome de usuario xa est engadido"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Este nome de usuario xa est engadido"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -951,32 +806,32 @@ msgstr ""
"Introduza un usuario\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aceptar usuario"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nome de usuario"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Login automtico"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -986,123 +841,103 @@ msgstr ""
"como un usuario. Se non quere usar esta caracterstica, prema o botn\n"
"cancelar."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras para executar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Escolla a lingua que desexe usar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Pode escoller outras linguas que estarn dispoibles trala instalacin"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Todas"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizado"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS iniciando"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"Est seguro de que quere deseleccionalo?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Benvida s crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Estndar"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1112,7 +947,7 @@ msgstr ""
"sinxelo de utilizar, pero moi sensible: non debe usarse nunha mquina\n"
"conectada a outras ou Internet. Non hai contrasinais de acceso."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1120,7 +955,7 @@ msgstr ""
"Os contrasinais estn activados, pero o uso como ordenador de rede anda\n"
"non se recomenda."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1129,60 +964,61 @@ msgstr ""
"Esta a seguridade recomendada para un ordenador usado para conectar\n"
" Internet como cliente. Agora hai ms comprobacins de seguridade."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Con este nivel de seguridade, posible usar este sistema coma servidor.\n"
"A seguridade agora alta dabondo para usar o sistema coma un servidor\n"
"que acepta conexins de mltiples clientes."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Tmanse caractersticas do nivel 4, pero agora o sistema est completamente\n"
"pechado. As caractersticas de seguridade estn mximo nivel."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escola o nivel de seguridade"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Establecendo o nivel de seguridade"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolla as opcins para o servidor"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1206,53 +1042,53 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvido ao GRUB, o selector de sistemas operativos!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use as teclas %c e %c para seleccionar a entrada marcada."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Prema enter para arrincar o SO seleccionado, 'e' para editar os"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes de arrincar, ou 'c' para a lia de comandos."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "A entrada marcada arrincarase automaticamente en %d segundos."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "non hai espacio dabondo en /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escritorio"
# Manter o '' en iso-8859-1
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Men Inicio"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Onde quere instalar o cargador de arrinque?"
@@ -1265,15 +1101,19 @@ msgstr "axuda anda non implementada.\n"
msgid "Boot Style Configuration"
msgstr "Configuracin do estilo de arrinque"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ficheiro"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ficheiro/_Sar"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1312,12 +1152,12 @@ msgstr "Modo de arrinque"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1328,7 +1168,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar o sistema X-Window iniciar"
#: ../../bootlook.pm_.c:148
@@ -1339,14 +1179,16 @@ msgstr "Non, non quero login automtico"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Si, quero login automtico con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Aceptar"
@@ -1395,7 +1237,7 @@ msgstr "Non posible engadir mis particins"
msgid "Screenshots will be available after install in %s"
msgstr "Pode escoller outras linguas que estarn dispoibles trala instalacin"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
@@ -1403,7 +1245,7 @@ msgstr "Francia"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1432,11 +1274,12 @@ msgstr "Noruegus"
msgid "Sweden"
msgstr "Mirar"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiano"
@@ -1446,7 +1289,7 @@ msgstr "Italiano"
msgid "Austria"
msgstr "serie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1454,8 +1297,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Faga primeiro unha copia de seguridade dos seus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lea coidadosamente!"
@@ -1468,11 +1311,12 @@ msgstr ""
"Se ten pensado usar aboot, tea coidado de deixar un espacio libre (2048\n"
"sectores abondan) no inicio do disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Erro"
@@ -1480,11 +1324,11 @@ msgstr "Erro"
msgid "Wizard"
msgstr "Axudante"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Escolla a accin"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1496,150 +1340,155 @@ msgstr ""
"Aconsllase que primeiro a redimensione\n"
"(prema nela, e logo en \"Redimensionar\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prema nunha particin"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalles"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "mount fallou"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Baleiro"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Outros"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipos de sist. de ficheiros:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' no seu lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Borrar"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
" mudar o tipo da particin %s, perderanse tdolos datos desta particin"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Escolla a accin"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Crear unha nova particin"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Mudar a modo experto"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Mudar a modo normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Refacer"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Continuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Sar sen gardar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Sar do programa sen gardar a tboa de particins?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Desexa probar a configuracin?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Asignacin automtica"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mis"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Informacin do correo"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Tdalas particins primarias estn usadas"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Non posible engadir mis particins"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1647,35 +1496,35 @@ msgstr ""
"Para ter mis particins, borre unha para poder crear unha particin "
"estendida"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Escribir tboa de particins"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Tboa de particins de rescate"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Tboa de particins de rescate"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Tboa de particins de rescate"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Automonta-las unidades extrables"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Seleccione un ficheiro"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1683,11 +1532,11 @@ msgstr ""
"A tboa de particins de rescate non ten\n"
"o mesmo tamao. Continuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1695,124 +1544,131 @@ msgstr ""
"Insira un disquete na unidade\n"
"Perderanse tdolos datos no disquete"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tentando recuperar a tboa de particins de rescate"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Informacin do correo"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaxe"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcins"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Desprazar"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Engadir RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Engadir LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Quitar do RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Quitar do LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificar o RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crear unha nova particin"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector inicial: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Tamao en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punto de montaxe: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mudar o tipo de particin"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Qu sistema de ficheiros desexa?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Onde desexa montar o ficheiro loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Onde desexa montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1821,129 +1677,136 @@ msgstr ""
"usar de loopback.\n"
"Quite primeiro o loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calculando os lmites do sistema de ficheiros FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Esta particin non se pode redimensionar"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Debera facer unha copia de seguridade dos datos desta particin"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
" redimensionar a particin %s, perderanse tdolos datos desta particin"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Escoller o novo tamao"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Tamao en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "A que disco desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "A que sector desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Desprazando"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Desprazando particin..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Escolla un dos RAID para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novo"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Escolla un dos LVM para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nome do LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Esta particin non pode usarse para loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nome do ficheiro loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nome real"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "O ficheiro xa est a ser usado por outro loopback, escolla outro"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "O ficheiro xa existe. Usalo?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Opcins do mdulo:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "tamao do bloque de datos"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Tea coidado: esta operacin perigosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Qu tipo de particionamento quere?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Este paquete ten que ser actualizado\n"
+"Est seguro de que quere deseleccionalo?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1954,7 +1817,7 @@ msgstr ""
"(nun cilindro > 1024). Se usa o LILO, non funcionar, e se non o\n"
"usa, non necesita /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1966,7 +1829,7 @@ msgstr ""
"Se pensa usar o selector de SO de arrinque LILO, lembre engadir unha\n"
"particin /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1977,138 +1840,138 @@ msgstr ""
"particin /boot.\n"
"Lembre polo tanto engadir unha particin /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Escribirase disco a tboa de particins da unidade %s!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Necesitar reiniciar o equipo para que a modificacin sexa tomada en conta"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr " formatar a particin %s, perderanse tdolos datos desta particin"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando a particin %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid fallou"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particins"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particins"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resolucin: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra de unidade DOS: %s (aproximacin)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Inicio: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Tamao: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindro %d a cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Non formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ficheiro(s) loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2116,27 +1979,27 @@ msgstr ""
"Particin de arrinque por omisin\n"
" (para arrincar en MS-DOS, non para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamao do bloque de datos %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do ficheiro loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2144,7 +2007,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2152,65 +2015,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Tamao: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Xeometra: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de tboa de particins: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "no bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcins: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Este contrasinal demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2221,36 +2084,66 @@ msgstr "Mudar o tipo de particin"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prema nunha particin"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticacin"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nome de usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nome de usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Dominio NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Servidor DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "O formato %s de %s fallou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Descocese o xeito de formatar %s de tipo %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2267,69 +2160,323 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Non pode usar JFS para particins mis pequenas que 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non pode usar ReiserFS para particins mis pequenas que 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Os puntos de montaxe deben empezar por /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Xa existe unha particin co punto de montaxe %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Non pode usar un volume lxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debera permanecer dentro do sistema de ficheiros raz"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necesita un sistema de ficheiros real (ext2, reiserfs) para este punto de "
"montaxe\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Non pode usar un volume lxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Non hai espacio libre dabondo para asignar novas particins"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro abrir %s para escritura: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ocorreu un erro - non se atopou ningn dispositivo vlido para crear novos "
"sistemas de ficheiros. Verifique o seu equipo para ver a razn deste problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Non ten ningunha particin!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Usar deteccin automtica"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Xenrico"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoria da tarxeta (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatando"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Mudar o tipo de particin"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Sar"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/A_xuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/A_xuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Axuda/_Acerca..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Rato"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoria da tarxeta (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelar"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Rato"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descricin"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticacin"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Seleccione un ficheiro"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositivo de pasarela"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botns"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detectar discos duros"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Mire a informacin sobre o hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostrar informacin"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configurar o rato"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectado no porto %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Agarde, por favor"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segundos"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Lendo a base de datos de controladores de CUPS..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Autodeteccin"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2343,7 +2490,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2414,9 +2561,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2606,7 +2752,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2618,9 +2764,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2667,21 +2812,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2697,9 +2841,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Neste punto, ten que escoller onde quere instalar o sistema operativo\n"
"Mandrake Linux no disco duro. Se est baleiro, ou se hai outro sistema\n"
@@ -2784,9 +2928,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2896,38 +3039,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3002,11 +3139,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3063,7 +3200,7 @@ msgstr ""
"coecemento de GNU/Linux. Polo tanto, non\n"
" escolla esta clase de instalacin a menos que saiba o que est a facer."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3078,7 +3215,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3093,7 +3230,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3109,7 +3246,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3118,23 +3255,23 @@ msgstr ""
"Seleccione o porto correcto. Por exemplo, o porto\n"
"COM1 en MS Windows chmase ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3156,7 +3293,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3178,7 +3315,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3186,7 +3323,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3207,7 +3344,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3233,7 +3370,7 @@ msgstr ""
"poidendo borrar as entradas correspondentes. Pero neste caso, precisar\n"
"un disquete de arrinque para poder usalos."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3249,29 +3386,28 @@ msgstr ""
"A menos que sepa exactamente o que fai, elixa sempre\n"
"\"Primeiro sector do disco (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3280,7 +3416,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3305,11 +3441,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3319,9 +3455,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3333,7 +3468,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3359,7 +3494,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3386,18 +3521,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3405,12 +3539,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3426,14 +3559,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3444,7 +3577,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3452,12 +3585,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3472,20 +3605,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira un disquete formatado con FAT na unidade %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3493,7 +3626,7 @@ msgstr ""
"Para usar esta seleccin de paquetes gardada, arrinque a instalacin con "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo o ficheiro %s"
@@ -3523,7 +3656,7 @@ msgstr "Debe ter unha particin de intercambio"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3531,60 +3664,60 @@ msgstr ""
"\n"
"Desexa continuar de calquera xeito?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe ter unha particin de intercambio"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Usar espacio libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Non hai espacio libre dabondo para asignar novas particins"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Usar particin existente"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Non hai ningunha particin existente para usar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Usar a particin de Windows para loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Que particin desexa usar para Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Escolla os tamaos"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Tamao da particin raz en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Tamao da particin de intercambio en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Usar o espacio libre da particin de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Que particin desexa redimensionar?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calculando os lmites do sistema de ficheiros de Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3593,13 +3726,16 @@ msgstr ""
"O redimensionador de FAT non capaz de manexar a sa particin,\n"
"ocorreu o seguinte erro: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"A particin de Windows est demasiado fragmentada, execute primeiro o "
"``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3620,56 +3756,56 @@ msgstr ""
"Tamn aconsellable facer unha copia de seguridade dos seus datos.\n"
"Cando estea seguro, prema Aceptar."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Que tamao desexa manter para o Windows en"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particin %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "O redimensionamento da FAT fallou: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Non hai particins FAT para redimensionar ou para usar como loopback (ou non "
"hai espacio libre dabondo)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Borrar o disco completo"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Borrar Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Ten mis dunha unidade de disco duro, en cal delas desexa instalar linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Perderanse TODAS as particins existentes e os seus datos na unidade %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionamento de disco personalizado"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3678,11 +3814,11 @@ msgstr ""
"Pode agora particionar %s.\n"
"Cando remate, non esqueza gravar usando `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Non ten espacio libre dabondo na particin de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Non se pode atopar espacio para a instalacin"
@@ -3690,16 +3826,16 @@ msgstr "Non se pode atopar espacio para a instalacin"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "O axudante de particionamento do DrakX atopou as seguintes solucins:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "O particionamento fallou: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Activando a rede"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Desactivando a rede"
@@ -3711,12 +3847,12 @@ msgstr ""
"Ocorreu un erro, e o programa non sabe como manexalo de\n"
"maneira limpa. Contine seu propio risco."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaxe %s duplicado"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3728,12 +3864,12 @@ msgstr ""
"Comprobe o cdrom nun ordenador xa instalado usando \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Benvido a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ningunha disqueteira dispoible"
@@ -3743,9 +3879,9 @@ msgstr "Ningunha disqueteira dispoible"
msgid "Entering step `%s'\n"
msgstr "Entrando na etapa '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3755,203 +3891,158 @@ msgstr ""
"en modo texto. Para iso, prema 'F1' cando arrinque o CDROM, e escriba\n"
"'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Clase de instalacin"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Escolla unha das seguintes clases de instalacin:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "O tamao total dos grupos que seleccionou aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se quere instalar menos deste tamao,\n"
-"seleccione a porcentaxe de paquetes que desexe.\n"
-"\n"
-"Unha porcentaxe baixa instalar s os paquetes mis importantes;\n"
-"unha porcentaxe dun 100%% instalar tdolos paquetes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Ten espacio no seu disco para unicamente o %d%% destes paquetes.\n"
-"\n"
-"Se desexa instalar menos ca isto,\n"
-"seleccione a porcentaxe de paquetes que quere instalar.\n"
-"Unha porcentaxe baixa instalar s os paquetes mis importantes;\n"
-"unha porcentaxe de %d%% instalar tdolos paquetes posibles."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vostede poder escollelos mis especificamente na seguinte etapa."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Porcentaxe de paquetes a instalar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Seleccin dos grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Seleccin individual de paquetes"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamao total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquete errneo"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versin: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamao: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
"instalalo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Vanse eliminar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Non pode seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este un paquete obrigatorio, non se pode deseleccionar"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Non pode deseleccionar este paquete. Xa est instalado"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"Est seguro de que quere deseleccionalo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non pode deseleccionar este paquete. Ten que ser actualizado"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Gardar a seleccin de paquetes"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalar"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Escolla os paquetes que desexa instalar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Por favor, agarde, preparando a instalacin"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalando o paquete %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rexeitar"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3965,17 +4056,17 @@ msgstr ""
"Por favor, insira o Cd-Rom etiquetado \"%s\" na unidade e prema Aceptar. Se "
"non o ten, prema Cancelar para omitir a instalacin deste Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Seguir adiante?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Houbo un erro ordenar os paquetes:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Houbo un erro instalar os paquetes:"
@@ -4020,11 +4111,11 @@ msgstr "Ocorreu un erro"
msgid "Do you really want to leave the installation?"
msgstr "Desexa reiniciar a rede?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acordo da licencia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4039,7 +4130,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4145,113 +4236,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Escolla a disposicin do seu teclado."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Esta a lista completa de teclados dispoibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Qu clase de instalacin desexa?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalar/Actualizar"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr " isto unha instalacin ou unha actualizacin?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomendada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experto"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Actualizacin"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Gardar a seleccin de paquetes"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porto do rato"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Escolla o porto serie onde est conectado o seu rato."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configurando tarxetas PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configurando o IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ningunha particin dispoible"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Examinando as particins para atopar os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Seleccione os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4264,7 +4359,7 @@ msgstr ""
"\n"
"Concorda coa perda de tdalas particins?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4272,144 +4367,147 @@ msgstr ""
"O DiskDrake non puido ler correctamente a tboa de particins.\n"
"Contine seu propio risco!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elixa as particins que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Particin raz"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Cal a particin raz (/) do seu sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar o equipo para que a modificacin da tboa\n"
"de particins se tome en conta"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elixa as particins que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Comprobar os bloques errneos?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatando as particins"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando e formatando o ficheiro %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Non hai espacio de intercambio dabondo para finalizar a instalacin,\n"
"por favor, engada algn"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Buscando os paquetes dispoibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Buscando os paquetes dispoibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Atopando os paquetes para actualizar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Non pode deseleccionar este paquete. Xa est instalado"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"O seu sistema non ten espacio libre dabondo para a instalacin ou "
"actualizacin (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completo (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mnimo (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendado (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Seleccin dos grupos de paquetes"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Elixa o paquete a instalar"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Agarde"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4419,16 +4517,16 @@ msgstr ""
"Se non ten ningn deses CDs, prema Cancelar.\n"
"Se s faltan algns dos CDs, desmrqueos, e prema Aceptar."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etiquetado \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparando a instalacin"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4437,23 +4535,23 @@ msgstr ""
"Instalando o paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuracin trala instalacin"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4522,167 +4620,198 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Contactando co espello para obter a lista dos paquetes dispoibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Escoller un espello do que coller os paquetes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Contactando co espello para obter a lista dos paquetes dispoibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Cal a sa zona horaria?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "O reloxo interno do seu ordenador usa a hora GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Sen impresora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ten algunha outra?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resume"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zona horaria"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Tarxeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Tarxeta de son"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Tarxeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows(FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Impresora local"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasinal de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sen contrasinal"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Este contrasinal demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticacin"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticacin"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticacin NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticacin"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Dominio NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4711,19 +4840,19 @@ msgstr ""
"de Mandrake, facendo as moito mis fcil a recuperacin no caso de fallo\n"
"grave do sistema. Desexa crear un disco de arrinque para o seu sistema?"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primeira unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segunda unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4750,7 +4879,7 @@ msgstr ""
"grave do sistema. Desexa crear un disco de arrinque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4759,28 +4888,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, pero non hai ningunha disqueteira dispoible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Escolla a disqueteira que quere usar para crear o disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creando o disco de arrinque"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparando o cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4788,11 +4917,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Desexa usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4800,16 +4929,16 @@ msgstr ""
"Erro instalando aboot, \n"
"probar a forzar a instalacin mesmo se iso destre a primeira particin?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "A instalacin do xestor de arrinque fallou. Ocorreu o seguinte erro:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4820,18 +4949,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creando un disquete de auto-instalacin"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4841,7 +4969,8 @@ msgstr ""
"\n"
"Desexa realmente sar agora?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4852,7 +4981,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4866,18 +4995,22 @@ msgstr ""
"de Mandrake Linux, consulte o ficheiro de erratas dispoibles en\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Para informacin sobre a configuracin do seu sistema, despois\n"
"da instalacin, hai un captulo na Gua do Usuario Oficial\n"
"de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Xerar disquete de auto-instalacin"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4891,15 +5024,15 @@ msgstr ""
"\n"
"Pode preferir realizar novamente a instalacin.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Gardar a seleccin de paquetes"
@@ -4927,422 +5060,406 @@ msgstr ""
msgid "Choose a file"
msgstr "Escolla a accin"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanzado"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Agarde, por favor"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir rbore"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Pechar rbore"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Mudar entre lista completa e ordenada por grupos"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Eleccin incorrecta, tente de novo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "A sa escolla? (por omisin %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "A sa escolla? (por omisin %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcins: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Desexa usar aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "A sa escolla? (por omisin %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemn"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Teclado dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espaol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finlands"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francs"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruegus"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Britnico"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenio (antigo)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenio (mquina de escribir)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenio (fontico)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaian (latn)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenio (fontico)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Blgaro"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suzo (alemn)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suzo (francs)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemn (sen teclas acentuadas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dinamarqus"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruegus)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Xeorxiano (\"ruso\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Xeorxiano (\"latino\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hngaro"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israel"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israel (Fontico)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islands"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Xapons de 106 teclas"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Britnico"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antigo)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (novo)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"ringleira de nmeros\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fontico\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Localizacin"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holands"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polaco (disposicin qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polaco (disposicin qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugus"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadiano (Qubec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaian (cirlico)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tboa"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (tradicional modelo \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (moderno modelo \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucrano"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"ringleira de nmeros\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslavo (latn/cirlico)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5355,7 +5472,31 @@ msgstr "Puntos de montaxe circulares %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Quitar primeiro os volumes lxicos\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Nmero de telfono"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatar particins"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5396,10 +5537,6 @@ msgstr "1 botn"
msgid "Generic 2 Button Mouse"
msgstr "Rato de 2 botns xenrico"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Xenrico"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Roda"
@@ -5464,38 +5601,54 @@ msgstr "ningn"
msgid "No mouse"
msgstr "Ningn rato"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Probe o seu rato"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVA A RODA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Seguinte ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr " isto correcto?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandir rbore"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Pechar rbore"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Mudar entre lista completa e ordenada por grupos"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar Internet"
@@ -5542,7 +5695,7 @@ msgstr ""
"Non se detectou ningn adaptador de rede ethernet no seu sistema.\n"
"Non se pode configurar este tipo de conexin."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Escolla a interface de rede"
@@ -5555,7 +5708,7 @@ msgstr "Escolla o adaptador de rede que desexa usar para conectar Internet"
msgid "no network card found"
msgstr "non se atopou ningunha tarxeta de rede"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configurando a rede"
@@ -5571,15 +5724,15 @@ msgstr ""
"Este nome debe ser completamente cualificado,\n"
"como ``miamaquina.meulab.miacomp.es''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nome de mquina"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Axudante da configuracin de rede"
@@ -5627,7 +5780,7 @@ msgstr "Configuracin da RDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccione o seu provedor.\n"
" Se non est na lista, escolla 'Unlisted'"
@@ -5650,14 +5803,14 @@ msgstr "Resto do mundo"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Resto do mundo \n"
" sen canle-D (lias dedicadas)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Qu protocolo desexa usar?"
#: ../../network/isdn.pm_.c:199
@@ -5681,7 +5834,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Se ten unha tarxeta ISA, os valores na seguinte pantalla deberan ser os "
@@ -5698,13 +5852,13 @@ msgid "Continue"
msgstr "Continuar"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Cal a sua tarxeta RDSI?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Detectouse unha Tarxeta RDSI PCI, pero se descoece o tipo. Seleccione unha "
"tarxeta PCI na seguinte pantalla."
@@ -5722,47 +5876,47 @@ msgstr "Escolla o porto serie onde est conectado o seu mdem."
msgid "Dialup options"
msgstr "Opcins de chamada"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nome da conexin"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Nmero de telfono"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID do login"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Baseado nun script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Baseado nun terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nome de dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primeiro Servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5770,7 +5924,7 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5778,11 +5932,11 @@ msgstr ""
"\n"
"Pode reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Est neste intre conectado internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5790,36 +5944,36 @@ msgstr ""
"\n"
"Pode conectar Internet ou reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Non est neste intre conectado Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "conexin por RDSI"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configurar a rede"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Conexin e configuracin de Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Pode desconectar ou reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5833,12 +5987,12 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a sa conexin."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuracin da rede"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5849,10 +6003,10 @@ msgstr ""
"Prema Aceptar para manter a configuracin, ou Cancelar para reconfigurar a "
"conexin de rede e Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
#, fuzzy
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -5862,93 +6016,99 @@ msgstr ""
"Vaise configurar a sa conexin internet/rede.\n"
"Se non quere usar a deteccin automtica, desmarque a caixa.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Escolla o perfil para configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Usar deteccin automtica"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modo experto"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detectando os dispositivos..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Conexin normal por mdem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectado no porto %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "conexin por RDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detectouse %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Conexin LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectouse na interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Conexin por cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Conexin por cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Conexin LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "tarxeta(s) ethernet detectada(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elixa a ferramenta que queira usar"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Comparticin da conexin Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Desexa que a conexin se inicie arrincar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuracin da rede"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5956,7 +6116,7 @@ msgid ""
"%s"
msgstr "Desexa reiniciar a rede?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -5966,7 +6126,7 @@ msgstr ""
"\n"
"Agora vai ser aplicada seu sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -5974,16 +6134,16 @@ msgstr ""
"Tras facer iso, aconsllase reiniciar o sistema X para\n"
"evitar os problemas de mudar o nome de mquina."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -5993,7 +6153,7 @@ msgstr ""
"Simplemente acepte para manter o dispositivo configurado.\n"
"Se modifica os campos de embaixo, subsituir esta configuracin."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6003,38 +6163,43 @@ msgstr ""
"Cada valor ten que ser introducido coma un enderezo IP en\n"
"notacin decimal con puntos (por exemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configurar o dispositivo de rede %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Enderezo IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Mscara de rede"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automtico"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciado o arrincar"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6046,64 +6211,64 @@ msgstr ""
"como ``miamaquina.meulab.miacomp.es''.\n"
"Pode tamn introducir o enderezo IP da pasarela se usa unha"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositivo de pasarela"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuracin dos proxys"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "O proxy debera ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "O proxy debera ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuracin de Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Quere probar agora a conexin Internet?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probando a conexin..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "O sistema est conectado Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6111,114 +6276,119 @@ msgstr ""
"Semella que o sistema non est conectado internet.\n"
"Probe reconfigurando a conexin."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuracin da conexin"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Encha ou marque os campos de embaixo"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ da tarxeta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoria da tarxeta (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S da tarxeta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_0 da tarxeta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 da tarxeta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "O seu nmero de telfono persoal"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nome do provedor (p.ex provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Nmero de telfono do provedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 do provedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 do provedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Escoller teclado"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modo de marcacin"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Tipo de conexin: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipo de conexin: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login da conta (nome de usuario)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Contrasinal da conta"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "mount fallou: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "As particins estendidas non estn soportadas nesta plataforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Ten un burato na tboa de particins, pero non se pode usar.\n"
"A nica solucin desprazar as particins primarias para que\n"
"o burato est despois das particins estendidas"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Fallou a restauracin a partir do ficheiro %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ficheiro de backup incorrecto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Erro escribindo ficheiro %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6228,193 +6398,193 @@ msgstr ""
"A proba para verificar a integridade dos datos fallou.\n"
"Isto significa que calquera escritura no disco producir lixo aleatorio"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "debe telo"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importante"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "moi bo"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bo"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "indiferente"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remoto"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impresora de rede (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impresora SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de impresin"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI do dispositivo de impresin"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Impresora local"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Erro escribindo ficheiro %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mdulo %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP do servidor CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Por omisin)"
@@ -6437,12 +6607,12 @@ msgstr ""
"ningunha impresora, xa que sern detectadas automaticamente.\n"
"No caso de dbida, seleccione \"Servidor CUPS remoto\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuracin da LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remoto"
@@ -6473,7 +6643,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "O nmero de porto debe ser numrico"
@@ -6482,7 +6652,7 @@ msgstr "O nmero de porto debe ser numrico"
msgid "CUPS server IP"
msgstr "IP do servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Porto"
@@ -6491,22 +6661,13 @@ msgstr "Porto"
msgid "Automatic CUPS configuration"
msgstr "Configuracin do estilo de arrinque"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detectando os dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar portos"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6519,14 +6680,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6544,12 +6705,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6563,11 +6724,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6577,35 +6738,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Usar deteccin automtica"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Probar portos"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "detectouse %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6613,43 +6778,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI do dispositivo de impresin"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6657,7 +6822,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6665,73 +6830,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Escolla o porto serie onde est conectado o seu mdem."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI do dispositivo de impresin"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuracin"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalando o paquete %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcins da impresora remota lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6741,31 +6916,31 @@ msgstr ""
"que indique o nome do servidor de impresin e o nome da fila\n"
"nese servidor."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcins de impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6780,35 +6955,35 @@ msgstr ""
"da impresora que quere usar, as como calquera nome de usuario,\n"
"grupo de traballo ou contrasinal que for necesario."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Servidor de SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nome de recurso compartido"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupo de traballo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6832,7 +7007,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6841,7 +7016,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6849,11 +7024,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcins de impresora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6867,28 +7042,28 @@ msgstr ""
"que desexa usar, as como calquera nome de usuario ou contrasinal\n"
"que for necesario."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de impresin"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nome da fila de impresin"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcins da impresora de socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6899,60 +7074,56 @@ msgstr ""
"Para imprimir nunha impresora de socket, ten que fornecer\n"
"o nome do servidor da impresora, e opcionalmente o nmero do porto."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Servidor de impresin"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Servidor de impresin"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI do dispositivo de impresin"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nome da impresora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descricin"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Localizacin"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6967,28 +7138,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr " isto correcto?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Conexin da impresora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Qu tipo de impresora ten?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6997,18 +7168,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuracin de Internet"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7018,12 +7189,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuracin de Internet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7031,7 +7202,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7044,7 +7215,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7054,34 +7225,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Desexa probar a impresin?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Probar portos"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7089,45 +7260,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Si, imprimir ambas pxinas de proba"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Impresora"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Ferramentas estndar"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Imprimindo pxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Imprimindo pxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Imprimindo pxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Imprimindo pxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7143,7 +7314,7 @@ msgstr ""
"\n"
"Funciona correctamente?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7153,16 +7324,16 @@ msgstr ""
"Pode que lle leve un pouco ata que a impresora comece.\n"
"Funciona correctamente?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7171,15 +7342,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7188,49 +7359,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7240,7 +7411,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7249,31 +7420,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Rato"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Desactivando a rede"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Rato"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opcins da impresora"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7281,38 +7463,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuracin de Internet"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7322,51 +7504,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7374,62 +7556,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configurar a impresora"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Probando a conexin..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "O monitor non est configurado"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7437,12 +7619,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Configurando a rede"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7452,34 +7634,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Que sistema de impresin desexa usar?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alto"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoico"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7494,12 +7676,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Que sistema de impresin desexa usar?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7513,69 +7695,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Seleccin da conexin da impresora"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Que sistema de impresin desexa usar?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcins da impresora"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Desexa configurar unha impresora?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7586,7 +7768,7 @@ msgstr ""
"Estas son as filas de impresin.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7596,139 +7778,143 @@ msgstr ""
"Estas son as filas de impresin.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Sar"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Desexa probar a configuracin?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuracin de Internet"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Desexa probar a configuracin?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Comparticin da conexin Internet"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Conexin da impresora"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Imprimindo pxina(s) de proba..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Desexa probar a configuracin?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Desexa reiniciar a rede?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7812,24 +7998,60 @@ msgstr "Os contrasinais non coinciden"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Non se pode engadir unha particin RAID _formatado_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Non se pode escribir o ficheiro %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid fallou"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fallou (pode que non estean as raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non hai particins dabondo para o nivel RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Este nivel hai que usalo con coidado. Fai que o seu sistema sexa mis\n"
+"sinxelo de utilizar, pero moi sensible: non debe usarse nunha mquina\n"
+"conectada a outras ou Internet. Non hai contrasinais de acceso."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Con este nivel de seguridade, posible usar este sistema coma servidor.\n"
+"A seguridade agora alta dabondo para usar o sistema coma un servidor\n"
+"que acepta conexins de mltiples clientes."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuracin da LAN"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcins"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7884,7 +8106,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7953,7 +8175,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8029,7 +8251,7 @@ msgstr ""
"como NFS e NIS. O servidor portmap ten que estar a se executar en mquinas\n"
"que actan de servidores de protocolos que usan o mecanismo RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8128,7 +8350,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8251,6 +8473,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Centro de control"
@@ -8355,6 +8578,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalando o paquete %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Saia da sesin e use Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Entre de novo en %s para activar os cambios"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8363,6 +8595,160 @@ msgstr ""
"Non se pode ler a tboa de particins, est demasiado deteriorada :-(\n"
"Probarase a ir poendo en branco as particins errneas"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuracin de Internet"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Engadir usuario"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Axuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Non conectado"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Borrar"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccione un ficheiro"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Engadir usuario"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Configurando..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "reconfigurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Insira un disquete na unidade %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ningunha disqueteira dispoible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8404,6 +8790,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creando un disquete de auto-instalacin"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8412,47 +8803,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Noraboa!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalar"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Engadir usuario"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8460,15 +8844,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8476,707 +8852,771 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Erro lendo o ficheiro %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Seleccin dos grupos de paquetes"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Conexin LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Seleccin da conexin da impresora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Escolla a disposicin do seu teclado."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prema nunha particin"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Escolla os paquetes que desexa instalar."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Usar optimizacins de disco duro"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Usar optimizacins de disco duro"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Agarde"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opcins do mdulo:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuracin da rede"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
#, fuzzy
msgid ""
"\n"
"- User Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
#, fuzzy
msgid ""
"\n"
"- Other Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositivo do rato: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcins"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Escolla o porto serie onde est conectado o seu mdem."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuracin da rede"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Probe o seu rato"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Conexin LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Seleccin da conexin da impresora"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Outros"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizado"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Axuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Estado:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Texto"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Seleccionar paquetes"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Vanse instalar os seguintes paquetes"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Gardar nun ficheiro"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuracin da rede"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuracin da rede"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuracin da LAN"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuracin da LAN"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9208,7 +9648,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9217,7 +9657,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9258,7 +9698,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9286,12 +9726,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9308,7 +9753,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9348,7 +9793,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9359,7 +9804,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9372,7 +9817,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9416,104 +9861,524 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Fallou a instalacin do %s. Ocorreu o erro seguinte:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ferramentas de consola"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Centro de control"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "obrigatorio"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Rato"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impresora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nome de recurso compartido"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Axudante da configuracin de rede"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticacin"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Seleccin dos grupos de paquetes"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Agarde, por favor"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Sar da instalacin"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Porto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Pode escoller outras linguas que estarn dispoibles trala instalacin"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuracin de rede (%d adaptadores)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Borrar perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil para borrar:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novo perfil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nome de mquina: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Acceso Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Pasarela:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estado:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurar o acceso Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuracin da LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Controlador"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Estado"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurar a rede de rea local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Axudante..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Por favor, agarde... Aplicando a configuracin"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Non conectado"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#, fuzzy
+msgid "Disconnect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuracin da LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocolo de arrinque"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciado o arrincar"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Activar"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Activar"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuracin da conexin Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuracin da conexin Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipo de conexin: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parmetros"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Pasarela"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Tarxeta Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uso: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nome do mdulo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Tamao"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creacin do disquete de arrinque"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "defecto"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Erro do DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versin do ncleo"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Xeral"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "rea de experto"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "argumentos opcionais para o mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Engadir un mdulo"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forzar"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "se for necesario"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omitir os mdulos scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omitir os mdulos raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Quitar un mdulo"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Sada"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crear o disco"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s non atopado"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "feito"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formatar disquete"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparando a instalacin"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "restrinxir"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "restrinxir"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9522,123 +10387,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatar particins"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Desinstalando os RPMs"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuracin da LAN"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Punto de montaxe"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Elixa as particins que desexa formatar"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Office"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Abortar"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Impresora"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalar sistema"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Seleccione un ficheiro"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Impresora remota"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Mensaxe inicial"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Non hai ningn adaptador de rede no seu sistema!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalar"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Non hai ningn adaptador de rede no seu sistema!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Sar da instalacin"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Comparticin da conexin Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "A comparticin da conexin Internet est activada"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9650,31 +10514,31 @@ msgstr ""
"\n"
"Que desexa facer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Desactivando os servidores..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "A comparticin da conexin Internet est agora desactivada."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "A comparticin da conexin Internet est desactivada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9686,19 +10550,19 @@ msgstr ""
"\n"
"Que desexa facer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activando os servidores..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "A comparticin da conexin Internet est agora activada."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9714,21 +10578,21 @@ msgstr ""
"Nota: necesita un adaptador de rede dedicado para configurar unha rede de "
"rea local (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (usando o mdulo %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Non hai ningn adaptador de rede no seu sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9736,11 +10600,11 @@ msgstr ""
"Non se detectou ningn adaptador de rede ethernet no seu sistema. Execute a "
"ferramenta de configuracin de hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interface de rede"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9755,19 +10619,19 @@ msgstr ""
"\n"
"Vaise configurar a rede de rea local usando ese adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Escolla o adaptador de rede que vai estar conectado rede de rea local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "O monitor non est configurado"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9777,17 +10641,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuracin do estilo de arrinque"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuracin de Internet"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9798,7 +10662,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9810,35 +10674,35 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP do servidor CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Atopouse un conflicto potencial de enderezos da LAN na configuracin actual "
"de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Detectouse unha configuracin de firewall!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9846,21 +10710,21 @@ msgstr ""
"Atencin! Detectouse unha configuracin de firewall existente. Pode que "
"tea que facer algn arranxo manual trala instalacin."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando os scripts, instalando o software, iniciando os servidores..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas instalando o paquete %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -9870,7 +10734,7 @@ msgstr ""
"Agora pode compartir a conexin Internet con outros ordenadores da rede de "
"rea local, usando a configuracin automtica de rede (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -9879,23 +10743,23 @@ msgstr ""
"\n"
"Que desexa facer?"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"A configuracin da comparticin da conexin Internet xa foi feita.\n"
"Actualmente est activada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "A comparticin da conexin Internet est activada"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Conexin e configuracin de Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9905,210 +10769,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuracin de rede (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil para borrar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nome de mquina: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acceso Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar o acceso Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuracin da LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Controlador"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Estado"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar a rede de rea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Axudante..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor, agarde... Aplicando a configuracin"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-#, fuzzy
-msgid "Disconnect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuracin da LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de arrinque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado o arrincar"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Activar"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Activar"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuracin da conexin Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuracin da conexin Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexin: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parmetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarela"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Tarxeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Establecendo o nivel de seguridade"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centro de control"
@@ -10117,94 +10777,130 @@ msgstr "Centro de control"
msgid "Choose the tool you want to use"
msgstr "Elixa a ferramenta que queira usar"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadiano (Qubec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francia"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islands"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Houbo un erro instalar os paquetes:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10249,7 +10945,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -10298,10 +10994,6 @@ msgstr "/_Opcins"
msgid "/Options/Test"
msgstr "/Opcins/Proba"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/A_xuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Axuda/_Acerca..."
@@ -10366,7 +11058,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10375,80 +11067,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuracin da LAN"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nome de dominio"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "dispositivo"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de impresin"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interesante"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatando"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuracin"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Gardar como..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "non se atopou ningn serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emular o terceiro botn?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Lendo a base de datos de controladores de CUPS..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detectando os dispositivos..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10492,6 +11215,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10840,10 +11575,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - Son"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilidades"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentacin"
@@ -10949,10 +11680,6 @@ msgstr ""
"e para navegar na Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arquivado, emuladores, monitorizaxe"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzas persoais"
@@ -11001,1241 +11728,153 @@ msgstr "Multimedia - Gravacin de CD"
msgid "Scientific Workstation"
msgstr "Estacin de traballo cientfica"
-#~ msgid "None"
-#~ msgstr "Ningn"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Agora pode indicar as opcins para o mdulo %s."
-
-#~ msgid "Low"
-#~ msgstr "Baixo"
-
-#~ msgid "Medium"
-#~ msgstr "Medio"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poucas melloras neste nivel de seguridade, a principal que hai mis\n"
-#~ "avisos e comprobacins de seguridade."
-
-#~ msgid "mount failed"
-#~ msgstr "mount fallou"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linux xestiona a hora en GMT ou \"Hora do Meridiano de Greenwich\", e a\n"
-#~ "traslada hora local dependendo da zona que vostede escolla."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Conectar Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconectar de Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configurar a conexin de rede (LAN ou Internet)"
-
-#~ msgid "Active"
-#~ msgstr "Activar"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Unha impresora, de modelo \"%s\", foi detectada en "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositivo de impresin local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositivo da impresora"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolla o tamao que quere instalar"
-
-#~ msgid "Total size: "
-#~ msgstr "Tamao total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Agarde, por favor, "
-
-#~ msgid "Total time "
-#~ msgstr "Tempo total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Usar a configuracin existente para X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "A que dispositivo est conectada a sa impresora?\n"
-#~ "(advirta que /dev/lp0 equivalente a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Atencin, o adaptador de rede xa est configurado. Vai ser reconfigurado."
-
-#~ msgid "New"
-#~ msgstr "Novo"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigidade (%s), sexa mis preciso\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (por omisin %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "A sa escolla? (por omisin %s, escriba 'none' para ningunha)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "non se pode abrir /etc/sysconfig/autologin para lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Desexa reiniciar a rede?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Concorda?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Est a piques de se reiniciar o dispositivo de rede:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Est a piques de se reiniciar o dispositivo de rede %s. Concorda?"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Escolla a lingua que prefira para a instalacin e para o sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ten que aceptar os termos da licencia de enriba para continuar coa "
-#~ "instalacin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Por favor, prema \"Aceptar\" se concorda con eses termos.\n"
-#~ "\n"
-#~ "\n"
-#~ "Por favor, prema \"Rexeitar\" se non concorda con eses termos. A "
-#~ "instalacin rematar sen modificar a sa configuracin actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolla a disposicin do teclado que corresponda seu na lista"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Se desexa ter outras linguas ( parte da que escolleu principio da\n"
-#~ "instalacin) dispoibles trala instalacin, escllaas na lista de "
-#~ "enriba.\n"
-#~ "Se quere seleccionar todas, s ten que usar \"Todas\"."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seleccione:\n"
-#~ "\n"
-#~ " - Personalizada: Se xa est familiarizado con GNU/Linux, pode entn "
-#~ "escoller\n"
-#~ " o uso principal da sa mquina. Mire embaixo para os detalles.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Experto: Isto supn que vostede manexa ben GNU/Linux e quere facer\n"
-#~ " unha instalacin altamente personalizada. Do mesmo xeito que coa\n"
-#~ " clase de instalacin \"Personalizada\", poder escoller o uso do seu\n"
-#~ " sistema. Pero, por favor, NON ESCOLLA ISTO A MENOS QUE SAIBA O QUE\n"
-#~ " EST A FACER!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Agora ten que definir o uso da sa mquina. As escollas son:\n"
-#~ "\n"
-#~ "* Estacin de traballo: esta a escolla ideal se pretende usar a sa "
-#~ "mquina principalmente para o uso cotin,\n"
-#~ " na oficina ou na casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolvemento: se pretende usar a sa mquina principalmente para o "
-#~ "desenvolvemento de software, esta unha boa escolla.\n"
-#~ " Ter unha completa coleccin de software instalado para compilar, "
-#~ "depurar e formatar cdigo fonte, ou\n"
-#~ " para crear paquetes de software.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: se pretende usar esta mquina coma servidor, a escolla "
-#~ "correcta. Sexa un servidor de ficheiros (NFS\n"
-#~ " ou SMB), un servidor de impresin (estilo Unix ou Microsoft Windows), "
-#~ "un servidor de autenticacin (NIS), un servidor\n"
-#~ " de bases de datos, etc... Como tal, non espere que haxa cousas como "
-#~ "KDE, GNOME, etc. instaladas."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Agora pode selecciona-lo grupo de paquetes que desexa instalar\n"
-#~ "ou actualizar.\n"
-#~ "\n"
-#~ "DrakX comprobar se ten espacio dabondo para instalalos todos. Se non,\n"
-#~ "avisaralle diso. Se quere seguir anda as, proceder coa instalacin\n"
-#~ "de tdolos grupos seleccionados, pero deixar algn de menor interese.\n"
-#~ " final da lista pode marca-la opcin \"Seleccin individual de paquetes"
-#~ "\";\n"
-#~ "neste caso ter que percorrer mis de 1000 paquetes..."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Se ten tdolos CDs da lista superior, prema Aceptar. Se non ten\n"
-#~ "ningn deses CDs, prema Cancelar. Se s faltan algns dos CDs,\n"
-#~ "desmrqueos, e prema Aceptar."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Acenda o seu mdem e escolla o correcto."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Vostede pode agora introduci-las opcins de chamada. Se non est seguro "
-#~ "de\n"
-#~ "que escribir, a informacin correcta pode obtela do seu ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Introduza:\n"
-#~ "\n"
-#~ " - Direccin IP: se non a coece, pregntelle seu administrador de "
-#~ "rede\n"
-#~ "ou ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mscara de Rede: \"255.255.255.0\" normalmente unha boa eleccin. "
-#~ "Se\n"
-#~ "non est seguro, pregunte seu administrador de rede ou ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP automtica: Se a sa rede usa o protocolo bootp ou dhcp, escolla\n"
-#~ "esta opcin. Neste caso, non necesario ningn valor en \"Direccin IP"
-#~ "\".\n"
-#~ "Se non est seguro, pregunte seu administrador de rede ou ISP.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Se a sa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregntelle "
-#~ "\n"
-#~ "seu administrador de rede."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Agora pode introducir as opcins de marcado. Se non est seguro do\n"
-#~ "que escribir, a informacin correcta pode obtela do seu ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Se vai usar proxys, configreos agora. Se non sabe se vai usar proxys,\n"
-#~ "pregunte seu administrador de rede ou seu ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Pode instalar paquetes de criptografa se xa configurou a sa conexin a\n"
-#~ "internet correctamente. Primeiro escolla un espello do que quere baixa-"
-#~ "los\n"
-#~ "paquetes, e entn escolla os paquetes que desexa instalar.\n"
-#~ "\n"
-#~ "Perctese de que ten que escolle-lo espello e os paquetes criptogrficos\n"
-#~ "de acordo coa sa lexislacin."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr ""
-#~ "Agora pode seleccionar a zona horaria dependendo do lugar onde viva."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Agora pode introduci-lo contrasinal do superusuario para o seu sistema\n"
-#~ "Mandrake Linux. O contrasinal deber ser tecleado das veces para\n"
-#~ "comprobar que mbolos dous son idnticos.\n"
-#~ "\n"
-#~ "\n"
-#~ "O superusuario (root) o administrador do sistema, e o nico usuario\n"
-#~ " que se lle permete modifica-la configuracin do sistema. Por tanto,\n"
-#~ "escolla o contrasinal con coidado! O uso non autorizado da conta de root\n"
-#~ "pode ser extremadamente perigoso para a integridade do sistema e os seus\n"
-#~ "datos, e para os outros sistemas conectados a el. O contrasinal debera\n"
-#~ "ser unha mestura de caracteres alfanumricos e de 8 caracteres de longo,\n"
-#~ "polo menos. NUNCA debe ser anotado. Non escolla un contrasinal longo\n"
-#~ "de mis ou complicado: ten que ser capaz de lembralo sen moito esforzo."
-
-# Non realmente fuzzy, s para revisala. :)
-#, fuzzy
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Pode agora crear unha ou varias contas de usuarios normais, como\n"
-#~ "contraposicin conta de usuario privilexiado, root. Vostede\n"
-#~ "pode crear unha ou mis contas para cada persoa que vostede queira\n"
-#~ "permitirlle o uso do ordenador. Note que cada conta de usuario ter\n"
-#~ "as sas preferencias (ambiente grfico, configuracin dos programas, "
-#~ "etc.)\n"
-#~ "e o seu propio directorio (chamado \"home\"), no que se almacenan esas\n"
-#~ "preferencias.\n"
-#~ "\n"
-#~ "\n"
-#~ "Antes que nada, cree unha conta para vostede mesmo! Anda se a nica\n"
-#~ "persoa que vai usa-la mquina, NON debe entrar como root para o uso\n"
-#~ "diario do sistema: un risco de seguridade elevado. Facer que o\n"
-#~ "sistema fique totalmente inoperante, pode ser moitas veces causa dun\n"
-#~ "simple erro teclear.\n"
-#~ "\n"
-#~ "\n"
-#~ "Polo tanto, debe entrar no sistema usando a conta de usuario normal que\n"
-#~ "vai crear aqu, e entrar como root s para as tarefas de administracin\n"
-#~ "que o precisen."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "As opcins principais do LILO e do grub son:\n"
-#~ " - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
-#~ "particin dun disco duro) que contn o sector de arrinque. A menos que\n"
-#~ "saiba especficamente que outro, escolla \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retardo antes de arrinca-la imaxe por omisin: Indica o nmero de\n"
-#~ "dcimas de segundo que agardar o cargador de inicio antes de arrincar a\n"
-#~ "primeira imaxe. Isto til nos sistemas que arrincan inmediatamente do\n"
-#~ "disco duro tras activa-lo teclado. O boot loader non agarda se o \"retardo"
-#~ "\"\n"
-#~ " cero ou non se indica.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Modo de vdeo: Indica o modo de texto VGA que ser utilizado \n"
-#~ "arrincar. Os seguintes valores estn dispoibles:\n"
-#~ " * normal: escoller modo de texto normal 80x25.\n"
-#~ " * <nmero>: usa-lo modo de texto correspondente."
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "LILO (O LInux LOader) e Grub son cargadores de arrinque: poden arrincar\n"
-#~ "Linux ou outro sistema operativo presente no seu ordenador.\n"
-#~ "Normalmente, estes outros sitemas son detectados correctamente e "
-#~ "instalados.\n"
-#~ "Se non o caso, pode engadir unha entrada a man nesta pantalla. Sexa\n"
-#~ "coidadoso na escolla dos parmetros correctos.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tamn pode non querer dar acceso a eses outros sitemas operativos a "
-#~ "calquera,\n"
-#~ "poidendo borrar as entradas correspondentes. Pero neste caso, precisar\n"
-#~ "un disquete de arrinque para poder usalos."
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "As opcins principais do LILO e do grub son:\n"
-#~ " - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
-#~ "particin dun disco duro) que contn o sector de arrinque. A menos que\n"
-#~ "saiba especficamente que outro, escolla \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retardo antes de arrinca-la imaxe por omisin: Indica o nmero de\n"
-#~ "dcimas de segundo que agardar o cargador de inicio antes de arrincar a\n"
-#~ "primeira imaxe. Isto til nos sistemas que arrincan inmediatamente do\n"
-#~ "disco duro tras activa-lo teclado. O boot loader non agarda se o \"retardo"
-#~ "\"\n"
-#~ " cero ou non se indica.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Modo de vdeo: Indica o modo de texto VGA que ser utilizado \n"
-#~ "arrincar. Os seguintes valores estn dispoibles:\n"
-#~ " * normal: escoller modo de texto normal 80x25.\n"
-#~ " * <nmero>: usa-lo modo de texto correspondente."
+#~ msgid "Choose options for server"
+#~ msgstr "Escolla as opcins para o servidor"
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Agora o momento de configura-lo sistema de fiestras X, que \n"
-#~ "o centro da interface grfica de Linux. Para iso necesita configura-\n"
-#~ "-la sa tarxeta de vdeo e o seu monitor. A maiora deses pasos estn\n"
-#~ "automatizados, as que probablemente a sa tarea limitarase a verificar\n"
-#~ "o que se fixo e aceptar a configuracin proposta :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Cando a configuracin estea rematada, lanzarase o servidor X\n"
-#~ "(a menos que vostede lle pida a DrakX que non), de xeito que\n"
-#~ "poida comprobar se todo est ben e corresponde que desexa.\n"
-#~ "Se non, pode voltar atrs e troca-la configuracin; tantas\n"
-#~ "veces como sexa necesario."
+#~ msgid "Monitor not configured"
+#~ msgstr "O monitor non est configurado"
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Se algo vai mal coa configuracin de X, use estas opcins para "
-#~ "configurar\n"
-#~ "correctamente o sistema X Window."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "A tarxeta grfica anda non est configurada"
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Se prefire usar un login grfico, escolla \"Si\". Doutro xeito,\n"
-#~ "seleccione \"Non\"."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resolucins anda non escollidas"
#~ msgid ""
-#~ "Your system is going to reboot.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "O sistema vaise reiniciar.\n"
#~ "\n"
-#~ "Despois de reiniciar, o seu novo sistema Mandrake Linux cargarase\n"
-#~ "automaticamente. Se vostede quere iniciar outro sistema operativo que xa\n"
-#~ "exista, lea as instruccins adicionais."
+#~ "probe a cambiar algns parmetros"
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Checo (Programadores)"
+#~ msgid "An error occurred:"
+#~ msgstr "Ocorreu un erro:"
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovaco (Programadores)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Sando en %d segundos"
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nome do perfil para crear:"
+#~ msgid "Is this the correct setting?"
+#~ msgstr " esta a configuracin correcta?"
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escribir /etc/fstab"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ocorreu un erro, probe a cambiar algns parmetros"
-#~ msgid "Format all"
-#~ msgstr "Formatar todas"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor XFree86: %s"
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Logo de formatar tdalas particins,"
+#~ msgid "Show all"
+#~ msgstr "Ver todo"
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "perderanse os datos nesas particins"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparando a configuracin de X-Window"
-#~ msgid "Reload"
-#~ msgstr "Recargar"
+#~ msgid "What do you want to do?"
+#~ msgstr "Qu desexa facer?"
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Quere realmente xerar un disquete de instalacin para replicar linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuracin de ADSL"
+#~ msgid "Change Monitor"
+#~ msgstr "Mudar o monitor"
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Cun servidor CUPS remoto, non ter que configurar aqu\n"
-#~ "ningunha impresora, xa que sern detectadas automaticamente,\n"
-#~ "a menos que tea un servidor nunha rede diferente. Neste\n"
-#~ "caso, ter que indicar o enderezo IP do servidor de CUPS\n"
-#~ "e opcionalmente o nmero de porto."
+#~ msgid "Change Graphics card"
+#~ msgstr "Mudar a tarxeta grfica"
-#~ msgid "Remote queue"
-#~ msgstr "Fila de impresin remota"
+#~ msgid "Change Server options"
+#~ msgstr "Mudar as opcins do servidor"
-#~ msgid "Profile "
-#~ msgstr "Perfil "
+#~ msgid "Change Resolution"
+#~ msgstr "Mudar a resolucin"
-#~ msgid "NetWare"
-#~ msgstr "Impresora Netware"
+#~ msgid "Show information"
+#~ msgstr "Mostrar informacin"
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Non foi posible interpretar o contido do ficheiro de configuracin."
+#~ msgid "Test again"
+#~ msgstr "Probar de novo"
-#~ msgid "Unrecognized config file"
-#~ msgstr "Ficheiro de configuracin non recoecido"
+#~ msgid "Setting security level"
+#~ msgstr "Establecendo o nivel de seguridade"
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
+#~ msgid "Graphics card"
+#~ msgstr "Tarxeta grfica"
-#~ msgid "Disable network"
-#~ msgstr "Desactivar a rede"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Conexin DSL (ou ADSL)"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Pode especificar directamente o URI para acceder impresora co CUPS."
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccione unha tarxeta grfica"
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Si, imprimir unha pxina ASCII de proba"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Aviso: probar esta tarxeta grfica pode colgar o ordenador"
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Si, imprimir unha pxina PostScript de proba"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estndar, 640x480 a 60 Hz"
-#~ msgid "Paper Size"
-#~ msgstr "Tamao do papel"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 56 Hz"
-#~ msgid "Eject page after job?"
-#~ msgstr "Extraer a pxina trala impresin?"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (no 800x600)"
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcins do controlador Uniprint"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-#~ msgid "Color depth options"
-#~ msgstr "Opcins da profundidade de cor"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA estendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Imprimir texto como PostScript?"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA non-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Corrixir o efecto escaleira?"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nmero de pxinas por pxina de sada"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 60 Hz"
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marxes dereita/esquerda en puntos (1/72 dunha polgada)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 74 Hz"
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marxes superior/inferior en puntos (1/72 dunha polgada)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 76 Hz"
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Opcins extra do Ghostscript"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor soportando 1600x1200 a 70 Hz"
-#~ msgid "Extra Text options"
-#~ msgstr "Opcins extra para texto"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverter a orde das pxinas"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccionar a conexin impresora remota"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Cada impresora necesita un nome (por exemplo lp).\n"
-#~ "Pdense definir outros parmetros como a descricin da\n"
-#~ "impresora ou a sa localizacin. Que nome quere usar para\n"
-#~ "esta impresora e como est conectada?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Cada fila de impresin ( que se dirixen os traballos de impresin)\n"
-#~ "necesita un nome (frecuentemente lp) e un directorio spool asociado\n"
-#~ "a el. Qu nome e directorio quere que se utilicen para esta fila e como\n"
-#~ "est conectada a impresora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nome da fila"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directorio spool"
-
-#~ msgid "Disable"
-#~ msgstr "Desactivar"
-
-#~ msgid "Enable"
-#~ msgstr "Activar"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Para ter un sistema mis seguro, debera seleccionar \"Usar ficheiro "
-#~ "shadow\"\n"
-#~ "e \"Usar contrasinais MD5\"."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor soportando 1600x1200 a 76 Hz"
#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "Se a sa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregntelle "
-#~ "\n"
-#~ "seu administrador de rede."
+#~ "O tamao total dos grupos que seleccionou aproximadamente %d MB.\n"
-#~ msgid "yellow pages"
-#~ msgstr "pxinas amarelas (yp)"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Dns 1 do provedor"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Dns 2 do provedor"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Como quere conectar Internet?"
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuracin do estilo de arrinque"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#, fuzzy
#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Vostede pode agora escoller algunhas opcins diversas para o sistema.\n"
-#~ "\n"
-#~ " - Usar optimizacins de disco duro: esta opcin pode mellora-lo "
-#~ "rendemento\n"
-#~ " do disco duro, pero s para usuarios avanzados: algns chipsets que "
-#~ "non\n"
-#~ " funcionan ben poden estraga-los seus datos. O kernel ten unha lista "
-#~ "negra\n"
-#~ " de unidades e chipsets, pero se quere evitar sorpresas "
-#~ "desagradables,\n"
-#~ " deixe esta opcin desactivada.\n"
-#~ "\n"
-#~ " - Escoller un nivel de seguridade: pode escoller un nivel de "
-#~ "seguridade\n"
-#~ " para o seu sistema. Vaia manual para informacin completa. "
-#~ "Basicamente:\n"
-#~ " se non sabe cal, escolla \"Medio\"; se quere realmente ter unha "
-#~ "mquina\n"
-#~ " segura, escolla \"Paranoico\", pero tea coidado: NESTE NIVEL, ROOT "
-#~ "NON\n"
-#~ " PODE FACER LOGIN NA CONSOLA! Se quere ser root, ter que facer login "
-#~ "como\n"
-#~ " usuario e entn usar \"su\". Mis xeralmente, non agarde usa-la sa\n"
-#~ " mquina para outra cousa que non sexa un servidor. Xa foi avisado.\n"
+#~ "Se quere instalar menos deste tamao,\n"
+#~ "seleccione a porcentaxe de paquetes que desexe.\n"
#~ "\n"
-#~ " - Tamao exacto da memoria se se necesita: por desgracia, no mundo "
-#~ "actual\n"
-#~ " de PCs, non hai un mtodo estndar para preguntarlle BIOS acerca "
-#~ "da\n"
-#~ " cantidade de RAM no seu ordenador. Por iso, Linux pode non ser capaz "
-#~ "de\n"
-#~ " detectar correctamente a cantidade de RAM. Se o caso, indique a\n"
-#~ " cantidade correcta. Nota: unha diferencia de 2 ou 4 MB normal.\n"
-#~ "\n"
-#~ " - Automonta-las unidades extrables: Se vostede prefere non montar\n"
-#~ " manualmente as unidades extrables (CD-ROM, disquete, Zip), "
-#~ "escribindo\n"
-#~ " \"mount\" e \"umount\", escolla esta opcin.\n"
-#~ "\n"
-#~ " - Activar Bloq Num iniciar: Se quere que Bloq Num estea activado\n"
-#~ " tralo arrinque, escolla esta opcin (Nota: Bloq Num pode ou non pode\n"
-#~ " funcionar nas X)."
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Varios"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependencias automticas"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Tamao seleccionado %d%s"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Preguntas varias"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Non se pode usar o supermount no nivel de seguridade alto"
-
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "atencin: NESTE NIVEL DE SEGURIDADE, A AUTENTICACIN DO ROOT NA CONSOLA\n"
-#~ "NON EST PERMITIDA! Se quere ser root, ter que conectar coma\n"
-#~ "usuario e logo usar o \"su\". De xeito mis xeral, non agarde que a\n"
-#~ "mquina acte doutro modo distinto a un servidor.\n"
-#~ "Xa foi avisado."
+#~ "Unha porcentaxe baixa instalar s os paquetes mis importantes;\n"
+#~ "unha porcentaxe dun 100%% instalar tdolos paquetes seleccionados."
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Tea coidado, ter o bloqueo numrico activado causa que moitas teclas\n"
-#~ "dean dxitos en vez de letras normais (p.ex: premer `p' d un `6')"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Desculpe, a configuracin do correo anda non est implementada. Sexa "
-#~ "paciente."
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Benvido axudante da configuracin de rede.\n"
-#~ "Que compoentes desexa configurar?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Acceso a Internet/Rede"
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Agora que a conexin Internet est configurada,\n"
-#~ "o seu ordenador pode ser configurado para compartila.\n"
-#~ "Nota: Necesita un adaptador de rede dedicado para configurar unha rede de "
-#~ "rea local (LAN).\n"
+#~ "Ten espacio no seu disco para unicamente o %d%% destes paquetes.\n"
#~ "\n"
-#~ "Desexa configurar a comparticin da conexin Internet?\n"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr ""
-#~ "Este script de inicializacin tenta cargar os mdulos para o rato usb."
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configuracin do LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Creacin dun disquete de arrinque"
-
-#~ msgid "Choice"
-#~ msgstr "Escolla"
-
-#~ msgid "Actions"
-#~ msgstr "Accins"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Aplicacins cientficas"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Ficheiro/Impresin/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "DNS/DHCP "
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Que cargador(es) de arrinque quere usar?"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Zona horaria"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Disquete de auto-instalacin"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Usar diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Personalizada"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Est seguro de que un experto? \n"
-#~ "Permitirselle facer cousas mis potentes pero perigosas.\n"
-#~ "Vnselle preguntar cuestins como: ``Usar ficheiro shadow para os "
-#~ "contrasinais?'', est preparado para responder a este tipo de cuestins?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Cal o uso do seu sistema?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Escolla o tamao que quere instalar"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Usar ficheiro shadow"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Usar contrasinais MD5"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(pode provocar corrupcin dos datos)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Activar Bloq Num iniciar"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Confirmar Contrasinal"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Atopouse unha tarxeta RDSI:\n"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Desexa que se tente atopar un mdem?"
-
-#~ msgid "Other countries"
-#~ msgstr "Outros pases"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "En que pas se atopa vostede?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Mdem alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "Mdem ECI"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr "Se o seu mdem adsl Alcatel, escolla Alcatel. Doutro xeito, ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "non usar pppoe"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Desactivar a Conexin a Internet"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Configurar a conexin a Internet / Configurar a Rede local"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "A rede local xa foi configurada.\n"
-#~ "Desexa:"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (importante)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (moi bo)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (bo)"
-
-#~ msgid "using module"
-#~ msgstr "usando un mdulo"
-
-#~ msgid "Search"
-#~ msgstr "Buscar"
-
-#~ msgid "Package"
-#~ msgstr "Paquete"
-
-#~ msgid "Tree"
-#~ msgstr "rbore"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordenar por"
-
-#~ msgid "Category"
-#~ msgstr "Categora"
-
-#~ msgid "Installed packages"
-#~ msgstr "Paquetes instalados"
-
-#~ msgid "Available packages"
-#~ msgstr "Paquetes dispoibles"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Amosar s as plas"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandir todos"
-
-#~ msgid "Collapse all"
-#~ msgstr "Pechar todos"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Engadir localizacin dos paquetes"
-
-#~ msgid "Update location"
-#~ msgstr "Actualizar lugar"
-
-#~ msgid "Configuration: Add Location"
-#~ msgstr "Configuracin: Engadir Lugar"
-
-#~ msgid "Find Package"
-#~ msgstr "Buscar Paquete"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Buscar paquete que contea un ficheiro"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Trocar entre Instalado e Dispoible"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Comprobando dependencias"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Os seguintes paquetes van ser desinstalados"
-
-#~ msgid "Regexp"
-#~ msgstr "Expr.Reg"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Que paquetes buscar"
-
-#~ msgid "No match"
-#~ msgstr "Sen coincidencias"
-
-#~ msgid "No more match"
-#~ msgstr "Non hai mis coincidencias"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake est en modo ``baixa memoria''.\n"
-#~ "Vaise reiniciar rpmdrake para permitir a busca de ficheiros"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Que ficheiro est a buscar?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Que est a buscar?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Dea un nome (ex: `extra', `commercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directorio"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Non hai cdrom dispoible (nada en /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL do directorio que contn os RPMs"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Para FTP e HTTP, ten que indicar o lugar de hdlist\n"
-#~ "Ten que ser relativo URL anterior"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Por favor, enve a seguinte informacin"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s xa est en uso"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Actualizando a base de RPMs"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Vaise borra-la entrada %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Buscando as plas"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "A busca das plas leva un tempo"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Manipulacin de Grficos"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, bibliotecas, ferramentas"
-
-#~ msgid "Development applications"
-#~ msgstr "Aplicacins de desenvolvemento"
-
-#~ msgid "Sciences"
-#~ msgstr "Ciencias"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Programas de Chat (IRC ou mensaxera instantnea) como o xchat, licq, "
-#~ "gaim e ferramentas de transferencia de ficheiros"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Facilidades de Comunicacin"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Development other"
-#~ msgstr "Outros de desenvolvemento"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Clientes e servidores de Bases de Datos (mysql e postgresql)"
+#~ "Se desexa instalar menos ca isto,\n"
+#~ "seleccione a porcentaxe de paquetes que quere instalar.\n"
+#~ "Unha porcentaxe baixa instalar s os paquetes mis importantes;\n"
+#~ "unha porcentaxe de %d%% instalar tdolos paquetes posibles."
-#~ msgid "Development C/C++"
-#~ msgstr "Desenvolvemento en C/C++"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Vostede poder escollelos mis especificamente na seguinte etapa."
-#~ msgid "Czech"
-#~ msgstr "Checo"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Porcentaxe de paquetes a instalar"
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "A qu porto serie est conectado o rato?"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Escola o nivel de seguridade"
diff --git a/perl-install/share/po/help-fr.pot b/perl-install/share/po/help-fr.pot
index ee17d2e5b..36b1dc8a1 100644
--- a/perl-install/share/po/help-fr.pot
+++ b/perl-install/share/po/help-fr.pot
@@ -2,29 +2,6 @@
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) and GRUB are boot loaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -254,17 +231,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Choose the hard drive you want to erase to install your new Mandrake Linux\n"
-"partition. Be careful, all data present on it will be lost and will not be\n"
-"recoverable!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
@@ -341,72 +307,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful as\n"
-"to choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message that is displayed before the boot\n"
-"prompt.\n"
-"\n"
-" * Boot Device: indicate where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
-"hold this information.\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux.\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected.\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
-"at the first boot prompt.\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose \"N\" for\n"
-"Open Firmware at the first boot prompt.\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
@@ -431,15 +331,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under GNU/Linux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
"your installed hardware, you may - or not, see the following entries:\n"
"\n"
@@ -703,69 +594,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"More than one Microsoft Windows partition has been detected on your hard\n"
-"drive. Please choose the one you want resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"The first time you try the X configuration, you may not be very satisfied\n"
"with its display (screen is too small, shifted left or right...). Hence,\n"
"even if X starts up correctly, DrakX then asks you if the configuration\n"
@@ -1013,13 +841,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Please be patient. This operation can take several minutes."
-msgstr ""
-"Please be patient. This operation can take several minutes."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
@@ -1148,88 +969,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installs. If you make any changes, you must at least define a root\n"
-"partition (/). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for /home\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Click on OK if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on OK, you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on Cancel to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
@@ -1433,21 +1172,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose First sector of drive\n"
-"(MBR)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
@@ -1568,230 +1292,3 @@ msgstr ""
"site du fabricant (si vous avez un accs Internet) ou partir des menus\n"
"de Microsoft Windows (si vous utilisiez ce peripherique avec Windows)."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OS's, the entry consists only of a label and the root partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option.\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension.\n"
-"\n"
-" * Root: the root device or \"/\" for your Linux installation.\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" \n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation.\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used.\n"
-"\n"
-" * Read-write: normally the root partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes \"live\".\n"
-"Here, you can override this option.\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in \"novideo\" mode, with\n"
-"native frame buffer support.\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a \"*\", if you press [Tab] to see the boot\n"
-"selections."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
-"users to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
-"your hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on\n"
-"partitions (type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
-"\n"
-" * Ctrl-d to delete a partition;\n"
-"\n"
-" * Ctrl-m to set the mount point.\n"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"At this point, you need to choose what partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have been already\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second, \"sda\" for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * Clear all: this option deletes all partitions on the selected hard\n"
-"drive.\n"
-"\n"
-" * Auto allocate: this option allows you to automatically create Ext2\n"
-"and swap partitions in free space of your hard drive.\n"
-"\n"
-" * Rescue partition table: if your partition table is damaged, you can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail.\n"
-"\n"
-" * Undo: use this option to cancel your changes.\n"
-"\n"
-" * Reload: you can use this option if you wish to undo all changes and\n"
-"load your initial partitions table.\n"
-"\n"
-" * Assistant: use this option if you wish to use a assistant to\n"
-"partition your hard drive. This is recommended if you do not have a good\n"
-"knowledge of partitioning.\n"
-"\n"
-" * Restore from floppy: this option will allow you to restore a\n"
-"previously saved partition table from floppy disk.\n"
-"\n"
-" * Save to floppy: saves the partition table to a floppy. Useful for\n"
-"later partition-table recovery if necessary. It is strongly recommended to\n"
-"perform this step.\n"
-"\n"
-" * Done: when you have finished partitioning your hard drive, this will\n"
-"save your changes back to disc.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
-"\n"
-" * Ctrl-d to delete a partition;\n"
-"\n"
-" * Ctrl-m to set the mount point.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"\"bootstrap\" partition of at least 1MB which will be used by the yaboot\n"
-"boot loader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-
diff --git a/perl-install/share/po/help-it.pot b/perl-install/share/po/help-it.pot
index 6fd5a0be5..10039201e 100644
--- a/perl-install/share/po/help-it.pot
+++ b/perl-install/share/po/help-it.pot
@@ -346,72 +346,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful as\n"
-"to choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message that is displayed before the boot\n"
-"prompt.\n"
-"\n"
-" * Boot Device: indicate where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
-"hold this information.\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux.\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected.\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
-"at the first boot prompt.\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose \"N\" for\n"
-"Open Firmware at the first boot prompt.\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
@@ -1682,100 +1616,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OS's, the entry consists only of a label and the root partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option.\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension.\n"
-"\n"
-" * Root: the \"root\" device or \"/\" for your Linux installation.\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation.\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used.\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes \"live\".\n"
-"Here, you can override this option.\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in \"novideo\" mode, with\n"
-"native frame buffer support.\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a \"*\", if you press [Tab] to see the boot\n"
-"selections."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or from another\n"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 20347847b..655bd0053 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -1,12 +1,13 @@
# KTranslator Generated File
# Copyright (c) 1999 MandrakeSoft
# Vladimir Vuksan <vuksan@veus.hr>, 1999.
-# Vlatko Kosturjak <kost@iname.com>, 2001.
+# Vlatko Kosturjak <kost@iname.com>, 2001, 2002.
+# Dejan Dakic <ddakic@foi.hr>, 2002.
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 06:59CET\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-03-22 05:58CET\n"
"Last-Translator: Vlatko Kosturjak <kost@iname.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
"MIME-Version: 1.0\n"
@@ -14,24 +15,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Podesi sve zaslone nezavisno"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama proirenje"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Podesi samo karticu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ili vie"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Odaberite X posluitelj"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X posluitelj"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Vie-zaslonska postava"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,41 +71,44 @@ msgstr ""
"Va sustav podrava postavu sa vie zaslona.\n"
"to elite napraviti?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafika kartica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Odaberite koliinu memorije na grafikoj kartici"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Odaberite grafiku karticu"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree postavke"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Odaberite X posluitelj"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Koju konfiguraciju XFree-a elite imati?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X posluitelj"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Podesi sve zaslone nezavisno"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Odaberite X upravljaki program"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Koristi Xinerama proirenje"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X upravljaki program"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Podesi samo karticu \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree-a elite imati?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s sa 3D hardware akceleracijom"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,33 +117,17 @@ msgstr ""
"Vaa video kartica moe imati 3D ubrzanje samo sa XFree %s.\n"
"Vaa kartica je podrana od XFree %s koji moda ima bolju podrku u 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaa kartica moe imati 3D hardware-sku akceleraciju sa XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardware akceleracijom"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Vaa kartica moe imati 3D hadware akceleraciju podranu od XFree %s,\n"
-"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRKA I MOE ZAMRZNUTI VAE "
-"RAUNALO."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EXPERIMENTALNOM 3D hardware akceleracijom"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -120,31 +139,59 @@ msgstr ""
"RAUNALO.Vaa kartica je podrana od XFree %s koja moe imati bolju podrku "
"u 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Vaa kartica moe imati 3D hadware akceleraciju podranu od XFree %s,\n"
+"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRKA I MOE ZAMRZNUTI VAE "
+"RAUNALO."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalacijski zaslonski upravljaki program)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree postavke"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Odaberite koliinu memorije na grafikoj kartici"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Postavke posluitelja"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zadri promjene?\n"
+"Trenutna postava je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Odaberite monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Prilagoeno"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generiki"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Vrati"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,512 +215,327 @@ msgstr ""
"vei od mogunosti vaeg monitora jer moete otetiti va monitor.\n"
" Ukoliko ste u nedoumici, izaberite konzervativne postavke."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontalna vrijednost osvjeavanja"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikalna vrijednost osvjeavanja"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Niste podesili monitor"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Niste podesili grafiku karticu"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Niste podesili rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Da li elite iskuati postavu ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje grafike kartice moe zamrzunti vae raunalo"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Iskuaj postavu"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 boja (8 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"provjerite parametre koje ste unjeli"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisua boja (15 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Pojavila se greka:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisua boja (16 bita)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Zatvaram nakon %d sekundi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milijuna boja (24 bita)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravno?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Pojavila se greka, provjerite parametre koje ste unjeli"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolucije"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Odaberite rezoluciju i color depth"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafika kartica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 posluitelj: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Vie"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Odustani"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "U redu"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Pokai sve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Da li elite iskuati postavu ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Iskuaj postavu"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tipkovnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Vrsta mia: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ureaj mia: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontalna Sinkronizacija Monitora: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikalno Osvjeenje Monitora: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafika kartica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafike kartice: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafika memorija: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boje: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 posluitelj: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 upravljaki program: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window postavu"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "to elite napraviti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Promijeni monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Promijeni grafiku karticu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Promijeni postavke posluitelja"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Promijeni rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Prikai informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Iskuaj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Zavri"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zadri promjene?\n"
-"Trenutna postava je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X kod pokretanja sustava"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mogu podesiti da se X podigne automatski kod podizanja sustava.\n"
"Da li elite da se X automatski pokree?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisua boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisua boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milijuna boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili vie"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardni VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibilan, 1024x768 na 87 Hz s preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz s preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Proireni Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Bez preplitanja SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Visoko frekvencijski SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji ide do 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji ide do 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor pogona (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Gdje elite instalirati bootloader?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO sa grafikim menijem"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Podizanje sa DOS/Windows-a (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Glavne postavke bootloadera"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Koristiti Bootloader"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot ureaj"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Zbijeno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "zbijeno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobiajenog imagea"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Lozinka"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Lozinka (provjera)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ograniene opcije na komandnoj liniji"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ogranii"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Oisti /tmp na svakom podizanju"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veliina RAMa (pronaeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Omogui vie obrazaca"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Upiite veliinu RAM u Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Postavka ``Ograniene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
"lozinku"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Molim pokuajte ponovo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init poruka"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Pauza Otvorenog Firmware-a"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Vrijeme ekanja podizanja kernela"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Omogui CD podizanje?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Omogui podizanje?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Uobiajeni OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -687,83 +549,83 @@ msgstr ""
"\n"
"Sa kojeg diska elite podizati?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ovo su trenutni zapisi.\n"
"Moete dodati jo koji ili urediti postojei."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gotov"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Promjeni"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa elite dodati"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Drugi OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Drugi OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Drugi OS (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Slika (image)"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Dodaj na kraj"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "itaj-pii"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tablica"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Oznaka"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Uobiajeno"
@@ -795,53 +657,77 @@ msgstr "Morate odrediti root particiju"
msgid "This label is already used"
msgstr "Ova oznaka ve postoji"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronaao sam %s %s meusklopova"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Da li imate jo koji?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Da li imate %s meusklopova?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Pokai info o hardveru"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram upravljaki program %s za karticu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Sada moete unijeti opcije za modul %s.\n"
+"Primjetite da svaka adresa treba biti uneena sa prefiksom 0x kao '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sada moete unijeti postavke za modul %s.\n"
+"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Postavke modula:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s upravljaki program elite isprobati?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -860,39 +746,15 @@ msgstr ""
"raunalo za informacije koje treba? Ponekad, isprobavanje moe zamrznuti\n"
"vae raunlo, ali ne bi trebalo izazvati nikakvu tetu."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Auto. ispitaj"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Odredi postavke"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sada moete unijeti opcije za modul %s.\n"
-"Primjetite da svaka adresa treba biti uneena sa prefiksom 0x kao '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada moete unijeti postavke za modul %s.\n"
-"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Postavke modula:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -901,49 +763,54 @@ msgstr ""
"Uitavanje modula %s nije uspjelo.\n"
"Da li elite pokuati ponovo sa drugim parametrima?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ve postoji %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Lozinka je prejednostavna"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisniko ime"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisniko ime moe sadravati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ovaj korisnik ve postoji"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ovaj korisnik ve postoji"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -952,32 +819,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Puno ime"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Korisniko ime"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Ljuska"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Auto-prijava"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -985,56 +852,56 @@ msgstr ""
"Mogu podesiti da se vae raunalo automatski prijavi kao jedan korisnik.\n"
"Da li elite koristiti tu pogodnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Izaberite uobiajenog korisnika:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji elite pokrenuti:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Molim izaberite jezik koji elite koristiti."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Moete izabrati druge jezike koji e biti dostupni nakon instalacije"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Sve"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Prilagoeno"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba instalirati. Da li ga elite instalirati?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Moete izvesti koristei NFS ili Sambu. Koji od njih elite"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nuni paket %s nedostaje"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1048,31 +915,11 @@ msgstr ""
"\n"
"\"Proizvoljno\" e omoguiti dozvoljavanje po korisniku.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1080,31 +927,31 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Moete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dobrodoli Crackeri"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardno"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Vii"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidan"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1115,7 +962,7 @@ msgstr ""
"ali vrlo osjetljiv: ne smije biti koriten za raunala koja su povezana u "
"mrei ili na Internet. Naime, nema lozinke za pristup."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +970,7 @@ msgstr ""
"Lozinke su sada ukljuene meutim jo ne preporuam koritenje ovog raunala "
"u mrenom okoliu."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,7 +978,7 @@ msgstr ""
"Ovo je standardna sigurnosna razina preporuena za raunala koja e biti "
"koritena za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1139,13 +986,14 @@ msgstr ""
"Ve postoje neka ogranienja i vie automatskih provjera se pokree svake "
"noi."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Sa ovom sigurnosnom razinom, koritenje ovog sustava kao posluitelj postaje "
"mogue.\n"
@@ -1153,39 +1001,39 @@ msgstr ""
"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vae raunalo "
"samo klijent na Internetu, bolje da izaberete niu razinu."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Temeljeno na prijanjoj razini, ali je sustav potpuno zatvoren.\n"
"Sigurnosne znaajke su na maksimumu."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite sigurnosni nivo"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sigurnosna razina"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za posluitelje"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja titi od prekoraenja spremnika i format string napada."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1208,52 +1056,52 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro dosli u GRUB izbornik operativnih sustava!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Za mijenjanje izabranog sustava pritisnite tipke %c i %c."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite ENTER za bootiranje izabranog OS, 'e' za promjenu"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "naredbe prije bootiranja ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljeni zapis biti e bootiran automatski za %d sekundi."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nema dovoljno mjesta u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Radna povrina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne moete instalirati bootloader na %s particiju\n"
@@ -1266,15 +1114,19 @@ msgstr "nema jo implementirane pomoi.\n"
msgid "Boot Style Configuration"
msgstr "Postava Stila Podizanja"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1309,14 +1161,14 @@ msgstr "Yaboot mod"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Trenutno koristite %s kao Upravitelj Boot-a.\n"
"Pritisnite na Podesi za pokretanje arobnjaka za postavljanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Podesi"
@@ -1326,7 +1178,7 @@ msgid "System mode"
msgstr "Sistemski mod"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sustav pri podizanju"
#: ../../bootlook.pm_.c:148
@@ -1337,14 +1189,16 @@ msgstr "Ne, ne elim automatsko prijavljivanje"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, elim automatsko prijavljivanje sa ovim korisnikom i okrujem"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "U redu"
@@ -1392,7 +1246,7 @@ msgstr "Ne mogu napraviti screenshotove prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi e biti raspoloivi poslije instalaciju u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
@@ -1400,7 +1254,7 @@ msgstr "Francuska"
msgid "Costa Rica"
msgstr "Kosta Rika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
@@ -1424,11 +1278,12 @@ msgstr "Norveka"
msgid "Sweden"
msgstr "vedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italija"
@@ -1436,7 +1291,7 @@ msgstr "Italija"
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Sjedinjene Amerike Drave"
@@ -1444,8 +1299,8 @@ msgstr "Sjedinjene Amerike Drave"
msgid "Please make a backup of your data first"
msgstr "Prvo napravite backup podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Proitajte paljivo!"
@@ -1459,11 +1314,12 @@ msgstr ""
"sektora) na\n"
"poetku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Greka"
@@ -1471,11 +1327,11 @@ msgstr "Greka"
msgid "Wizard"
msgstr "arobnjak"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Izaberite akciju"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1487,77 +1343,77 @@ msgstr ""
"Preporuam da promijenite veliinu particije\n"
"(kliknite prvo na particiju te onda na \"Promijeni veliinu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Molim kliknite na particiju"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalji"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ostali"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Vrste datotenih sustava:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Napravi"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Vrsta"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Umjesto toga koristi ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Obrii"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Prvo pritisnite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1565,67 +1421,72 @@ msgstr ""
"Nakon mijenjanja tipa particije %s svi podaci na ovoj particiji biti e "
"obrisani"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Izaberite particiju"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Izaberite drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normalno > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Vrati"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Da zavrim bez spremanja"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Da zavrim bez zapisivanje particijske tablice?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Da li elite spremiti /etc/fstab promjene?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Raspodijeli automatski"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Oisti sve"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Vie"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Hard disk informacije"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Sve primarne particije su iskoritene"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ne mogu dodati niti jednu dodatnu particiju"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1634,31 +1495,31 @@ msgstr ""
"bi\n"
"mogli stvoriti jednu extended particiju."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Spremi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Vrati particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Spasi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ponovno uitaj particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatsko montiranje prenosivog medija"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Odaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1666,11 +1527,11 @@ msgstr ""
"Backup particijske tablice nema istu veliinu\n"
"Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1678,122 +1539,129 @@ msgstr ""
"Umetnite disketu u pogon\n"
"Svi podaci na disketi biti e izbrisani"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokuavam spasiti particijsku tablicu"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Toka montiranja"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Promijeni veliinu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Premjesti"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Dodaj RAID-u"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Dodaj LVM-u"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ukloni sa RAID-a"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ukloni sa LVM-a"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Promijeni RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Stvori novu particiju"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Poetni sektor:"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Veliina u MB:"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Vrsta datotenog sustava:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Mjesto montiranja:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Postavke:"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mijenjam tip particije"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datoteni sustav elite?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Mijenjam iz ext2 u ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje elite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje elite montirati ureaj %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1802,128 +1670,133 @@ msgstr ""
"loop back.\n"
"Uklonite loopback prvo"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Izraunavam granice fat datotenog sustava"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veliinu"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ova particija nije promjenjiva u veliini"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Preporuam da prvo backupirate sve podatke s ove particije"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon mijenjanja veliine particije %s svi podaci na ovoj particiji biti e "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Odaberite novu veliinu"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nova veliina u MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk se elite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na koji se sektor elite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Premjetam"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Premjetam particiju..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojei RAID na koji elite dodati "
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojei LVM na koji elite dodati "
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM ime?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne moe koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Ime loopback datoteke:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dajte ime datoteke"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Datoteku koristi neki drugi loopback. Molim izaberite neku drugu datoteku"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Datoteka ve postoji. Da li da nju upotrijebim?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Razno"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "ureaj"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "razina"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "chunk veliina"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Kakav tip particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paket %s treba instalirati. Da li ga elite instalirati?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1935,7 +1808,7 @@ msgstr ""
"Imate dvije opcije ili ete koristiti LILO pa nee raditi ili neete\n"
"koristiti LILO pa vam /boot nee ni trebati."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1947,7 +1820,7 @@ msgstr ""
"Ukoliko planirate koristiti LILO boot menader, budite paljivi da dodate/"
"boot particiju"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1957,130 +1830,130 @@ msgstr ""
"Nema bootloader-a koji je u mogunosti to podrati bez /boot particije.\n"
"Zato budite paljivi da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Particijska tablica pogona %s e sada biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Trebate ponovo pokrenuti sustav prije nego promjene postanu aktivne"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s svi podaci na ovoj particiji biti e obrisani"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sakrij datoteku"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Premijesti datoteku na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktorij %s ve sadri neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Premijeteam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Ureaj:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ureaj slovo: %s (nagaanje)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Vrsta: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Poetak: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Veliina: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nije formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montiran\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2089,7 +1962,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2097,27 +1970,27 @@ msgstr ""
"Podrazumijevana boot particija\n"
" (za MS-DOS boot, ne za LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Razina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Chunk veliina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Ime loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2129,7 +2002,7 @@ msgstr ""
"ustvari particija upravljakog programa, vjerojatno\n"
"biste ju trebali ostaviti.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2141,64 +2014,64 @@ msgstr ""
"particija je za\n"
"dvostruko-podizanje (dual-boot) vaeg sustava.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Veliina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Vrsta particijske tabele: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "na sabirnici %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Klju enkriptiranja datotenog sustava"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Izaberite va klju za enkriptiranje datotenog sustava"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Upisani enkripcijski klju je prejednostavan (mora biti dug najmanje %d "
"znakova)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Enkripcijski kljuevi se ne slau"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Enkripcijski klju"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Enkripcijski klju (ponovno)"
@@ -2207,35 +2080,65 @@ msgid "Change type"
msgstr "Promijeni tip"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Molim kliknite na medij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Provjera autentinosti"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Korisniko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Korisniko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domena"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Posluitelji za pretraivanje"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne znam kako formatirati %s kao vrstu %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktorij %s neuspjeno"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck neuspjean sa izlaznim kodom %d ili signalom %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "greka kod demontiranja %s: %s"
@@ -2252,70 +2155,324 @@ msgstr "sa /usr"
msgid "server"
msgstr "posluitelj"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS se ne moe koristiti na particijama koje su manje od 16 MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS se ne moe koristiti na particijama koje su manje od 32 MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Mjesto montiranja mora poeti sa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ve postoji particija sa mjestom montiranja %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne moete koristiti LVM logiki prostor za mjesto montiranja %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij bi trebao ostati unutar root datotenog sustava"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Treba vam istinski datoteni sustav (ex2, reiserfs) za ovo mjesto "
"montiranja\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Ne moete koristiti enkriptirani datoteni sustav za toku montiranja %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno slobodnog prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nema nita za uraditi"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Greka prilikom otvaranja %s za pisanje: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Pojavila se greka - ne mogu pronai niti jedan valjani ureaj na kojem\n"
"bih mogao instalirati datoteni sustav. Provjerite da li je sa vaim "
"hardverom sve u redu."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemate niti jednu particiju!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto detekciju"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generiki"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Postavka optereenja"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promijeni tip"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Zavri"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomo"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomo"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomo/_O programu"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Mi"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Odustani"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Mi"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Opis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Provjera autentinosti"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Odaberite datoteku"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway ureaj"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 gumba"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Otkrivanje hard diskova"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Pokai info o hardveru"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Prikai informacije"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Podesi mi"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detektiran na portu %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Molim priekajte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundi"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Uklanjam pisa \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Auto. ispitaj"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2329,7 +2486,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2475,9 +2632,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2833,6 +2989,23 @@ msgid ""
"server, choose \"FBDev\". This is a failsafe option which works with any\n"
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
+"Kada prvi put isprobate X konfiguraciju, moda neete biti vrlo zadovoljni\n"
+"prikazom (premaleni ekran, pomaknut ulijevo ili udesno...). Stoga, i ako se\n"
+"Xi pokrenu normalno, DrakX e vas pitati da li vam postavke odgovaraju. "
+"Takoer\n"
+"e predloiti da ih promijenite izabiranjem jednog od ispravnih modova sa "
+"popisa\n"
+" pronaenih.\n"
+"\n"
+"Kao posljednju mjeru, ako jo uvijek niste uspjeli natjerati Xe da rade, "
+"izaberite\n"
+"\"Promijeni grafiku karticu\", opcija \"Nenavedena kartica\", i kada "
+"budete\n"
+"upitani za posluitelj, izaberite \"FBDev\". Ovo je sigurnosna opcija koja "
+"radi\n"
+"sa svakom suvremenom grafikom karticom. Potom izaberite \"Ponovno isprobaj"
+"\" da\n"
+"biste bili sigurni."
#: ../../help.pm_.c:249
msgid ""
@@ -2852,7 +3025,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2864,9 +3037,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2876,9 +3048,37 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
+"Mandrake Linux CD-ROM ima ugraeni mod za spaavanje. Moete mu pristupiti\n"
+"pokretanjem sustava sa CD-ROMa, pritiskanjem >>F1<< tipke pri podizanju "
+"sustava\n"
+"i upisivanjem >>rescue<< u komandnoj liniji. Ali ako se sustav ne moe "
+"podii\n"
+"sa CD-ROMa, trebali biste se vratiti ovom koraku za pomo u barem dvije "
+"situacije:\n"
+"\n"
+" * kada instalira bootloader, DrakX e prepisati boot sektor (MBR) vaeg\n"
+"primarnog diska (osim ako ve ne koristite neki drugi boot manager), da bi "
+"vam\n"
+"omoguio pokretanje ili Windowsa ili GNU/Linuxa (ako imate Windowse u "
+"raunalu).\n"
+"Ako trebate ponovno instalirati Windowse, Microsoftov proces instalacije e\n"
+"prepisati boot sektor, i neete moi pokrenuti GNU/Linux!\n"
+"\n"
+" * ako se pojavi problem i ne moete pokrenuti GNU/Linux sa tvrdog diska,\n"
+"ova disketa e biti jedini nain na koji moete pokrenuti GNU/Linux. Sadri\n"
+"dovoljan broj sustavskih alata za povrat sustava koji se sruio zbog "
+"nedostatka\n"
+"energije, nesretne greke pri tipkanju, pogreke pri upisivanju lozinke ili "
+"bilo\n"
+"kojeg drugog razloga.\n"
+"\n"
+"Kada kliknete na ovaj korak, pojavit e se zahtjev za ubacivanjem diskete u "
+"pogon.\n"
+"Disketa koju ubacujete mora biti prazna ili sadravati podatke koji vam "
+"nisu\n"
+"potrebni. Neete je morati formatirati, jer e je DrakX potpuno prepisati."
#: ../../help.pm_.c:280
-#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2913,21 +3113,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2943,80 +3142,82 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"U ovom trenutku, trebate izabrati gdje ete instalirati va\n"
-"Mandrake Linux operativni sustav na va hard disk. Ukoliko je prazan ili "
-"ako\n"
-"postojei operativni sustav koristi itav prostor na disku, trebate ga\n"
-"particionirati. Jednostavno, particioniranje hard diska sastoji se od "
-"logikog\n"
-"dijeljenja kako bi napravili prostor za instalaciju vaeg novog Mandrake "
-"Linux sustava.\n"
-"\n"
-"\n"
-"Zato to su posljedice procesa particioniranja obino ireverzibilne,\n"
+"Mandrake Linux operativni sustav na vaem tvrdom disku. Ukoliko je prazan "
+"ili \n"
+"ako postojei operativni sustav koristi itav prostor na disku, trebate ga\n"
+"particionirati. Jednostavno, particioniranje hard diska sastoji se od\n"
+"logikog dijeljenja kako bi napravili prostor za instalaciju vaeg novog\n"
+"Mandrake Linux sustava.\n"
+"\n"
+"Zato to su posljedice procesa particioniranja obino nepovratne,\n"
"particioniranje moe biti strano i stresno ukoliko ste korisnik bez "
"iskustva.\n"
-"Ovaj arobnjak pojednostavljuje proces. Prije poetka, molimo konzultirajte "
-"upute\n"
-"i uzmite vremena koliko vam je potrebno.\n"
-"\n"
+"Ovaj arobnjak pojednostavljuje proces. Prije poetka, molimo konzultirajte\n"
+"upute i uzmite vremena koliko vam je potrebno.\n"
"\n"
-"Trebate najmanje dvije particije. Jedna je za sam operativni sustav, a\n"
-"druga je za virtualnu memoriju (takoer zvanu Swap).\n"
+"Ako ste pokrenuli instalaciju u modu za strunjake, ui ete u DiskDrake,\n"
+"Mandrake Linuxov alat za particioniranje, s kojim moete fino podeavati\n"
+"particije. Pogledajte DiskDrake odjeljak u ``User Guide''.\n"
+"Iz suelja instalacije moete koristiti arobnjake koji su ovdje opisani\n"
+"pritiskom na \"arobnjak\" dugme.\n"
"\n"
+"Ako su particije ve odreene, od prijanje instalacije, ili nekog drugog\n"
+"alata za particioniranje, samo ih izaberite da bi instalirali va Linux "
+"sustav.\n"
"\n"
-"Ukoliko su particije ve definirane (iz prijanje instalacije iliiz\n"
-"drugih particijskih alata), trebate samo izbarati te particije za "
-"instalaciju vaeg\n"
-"Linux sustava.\n"
+"Ako particije nisu definirane, morate ih stvoriti koritenjem arobnjaka.\n"
+"Ovisno o vaem tvrdom disku, nekoliko opcija je dostupno:\n"
"\n"
+" * \"Koristi slobodni prostor\": ova opcija e jednostavno automatski\n"
+"particionirati vae prazne diskove. Neete biti vie nita priupitani;\n"
"\n"
-"Ukoliko particije nisu ve definirane, trebate ih napraviti. \n"
-"Da biste to napravili, koristite arobnjak gore raspoloiv. U zavisnosti od "
-"vaih hard disk\n"
-"postavki, nekoliko rjeenja je raspoloivo:\n"
-"\n"
-"* Koritenje postojee particije: arobnjak je detektirao jednu ili vie "
+" * \"Koritenje postojee particije\": arobnjak je detektirao jednu ili "
+"vie\n"
"postojeih Linux particija na vaem hard disku. Ukoliko\n"
-" ih elite zadrati, izaberite ovu opciju.\n"
-"\n"
+"ih elite zadrati, izaberite ovu opciju.\n"
"\n"
-"* Obrii cijeli disk: ukoliko elite obrisati sve podatke i sve particije "
+" * \"Obrii cijeli disk\": ukoliko elite obrisati sve podatke i sve "
+"particije\n"
"koje postoje na vaem hard disku i zamjeniti ih sa\n"
-" vaim novim Mandrake Linux sustavom, moete izabrati ovu opciju. Budite "
+"vaim novim Mandrake Linux sustavom, moete izabrati ovu opciju. Budite\n"
"paljivi sa ovim rjeenjem, neete moi\n"
-" povratiti va izbor nakon potvrde.\n"
-"\n"
+"povratiti va izbor nakon potvrde.\n"
"\n"
-"* Koristiti slobodan prostor na Windows particiji: ukoliko je Microsoft "
+" * \"Koristiti slobodan prostor na Windows particiji\": ukoliko je "
+"Microsoft\n"
"Windows instaliran na vaem hard disku i zauzima\n"
-" cjeli raspoloiv prostor na njemu, trebate napraviti slobodan prostor za "
+"cjeli raspoloiv prostor na njemu, trebate napraviti slobodan prostor za\n"
"Linux podatke. Da biste to napravili moete obrisati vau\n"
-" Microsoft Windows particiju i podatke (pogledajte \"Brisanje cijelog diska"
-"\" ili \"Ekspert mod\" rjeenja) ili mjenjati veliinu vae\n"
-" Microsoft Windows particije. Mjenjanje veliine moe se obaviti bez "
-"gubitka bilo kakvih podataka. Ovo rjeenje je\n"
-" preporueno ukoliko elite koristiti zajedno Mandrake Linux i Microsoft "
-"Windows-e na istom raunalu.\n"
-"\n"
-"\n"
-" Prije izabiranja ovog rjeenja, molimo razumite da e veliina vae "
+"Microsoft Windows particiju i podatke (pogledajte \"Brisanje cijelog diska"
+"\"\n"
+"ili \"Ekspert mod\" rjeenja) ili mijenjati veliinu vae\n"
+"Microsoft Windows particije. Mijenjanje veliine moe se obaviti bez\n"
+"gubitka bilo kakvih podataka, ako prethodno defragmentirate Windows "
+"particiju.\n"
+"Ovo rjeenje je preporueno ukoliko elite koristiti zajedno Mandrake Linux\n"
+"i Microsoft Windows-e na istom raunalu.\n"
+"\n"
+" Prije izabiranja ovog rjeenja, molimo shvatite da e veliina vae "
"Microsoft\n"
-" Windows partiticije biti manja nego to je sada. To znai da ete imati "
+"Windows partiticije biti manja nego to je sada. To znai da ete imati\n"
"manje slobodnog prostora pod\n"
-" Microsoft Windows-ima za spremanje vaih podataka ili instaliranje novog "
+"Microsoft Windows-ima za spremanje vaih podataka ili instaliranje novog "
"software-a.\n"
"\n"
+" * \"Obii Windowse\": ovo e jednostavno obri sati sve na disku i poeti\n"
+"particionirati sve ispoetka. Svi podaci na disku e biti izgubljeni;\n"
"\n"
-"* Ekspertni mod: Ukoliko elite particionirati runo va hard disk, moete "
+" * \"Ekspertni mod\": Ukoliko elite particionirati runo va hard disk, "
+"moete\n"
"izabrati ovu opciju. Budite paljivi prije\n"
-" izabiranja ovog rjeenja. Vrlo je mono, ali i vrlo opasno. Moete "
+"izabiranja ovog rjeenja. Vrlo je mono, ali i vrlo opasno. Moete\n"
"izgubiti sve vae podatke vrlo lako. Zato,\n"
-" nemojte izabrati ovo rjeenje ukoliko ne znate to radite."
+"nemojte izabrati ovo rjeenje ukoliko ne znate to radite."
#: ../../help.pm_.c:347
msgid ""
@@ -3036,9 +3237,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3051,9 +3251,45 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
+"Eto. Instalacija je zavrena i va GNU/Linux sustav je spreman za "
+"koritenje.\n"
+"Samo pritisnite \"U redu\" da bi ponovno pokrenuli sustav. Moete pokrenuti\n"
+"GNU/Linux ili Windowse, to god elite (ako imate dva sustava), im se\n"
+"raunalo ponovno podigne.\n"
+"\n"
+"\"Napredno\" dugme (samo u modu za strunjake) e prikazati jo dva "
+"dugmeta: \n"
+"\n"
+" * \"napravi disketu za automatsku instalaciju\": za stvaranje "
+"instalacijske\n"
+"diskete koja e automatski izvriti itavu instalaciju bez pomoi "
+"operatora,\n"
+"slinu instalaciji koju ste upravo namjestili.\n"
+"\n"
+" Primjetite da su dvije razliite opcije dostupne nakon pritiska na "
+"dugme:\n"
+"\n"
+" * \"Replay\". Ovo je djelomice automatizirana instalacija, poto\n"
+"particioniranje (i samo to) ostaje interaktivno;\n"
+"\n"
+" * \"Automatska instalacija\". Potpuno automatizirana instalacija: tvrdi\n"
+"disk se u potpunosti prebrisava, svi podaci se gube.\n"
+"\n"
+" Ova opcija je dosta korisna pri instaliranju na vei broj slinih "
+"maina.\n"
+"Pogledajte odjeljak za automatsku instalaciju na naem web siteu;\n"
+"\n"
+" * \"Snimi odabir paketa\"(*): snima prethodni odabir paketa. Potom, pri "
+"drugoj\n"
+"instalaciji, stavite disketu u pogon i pokrenite instalaciju odlaskom u\n"
+"ekran za pomo pritiskom na [F1], te zadavanjem >>linux defcfg=\"floppy\"<<\n"
+"naredbe.\n"
+"\n"
+"(*) Trebate FAT formatiranu disketu (da bi je napravili u GNU/Linuxu, "
+"napiite\n"
+"\"mformat a:\")"
#: ../../help.pm_.c:378
-#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3080,38 +3316,31 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-"Svaka particija koja je novo definirana mora biti\n"
+"Svaka novo definirana particija mora biti\n"
"formatirana za koritenje (formatiranje znai pravljenje datotenog "
"sustava).\n"
"\n"
-"\n"
-"Trenutno, moete htjeti ponovno formatirati neke ve postojee particije "
+"Trenutno, moete htjeti ponovno formatirati neke ve postojee particije\n"
"kako bi obrisali\n"
-"podatke koje one posjeduju. Ukoliko elite to napraviti, molimo takoer "
-"izaberite particije\n"
-"koje elite formatirati.\n"
-"\n"
-"\n"
-"Molimo primjetite da nije nuno ponovno formatirati sve ve postojee "
-"particije.\n"
-"Morate ponovno formatirati particije koje sadre operativni sustav (poput \"/"
-"\",\n"
-"\"/usr\" ili \"/var\") ali ne morate ponovno formatirati particije koje "
-"sadre podatke\n"
-"koje elite zadrati (tipino /home).\n"
-"\n"
+"podatke koje one posjeduju. Ukoliko elite to napraviti,\n"
+"izaberite particije koje elite formatirati.\n"
"\n"
-"Molimo budite paljivi odabirom particija, poslije formatiranja, svi podaci "
-"e biti\n"
-"obrisani i neete ih moi povratiti.\n"
+"Primjetite da nije nuno ponovno formatirati sve ve postojee particije.\n"
+"Morate ponovno formatirati particije koje sadre operativni sustav (poput \n"
+"\"/\",\"/usr\" ili \"/var\") ali ne morate ponovno formatirati particije "
+"koje\n"
+"sadre podatke koje elite zadrati (tipino \"/home\").\n"
"\n"
+"Molimo budite paljivi odabirom particija, poslije formatiranja, svi podaci\n"
+"e biti obrisani i neete ih moi povratiti.\n"
"\n"
"Pritisnite na \"U redu\" kada ste spremni za formatiranje particije.\n"
"\n"
+"Pritisnite na \"Odustani\" kada elite izabrati druge particije za\n"
+"instalaciju vaeg novog Mandrake Linux operativnog sustava.\n"
"\n"
-"Pritisnite na \"Odustani\" kada elite izabrati druge particije za "
-"instalaciju vaeg novog\n"
-"Mandrake Linux operativnog sustava."
+"Pritisnite na \"Napredno\" ako elite izabrati particije koje e biti\n"
+"provjeravane radi loih blokova (bad blocks)."
#: ../../help.pm_.c:404
msgid ""
@@ -3144,6 +3373,18 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
+"Dok instalirate Mandrake Linux, mogue je da su neki paketi ve nadograeni\n"
+"od prvotne inaice. Neki bugovi su moda uklonjeni, i sigurnost poboljana.\n"
+"Da bi iskoristili prednosti tih nadogradnji, predloeno vam je da ih\n"
+"skinete s Interneta. Izaberite \"Da\" ako ste povezani s Internetom, ili \"Ne"
+"\"\n"
+"ako biste radije instalirali nadograene pakete kasnije.\n"
+"\n"
+"Odabir \"Da\" prikazuje popis mjesta otkuda se nadogradnje mogu skinuti.\n"
+"Izaberite ono najblie vama. Tada e se pojaviti stablo za odabir paketa:\n"
+"pregledajte odabir i stisnite \"Instaliraj\" da bi skinuli i instalirali "
+"odabrane\n"
+"pakete, ili \"Odustani\" za prekid."
#: ../../help.pm_.c:425
msgid ""
@@ -3170,9 +3411,18 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
+"Sada treba odabrati eljenu razinu sigurnosti raunala. Ope pravilo jest "
+"da\n"
+"to je vie raunalo izloeno i podaci vrijedniji, to bi vea razina "
+"sigurnosti\n"
+"trebala biti. Meutim, vea razina sigurnosti utjee na jednostavnost "
+"koritenja.\n"
+"Pogledajte u \"msec\" poglavlje u ``Reference Manual'' za bolje objenjenje\n"
+"znaenja tih razina.\n"
+"\n"
+"Ako ne znate to biste odabrali, ostavite podrazumijevanu opciju."
#: ../../help.pm_.c:442
-#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3194,38 +3444,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3250,85 +3494,76 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"U ovoj toki instalacije, trebate izabrati koje\n"
-"partiticije ete koristiti za instalaciju vaeg novog Mandrake Linux "
-"sustava. Ukoliko su\n"
+"U ovoj toki instalacije, trebate izabrati koje partiticije ete koristiti "
+"za\n"
+"instalaciju vaeg novog Mandrake Linux sustava. Ukoliko su\n"
"particije ve definirane (iz prethodne instalacije GNU/Linux-a ili iz\n"
-"drugih particijskih alata), moete koristiti postojee particije. U drugim "
-"sluajevima,\n"
-"hard disk particije moraju biti definirane.\n"
-"\n"
+"drugih particijskih alata), moete koristiti postojee particije. Inae,\n"
+"moraju biti definirane.\n"
"\n"
-"Za pravljenje particija, morate prvo izabrati hard disk. Moete izabrati \n"
+"Za pravljenje particija, morate prvo izabrati tvrdi disk. Moete izabrati \n"
"disk za particioniranje klikanjem na \"hda\" za prvi IDE disk, \"hdb\" za\n"
"drugi ili \"sda\" za prvi SCSI disk i tako dalje.\n"
"\n"
-"\n"
"Za particioniranje izabranog hard diska, moete izabrati ove opcije:\n"
"\n"
-" * Obrii sve: ova opcija e obrisati sve raspoloive particije na "
+" * \"Obrii sve\": ova opcija e obrisati sve raspoloive particije na\n"
"odabranom hard disku.\n"
"\n"
+" * \"Auto alokacija\": ova opcija vam dozvoljava da automatski napravite\n"
+"\"Ext2\" i swap particije u slobodnom prostoru vaeg hard diska.\n"
"\n"
-" * Auto alokacija: ova opcija vam dozvoljava da automatski napravite Ext2 "
-"i swap particije u slobodnom prostoru vaeg\n"
-" hard diska.\n"
-"\n"
+" * \"Dodatno\": pristup dodatnim mogunostima:\n"
"\n"
-" * Spasi particijsku tablicu: ukoliko je vaa particijska tablica "
+" * \"Spasi particijsku tablicu\": ukoliko je vaa particijska tablica\n"
"oteena, moete probati spasiti ju koristei ovu opciju. Molimo\n"
-" budite paljivi i zapamtite da ne mora biti uspjena.\n"
+"budite paljivi i zapamtite da ne mora biti uspjena.\n"
"\n"
+" * \"Povrati\": moete koristiti ovu opciju za odustajanje od vaih "
+"promjena.\n"
"\n"
-" * Povrati: moete koristiti ovu opciju za odustajanje od vaih promjena.\n"
-"\n"
-"\n"
-" * Ponovno uitaj: moete koristiti ovu opciju ukoliko elite vratiti "
+" * \"Ponovno uitaj\": moete koristiti ovu opciju ukoliko elite vratiti\n"
"unazad sve promjene i uitati vau inicijalnu particijsku tablicu\n"
"\n"
-"\n"
-" * arobnjak: ukoliko elite koristiti arobnjak za particioniranje vaeg "
+" * \"arobnjak\": ukoliko elite koristiti arobnjak za particioniranje "
+"vaeg\n"
"hard diska, moete koristiti ovu opciju. Preporueno je ukoliko \n"
-" nemate dovoljno znanja oko particioniranja.\n"
+"nemate dovoljno znanja oko particioniranja.\n"
"\n"
-"\n"
-" * Vrati sa diskete: ukoliko ste spremili vau particijsku tablicu na "
+" * \"Vrati sa diskete\": ukoliko ste spremili vau particijsku tablicu na\n"
"disketu tijekom prijanje instalacije, moete\n"
-" ju vratiti koristei ovu opciju.\n"
-"\n"
-"\n"
-" * Spremi na disketu: ukoliko elite spremiti vau particijsku tablicu na "
-"disketu kako biste ju mogli kasnije vratiti, moete koristiti ovu\n"
-" opciju. Jako je preporuljivo koristiti ovu opciju\n"
+"je vratiti koristei ovu opciju.\n"
"\n"
+" * \"Spremi na disketu\": ukoliko elite spremiti vau particijsku tablicu "
+"na\n"
+"disketu kako biste je mogli kasnije vratiti, moete koristiti ovu\n"
+"opciju. Jako je preporuljivo koristiti ovu opciju\n"
"\n"
-" * Zavri: kada ste zavrili s particioniranjem vaeg hard diska, "
+" * \"Zavri\": kada ste zavrili s particioniranjem vaeg hard diska,\n"
"koristite ovu opciju za spremanje vaih promjena.\n"
"\n"
-"\n"
-"Za informaciju, moete dohvatiti bilo koju opciju koristei tastaturu: "
-"navigiranje kroz particije se obavlja koristei Tab i Up/Down strelice.\n"
-"\n"
+"Za informaciju, moete dohvatiti bilo koju opciju koristei tastaturu:\n"
+"navigiranje kroz particije se obavlja koristei [Tab] i [Up/Down] strelice.\n"
"\n"
"Kada je particija odabrana, moete koristiti:\n"
"\n"
-" * Ctrl-c za pravljenje novih particija (kada je prazna particija "
+" * Ctrl-c za pravljenje novih particija (kada je prazna particija\n"
"izabrana)\n"
"\n"
-" * Ctrl-d za brisanje particije\n"
+" * Ctrl-d za brisanje particije\n"
"\n"
-" * Ctrl-m za postavljanje toke montiranja\n"
-" \n"
+" * Ctrl-m za postavljanje toke montiranja\n"
"\n"
-" \n"
-"Ukoliko instalirate na PPC raunalo, eliti e te napraviti malu HFS "
-"'bootstrap' particiju od najmanje 1MB za koritenje\n"
-"od strane yaboot bootloader-a. Ukoliko se odluite za pravljenje malo vee "
+"Za informacije o raznim dostupnim datotenim sustavima, proitajte ext2fs\n"
+"poglavlje u ``Reference Manual''\n"
+"\n"
+"Ukoliko instalirate na PPC raunalo, eljet ete napraviti malu HFS\n"
+"'bootstrap' particiju od najmanje 1MB koju e koristiti\n"
+"yaboot bootloader. Ukoliko se odluite za pravljenje malo vee \n"
"particije, recimo 50MB, moete ju pronai korisnom za stavljanje\n"
"dodatnog kernela i ramdisk slike u sluaju nude."
#: ../../help.pm_.c:513
-#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3361,25 +3596,21 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
"Vie od jedne Microsoft Windows particije su pronaene\n"
-"na vaem hard disku. Molimo izaberite jednu kojoj elite promjeniti veliinu "
-"kako bi instalirali\n"
-"va novi Mandrake Linux operativni sustav.\n"
-"\n"
+"na vaem hard disku. Molimo izaberite jednu kojoj elite promjeniti "
+"veliinu\n"
+"kako bi instalirali va novi Mandrake Linux operativni sustav.\n"
"\n"
-"Za informaciju, svaka particija je popisana kako slijedi; \"Linux ime\", "
-"\"Windows\n"
-"ime\" \"Kapacitet\".\n"
+"Svaka je particija popisana kako slijedi; \"Linux ime\", \"Windows ime\"\n"
+"\"Kapacitet\".\n"
"\n"
"\"Linux ime\" je kodirano kako slijedi: \"tip hard diska\", \"broj hard diska"
"\",\n"
"\"broj particije\" (naprimjer, \"hda1\").\n"
"\n"
-"\n"
"\"Tip hard diska\" je \"hd\" ukoliko je hard disk - IDE hard disk i \"sd\"\n"
"ukoliko je on SCSI hard disk.\n"
"\n"
-"\n"
-"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard "
+"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard\n"
"diskovima:\n"
"\n"
" * \"a\" znai \"master hard disk na primarnom IDE kontroleru\",\n"
@@ -3390,8 +3621,7 @@ msgstr ""
"\n"
" * \"d\" znai \"slave hard disk na sekundarnom IDE kontroleru\".\n"
"\n"
-"\n"
-"Sa SCSI hard diskovima, \"a\" znai \"primarni hard disk\", \"b\" znai "
+"Sa SCSI hard diskovima, \"a\" znai \"primarni hard disk\", \"b\" znai\n"
"\"sekundarni hard disk\", itd...\n"
"\n"
"\"Windows ime\" je slovo vaeg hard diska pod Windows-ima (prvi disk\n"
@@ -3402,7 +3632,6 @@ msgid "Please be patient. This operation can take several minutes."
msgstr "Molimo budite strpljivi. Ova operacija moe potrajati nekoliko minuta."
#: ../../help.pm_.c:547
-#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
@@ -3413,11 +3642,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3440,43 +3669,60 @@ msgid ""
"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
"choose this unless you know what you are doing."
msgstr ""
-"Molimo izaberite \"Instalacija\" ukoliko nemate prethodne verzijeMandrake "
-"Linux-a\n"
-"instalirano ili ako elite koristiti nekoliko operativnih sustava.\n"
-"\n"
-"\n"
-"Molimo izaberite \"Dogradnja\" ukoliko elite dograditi ve postojeu "
-"verzijuMandrake Linux-a.\n"
-"\n"
+"DrakX sada treba znati da li elite raditi podrazumijevanu instalaciju\n"
+"(\"Preporueno\") ili elite li imati veu kontrolu (\"Strunjak\"). Moete\n"
+"takoer izabrati da li elite novu instalaciju ili nadogradnju postojeeg\n"
+"Mandrake Linux sustava:\n"
+"\n"
+" * \"Instalacija\": potuno brie stari sustav. U stvari, ovisno kako je "
+"sainjen\n"
+"sustav, moi ete zadrati neke stare (Linux ili ne) particije "
+"nepromijenjene;\n"
+"\n"
+" * \"Dogradnja\": ova vrsta instalacije vam omoguuje da jednostavno "
+"nadogradite\n"
+"pakete instalirane u vaem Mandrake Linux sustavu. Zadrava particije na "
+"vaem\n"
+"tvrdom disku kao i postavke korisnika. Svi ostali koraci (u odnosu na "
+"obinu\n"
+"instalaciju) pri konfiguraciji ostaju dostupni;\n"
+"\n"
+" * \"Dogradnja paketa\": ova nova vrsta instalacije omoguuje dogradnju "
+"postojeeg\n"
+"Mandrake Linux sustava i zadravanje svih sustavskih postavki. Dodavanje "
+"novih\n"
+"paketa postojeoj instalaciji je takoer mogue.\n"
+"\n"
+"Dogradnje bi trebale raditi dobro za Mandrake Linux sustave poev od \"8.1"
+"\"\n"
+"inaice.\n"
"\n"
-"U zavisnosti od znanja u GNU/Linux, moete izabrati jednu od slijedeih "
+"U zavisnosti od znanja u GNU/Linux, moete izabrati jednu od slijedeih\n"
"razina za instalaciju ili dogradnju\n"
"vaeg Mandrake Linux operativnog sustava:\n"
"\n"
-"* Preporueno: ukoliko nikad niste instalirali GNU/Linux operativni sustav "
-"izaberite ovo. Instalacija e biti\n"
-" vrlo laka i pitati e vas samo nekoliko pitanja.\n"
-"\n"
+"* Preporueno: ukoliko nikad niste instalirali GNU/Linux operativni sustav \n"
+"izaberite ovo. Instalacija e biti vrlo laka i pitati e vas samo nekoliko "
+"pitanja.\n"
"\n"
-"* Prilagoeno: ukoliko ste ve upoznati sa GNU/Linux, moete izabrati "
+"* Prilagoeno: ukoliko ste ve upoznati sa GNU/Linux, moete izabrati\n"
"primarnu upotrebu (radna stanica, posluitelj,\n"
-" razvoj) za va sustav. Trebati ete odgovoriti na vie pitanja nego u "
+"razvoj) za va sustav. Trebati ete odgovoriti na vie pitanja nego u\n"
"\"Preporuenoj\" instalacijskoj\n"
-" klasi, zato trebate znati vie o tome kako GNU/Linux radi kako bi izabrali "
+"klasi, zato trebate znati vie o tome kako GNU/Linux radi kako bi izabrali\n"
"ovu instalacijsku klasu.\n"
"\n"
-"\n"
-"* Strunjak: ukoliko imate dobro znanje o GNU/Linux-u, moete izabrati ovu "
+"* Strunjak: ukoliko imate dobro znanje o GNU/Linux-u, moete izabrati ovu\n"
"instalacijsku klasu. Kao u \"Prilagoenoj\"\n"
-" instalacijskoj klasi, moi ete izabrati primarnu upotrebu za va sustav "
+"instalacijskoj klasi, moi ete izabrati primarnu upotrebu za va sustav\n"
"(radna stanica, posluitelj, razvoj). Budite jako\n"
-" paljivi prije nego to odaberete ovu instalacijsku klasu. Moi ete "
+"paljivi prije nego to odaberete ovu instalacijsku klasu. Moi ete\n"
"izvriti visoko prilagoenu instalaciju.\n"
-" Odgovori na neka pitanja mogu biti jako teki ukoliko nemate dobro znanje "
+"Odgovori na neka pitanja mogu biti jako teki ukoliko nemate dobro znanje\n"
"GNU/Linux. Dakle, nemojte izabrati\n"
-" ovu instalacijsku klasu ukoliko ne znate to radite."
+"ovu instalacijsku klasu ukoliko ne znate to radite."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3490,8 +3736,18 @@ msgid ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
msgstr ""
+"Obino, DrakX izabere pravu tipkovnicu za vas (ovisno o jeziku koji ste "
+"odabrali)\n"
+"i neete ni vidjeti ovaj korak. Meutim, moda nemate tipkovnicu koja tono\n"
+"odgovara vaem jeziku: npr. ako ste iz vicarske a govorite engleski, moda\n"
+"svejedno elite vicarsku tipkovnicu. Ili ako govorite engleski, a ivite u\n"
+"Quebecu, moda ete se nai u slinoj situaciji. U oba sluaja, morate se "
+"vratiti\n"
+"na ovaj instalacijski korak i odabrati odgovarajuu tipkovnicu iz popisa.\n"
+"\n"
+"Pristisnite \"Dodatno\" da biste dobili potpun popis podranih tipkovnica."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3505,8 +3761,23 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"Izaberite jezik kojim se elite sluiti u instalaciji i sustavu.\n"
+"\n"
+"Pritiskom na \"Napredno\" moi ete izabrati druge jezike koji e biti "
+"instalirani\n"
+"na vau radnu stanicu. Odabiranjem drugih jezika instalirat e se "
+"specifine\n"
+"jezine datoteke za sustavsku dokumentaciju i aplikacije. Npr. ako ete na "
+"svom\n"
+"raunalu imati korisnike iz panjolske, u stablu odaberite Engleski kao "
+"glavni\n"
+"jezik i u sekciji Napredno oznaite kuicu koja odgovara panjolskoj.\n"
+"\n"
+"Primjetite da se moe instalirati vie jezika. Kada odredite eventualne "
+"dodatne\n"
+"lokale, stisnite \"U redu\" za nastavak."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3521,33 +3792,46 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
+"DrakX obino prepozna koliko va mi ima dugmeta. Ako ne, pretpostavlja da\n"
+"imate mi sa dva dugmeta, a tree e emulirati. DrakX e automatski znati da "
+"li\n"
+"se radi o PS/2, serijskom ili USB miu.\n"
+"\n"
+"Ako elite odrediti drugaiji tip mia, odaberite odgovarajui tip iz "
+"ponuenog\n"
+"popisa.\n"
+"\n"
+"Ako izaberete mi razliit od podrazumijevanog, prikazati e se testni "
+"ekran.\n"
+"Koristite dugmad i kotai da potvrdite da li su postavke tone. Ako mi ne "
+"radi\n"
+"dobro, stisnite razmaknicu ili [Return] da bi odustali i ponovno izabirali."
-#: ../../help.pm_.c:623
-#, fuzzy
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
"Molim odaberite ispravni port. Na primjer, COM1 port pod MS Windowsima\n"
-"je imenovan ttyS0 pod GNU/Linuxom."
+"se, pod GNU/Linuxom zove \"ttyS0\"."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3568,8 +3852,54 @@ msgid ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-
-#: ../../help.pm_.c:663
+"Ovo je najvanija odluka za sigurnost vaeg GNU/Linux sustava: morate "
+"unijeti\n"
+"\"root\" lozinku. \"root\" je sustavski administrator i jedini koji je "
+"ovlaten\n"
+"da vri nadogradnje, dodaje korisnike, mijenja cjelokupne postavke sustava, "
+"itd.\n"
+"Ukratko, \"root\" moe raditi sve! Stoga morate izabrati lozinku koju je "
+"teko\n"
+"pogoditi, DrakX e vam rei da li je prelagana. Kao to vidite, moete "
+"odabrati\n"
+"da ne unesete lozinku, ali jako vam savjetujemo da to ne inite, barem zbog\n"
+"jednog razloga: nemojte mislite da, zbog tog to ste pokrenuli GNU/Linux, su "
+"vai\n"
+"ostali operacijski sustavi sigurni od greaka. Poto \"root\" moe "
+"premostiti\n"
+"sva ogranienja i nenamjerno obrisati sve podatke na particijama nemarnim "
+"pristupanjem,\n"
+"vano je da bude teko postati \"root\".\n"
+"\n"
+"Lozinka bi trebala biti kombinacija alfanumerikih znakova i barem 8 znakova "
+"duga.\n"
+"Nikad ne zapisujte \"root\" lozinku, prelako dovodite sustav u opasnost.\n"
+"\n"
+"Ipak, nemojte izabrati predugu ili presloenu lozinku, jer ete je morati "
+"lako\n"
+"zapamtiti.\n"
+"\n"
+"Lozinka se nee pojaviti na ekranu kako je budete upisivali. Zato je morate\n"
+"upisati dvaput da bi smanjili mogunost greke pri upisu. Ako ipak ponovite "
+"istu\n"
+"greku dva puta, morat ete koristiti ovu \"netonu\" lozinku kada se prvi "
+"put\n"
+"budete prijavljivali.\n"
+"\n"
+"U strunjak modu, bit ete zapitani da li ete se spajati na "
+"autentifikacijski\n"
+"posluitelj, poput NISa ili LDAPa.\n"
+"\n"
+"Ako vaa mrea koristi LDAP (ili NIS) protokole za autentifikaciju, "
+"izaberite\n"
+"\"LDAP\" (ili \"NIS\") kao autentifikaciju. Ako ne znate kako, pitajte\n"
+"administratora mree.\n"
+"\n"
+"Ako vae raunalo nije povezano sa administriranom mreom, morat ete "
+"izabrati\n"
+"\"Lokalne datoteke\" za autentifikaciju."
+
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3591,7 +3921,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3599,7 +3929,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3619,9 +3949,63 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
+"LILO i grub su GNU/Linux bootloaderi. Ovaj korak je obino potpuno "
+"automatiziran.\n"
+"U stvarim DrakX analizira boot sektor diska i ponaa se u skladu s onim to "
+"je\n"
+"tamo pronaao:\n"
+"\n"
+" * ako je pronaen Windows boot sektor, bit e zamijenjen sa grub/LILO boot "
+"sektorom.\n"
+"Prema tome, moi ete podizati ili GNU/Linux ili neki drugi OS;\n"
+"\n"
+" * ako je pronaen grub/LILO boot sektor, bit e zamijenjen sa novim.\n"
+"\n"
+"Ako postoji neka dvojba, DrakX e izbaciti dijalog za razliitim opcijama.\n"
+"\n"
+" * \"Koji bootloader koristiti\": imate tri izbora:\n"
+"\n"
+" * \"GRUB\": ako preferirate grub (tekstualni izbornik).\n"
+"\n"
+" * \"LILO sa grafikim izbornikom\": ako preferirate LILO sa svojim\n"
+"grafikim sueljem.\n"
+"\n"
+" * \"LILO sa tekstualnim izbornikom\": ako preferirate LILO sa svojim\n"
+"tekstualnim sueljem.\n"
+"\n"
+" * \"Boot ureaj\": u veini sluajeva, neete mijenjati podrazumijevani\n"
+"(\"/dev/hda\"), ali ak vam je tako drae, bootloader se moe instalirati na "
+"drugi\n"
+"tvrdi disk (\"/dev/hdb\"), ili ak na disketu (\"/dev/fd0\");\n"
+"\n"
+" * \"Vrijeme do podizanja podrazumijevane slike\": kada pokreete raunalo,\n"
+"ovo je vrijeme koje korisnik ima da u bootloader izborniku izabere drugi "
+"izbor\n"
+"od podrazumijevanog.\n"
+"\n"
+"!! Pazite da, ako izaberete da se bootloader ne instalira (pritiskom na\n"
+"\"Odustani\"), morate na neki drugi nain osigurati podizanje Mandrake/"
+"Linux\n"
+"sustava! Takoer, budite sigurni da znate to radite prije mijenjanja "
+"opcija. !!\n"
+"\n"
+"Pritiskom na \"Napredno\" u ovom dijalogu dobit ete mnotvo naprednih "
+"opcija,\n"
+"rezerviranih za napredne korisnike.\n"
+"\n"
+"Nakon to ste namjestili ope parametre bootloadera, bit e prikazan popis "
+"opcija\n"
+"za podizanje sustava koje e biti dostupne prilikom podizanja sustava.\n"
+"\n"
+"Ako postoji neki drugi operacijski sustav instaliran na vaem raunalu, "
+"automatski\n"
+"e biti dodan boot izborniku. Ovdje moete fino podesiti postojee opcije. "
+"Izaberite\n"
+"stavku i stisnite \"Promijeni\" da bi je promijenili ili uklonili; \"Dodaj\" "
+"stvara\n"
+"novu stavku; i \"Zavri\" kree dalje na slijedei instalacijski korak."
-#: ../../help.pm_.c:711
-#, fuzzy
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3634,18 +4018,17 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
"LILO (the LInux LOader) i Grub su bootloaderi: oni su u mogunosti podii\n"
-"ili GNU/Linux ili bilo koji drugi postojei operativni sustav na vaem "
+"ili GNU/Linux ili bilo koji drugi postojei operativni sustav na vaem\n"
"raunalu.\n"
"Normalno, ti drugi operativni sustavi su ispravno pronaeni i\n"
"instalirani. Ako to nije sluaj, moete ga dodati runo na ovom\n"
"zaslonu. Budite paljivi da izaberete ispravne parametre.\n"
"\n"
-"\n"
"Takoer ete poeliti ne dati pristup tim drugim operativnim sustavima\n"
"drugima, u tom sluaju moete obrisati odgovarajue unose. Ali\n"
"u tom sluaju, trebati ete boot disketu kako bi ih mogli podii!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3660,29 +4043,28 @@ msgstr ""
"Ako ne znate tono to radite, izaberite \"Prvi sektor diska\n"
"(MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3690,9 +4072,44 @@ msgid ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
+"Ovdje biramo sustav za ispis za vae raunalo. Drugi OSovi moda nude "
+"jedan,\n"
+"ali Mandrake Linux nudi tri.\n"
+"\n"
+" * \"pdq\", to znai ``print, don't queue'' (ispii, bez stavljanja u red), "
+"je\n"
+"izbor koji ete koristiti ako imate izravnu vezu sa pisaem, elite izbjei\n"
+"zastoje u ispisu i nemate pisae u mrei. Ima samo jednostavne mrene "
+"mogunosti\n"
+"i poneto je spor za mreu. Izaberite \"pdq\" ako ste novi u GNU/Linuxu. "
+"Moete\n"
+"promijeniti odabir poslije instalacije pokretanjem PrinterDrakea iz "
+"Mandrake\n"
+"kontrolnog centra i pritiskom na dugme za strunjake.\n"
+"\n"
+" * \"CUPS\"``Common Unix Printing System'', je izvrstan za ispis na vaem "
+"lokalnom\n"
+"raunalu, kao i za ispis na drugom kraju svijeta. Jednostavan je i moe "
+"posluiti\n"
+"kao posluitelj i klijent za drevni \"lpd\" sustav za ispis. Dakle, "
+"kompatibilan je\n"
+"s ranijim sustavima. Ima mnotvo trikova, ali osnovne postavke su gotovo\n"
+"jednostavne kao i \"pdq\". Ako trebate da vam emulira \"lpd\" posluitelj, "
+"morate\n"
+"ukljuiti \"cups-lpd\" daemon. Ima grafika suelja za ispis i za odabir "
+"opcija\n"
+"za ispis.\n"
+"\n"
+" * \"lprNG\"``line printer daemon New Generation''. Ovaj sustav moe raditi\n"
+"otprilike iste stvari kao i ostali, ali e pisati i s pisaima u Novell "
+"mrei,\n"
+"jer podrava IPX protokol, i moe ispisivati izravno u komande ljuske. Ako "
+"vam\n"
+"treba Novell ili ispis u komande bez koritenja preusmjeravanja, koristite "
+"lprNG.\n"
+"Inaem CUPS je najbolji jer je jednostavniji i bolje radi preko mree."
+
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3717,40 +4134,37 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"DrakX e pokuati pronai PCI SCSI adapter(e). Ukoliko DrakX\n"
-"pronae SCSI adapter i zna koji upravljaki program da koristi, on e "
-"automatski biti\n"
-"instaliran.\n"
+"DrakX sada pretrauje IDE ureaje prisutne u vaem raunalu.Takoer e "
+"pokuati\n"
+"pronai PCI SCSI adapter(e). Ukoliko DrakX\n"
+"pronae SCSI adapter i zna koji upravljaki program da koristi, on e \n"
+"automatski biti instaliran.\n"
"\n"
-"\n"
-"Ukoliko nemate SCSI adapter, ISA SCSI adapter ili PCI SCSI adapter koji\n"
+"Ukoliko imate SCSI adapter, ISA SCSI adapter ili PCI SCSI adapter koji\n"
"DrakX ne moe prepoznati, biti ete pitani da li imate SCSI adapter u vaem\n"
"sustavu. Ukoliko nemate adapter, moete kliknuti na \"Ne\". Ukoliko kliknete "
"na\n"
"\"Da\", dobiti ete popis upravljakih programa odakle moete izabrati va\n"
"specifian adapter.\n"
"\n"
-"\n"
"Ako trebate runo specifirati va adapter, DrakX e pitati da li elite \n"
"specifirati opcije za njega. Trebali biste dozvoliti DrakX-u da isproba "
"opcije za\n"
"hardware. Ovo obino radi dobro.\n"
"\n"
-"\n"
-"Ako ne, trebati ete navesti opcije za upravljaki program. Molimo "
+"Ako ne, trebati ete navesti opcije za upravljaki program. Molimo\n"
"pregledajte User\n"
-"Guide (poglavlje 3, sekciju \"Collective informations on your hardware\") za "
-"preporuke\n"
-"o pribavljanju ovih informacija iz dokumentacije hardware-a, sa \n"
+"Guide (poglavlje 3, sekciju \"Collecting informations on your hardware\") "
+"za\n"
+"preporuke o pribavljanju ovih informacija iz dokumentacije hardware-a, sa \n"
"proizvoaevog Web site-a (ukoliko imate Internet pristup) ili iz Microsoft "
"Windows-a\n"
"(ukoliko ga imate na vaem sustavu)."
-#: ../../help.pm_.c:784
-#, fuzzy
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3760,9 +4174,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3774,7 +4187,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3802,72 +4215,54 @@ msgstr ""
"Moete dodati dodatne unose za yaboot, ili za drugi operativni sustav,\n"
"alternativne kernele, ili za spasonosnu boot sliku.\n"
"\n"
-"\n"
-"Za druge OS-ove - unos se sastoji samo od labele i root particije.\n"
-"\n"
+"Za druge OS-ove - unos se sastoji samo od labele i \"root\" particije.\n"
"\n"
"Za Linux, postoji nekoliko moguih opcija: \n"
"\n"
+" * Labela: Jednostavno, ovo je ime koje ete napisati u yaboot promptu za\n"
+"odabir ove boot opcije.\n"
"\n"
-" - Labela: Ovo je jednostavno ime koje ete napisati u yaboot promptu za "
-"odabir ove \n"
-"boot opcije.\n"
-"\n"
-"\n"
-" - Slika: Ovo e biti ime kernela pri podizanju. Tipino vmlinux ili\n"
-"varijacija vmlinux-a sa ekstenzijom.\n"
-"\n"
-"\n"
-" - Root: root ureaj ili '/' za vau Linux instalaciju.\n"
+" * Slika: Ovo je ime kernela koji se podie. Tipino vmlinux ili\n"
+"varijacija vmlinux-a sa ekstenzijom;\n"
"\n"
+" * Root: \"root\" ureaj ili '/' za vau Linux instalaciju.\n"
"\n"
-" \n"
-" - Dodatak: Na Apple hardware-u, kernel dodatak opcija se koristi vrlo "
-"esto za\n"
-"pomo pri inicijaliziranju video hardware-a, ili za omoguavanje emulacije "
-"tastaturnih mijih gumba\n"
-"zbog estog nedostatka 2-og ili 3-eg mijeg gumba na Apple mievima. "
-"Slijedee \n"
-"su neki primjeri:\n"
-"\n"
+" * Dodatak: Na Apple hardware-u, kernel dodatak opcija se koristi vrlo esto "
+"za\n"
+"pomo pri inicijaliziranju video hardware-a, ili za omoguavanje emulacije\n"
+"tipaka na miu tipkovnicom zbog estog nedostatka 2-og ili 3-eg tipke na "
+"Apple\n"
+" mievima. Neki primjeri:\n"
"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
"hda=autotune\n"
"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
"\n"
-"\n"
-" \n"
-" - Initrd: Ova opcija se moe koristiti ili za uitavanje inicijalnih "
-"modula, prijenego to je boot\n"
+" * Initrd: Ova opcija se moe koristiti ili za uitavanje inicijalnih\n"
+"modula, prije nego to je boot\n"
"ureaj raspoloiv, ili za uitavanje ramdisk slike za spasonosne boot "
"situacije.\n"
"\n"
+" * Initrd-veliina: Podrazumijevana veliina ramdisk-a je openito 4096\n"
+"byte-ova. Ukoliko trebate alocirati vei ramdisk, ova opcija moe biti "
+"koritena.\n"
"\n"
-" - Initrd-veliina: Podrazumijevana veliina ramdisk-a je openito 4096 "
-"byte-ova. Ukoliko trebate\n"
-"alocirati vei ramdisk, ova opcija moe biti koritena.\n"
+" * itaj-Pii: Normalno je \"root\" particija inicijalno podignuta u itaj-"
+"samo,\n"
+"radi mogunosti provjere datotenog sustava prije nego sustav postane "
+"'iv'.\n"
+"Moete premostiti tu opciju ovdje.\n"
"\n"
-"\n"
-" - itaj-Pii: Normalno je 'root' particija inicijalno podignuta u itaj-"
-"samo, za mogunost\n"
-"provjere datotenog sustava prije nego sustav postane 'iv'. Moete "
-"nadjaati ovu opciju ovdje.\n"
-"\n"
-"\n"
-" - NoVideo: Ako se Apple hardware pokae kao iznimno problematian, moete\n"
+" * NoVideo: Ako se Apple hardware pokae kao iznimno problematian, moete\n"
"izabrati ovu opciju za podizanje u 'novideo' modu, sa native framebuffer "
"podrkom.\n"
"\n"
-"\n"
-" - Podrazumijevano: Izabire ovaj unos kao podrazumijevani Linux izbor, "
-"mogue izbirati sa samo\n"
-"pritiskom ENTER-a na yaboot pitanju. Ovaj unos e takoer biti oznaen sa "
-"'*', ukoliko\n"
-"koristite TAB za pregledavanje boot izbora."
+" * Podrazumijevano: Izabire ovaj unos kao podrazumijevani Linux izbor,\n"
+"mogue izbirati pritiskom ENTER-a na yaboot pitanju. Ovaj unos e takoer\n"
+"biti oznaen sa '*', ukoliko stisnete [Tab] za pregledavanje boot izbora."
-#: ../../help.pm_.c:830
-#, fuzzy
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3894,63 +4289,49 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"Yaboot je bootloader za NewWorld MacIntosh hardware. U mogunosti je\n"
-"podii ili GNU/Linux, MacOS, ili MacOSX, ukoliko postoje na vaem raunalu.\n"
-"Normalno, ti drugi operativni sustavi su ispravno pronaeni i\n"
+"Yaboot je bootloader za NewWorld MacIntosh hardware. Moe\n"
+"podii GNU/Linux, MacOS, ili MacOSX, ukoliko postoje na vaem raunalu.\n"
+"Obino, ti drugi operativni sustavi su ispravno pronaeni i\n"
"instalirani. Ukoliko to nije sluaj, moete dodati unos runo na ovom\n"
"zaslonu. Budite paljivi da izaberete ispravne parametre.\n"
"\n"
+"Glavne opcije Yaboota su:\n"
"\n"
-"Yaboot glavne opcije su:\n"
-"\n"
-"\n"
-" - Init Poruka: Jednostavna tekst poruka koja se prikae prije pitanja o\n"
+" * Init Poruka: Jednostavna tekst poruka koja se prikae prije pitanja o\n"
"podizanju.\n"
"\n"
+" * Boot Ureaj: Oznaava gdje elite staviti informaciju potrebnu za \n"
+"podizanje GNU/Linux-a. Openito, bootstrap particiju namjetate prije, \n"
+"da sadri ovu informaciju.\n"
"\n"
-" - Boot Ureaj: Oznaava gdje elite staviti informaciju potrebnu za \n"
-"podizanje GNU/Linux-a. Openito, morati ete imati postavljenu bootstrap "
-"particiju prije, \n"
-"da moe drati ovu informaciju.\n"
-"\n"
-"\n"
-" - Otvorena Firmware Pauza: Za razliku od LILO-a, postoje dvije raspoloive "
-"pauze sa\n"
-"yaboot-om. Prva pauza se mjeru sekundama i na tom mjestu moete \n"
+" * Otvorena Firmware Pauza: Za razliku od LILO-a, postoje dvije raspoloive\n"
+"pauze sa yaboot-om. Prva pauza se mjeru sekundama i na tom mjestu moete \n"
"birati izmeu CD-a, OF boot-a, MacOS-a ili Linux-a.\n"
"\n"
-"\n"
-" - Kernel Boot ekanje: Ovo ekanje je slino LILO boot ekanju. Poslije \n"
+" * Kernel Boot ekanje: Ovo ekanje je slino LILO boot ekanju. Poslije \n"
"izabiranja Linux-a, imati ete pauzu od 0.1 sekunde prije nego "
"podrazumijevani\n"
"kernel opis bude odabran.\n"
"\n"
+" * Omogui CD Boot?: Postavljanje ove opcije e vam dozvoliti da moete\n"
+"izabrati 'C' za CD na prvom pitanju pri podizanju.\n"
"\n"
-" - Omogui CD Boot?: Postavljanje ove opcije e vam dozvoliti da moete "
-"izabrati 'C' za CD na\n"
-"prvom pitanju pri podizanju.\n"
-"\n"
-"\n"
-" - Omogui OF Boot?: Postavljanje ove opcije e vam dozvoliti da moete "
-"izabrati 'N' za Open\n"
-"Firmware prvi prvom pitanju pri podizanju.\n"
-"\n"
+" * Omogui OF Boot?: Postavljanje ove opcije e vam dozvoliti da moete\n"
+"izabrati 'N' za Open Firmware prvi prvom pitanju pri podizanju.\n"
"\n"
-" - Podrazumijevani OS: Moete izabrati koji OS ete podii podrazumijevano "
-"kada Open Firmware \n"
-"pauza istekne."
+" * Podrazumijevani OS: Moete izabrati koji OS ete podii podrazumijevano\n"
+"kada Open Firmware pauza istekne."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3958,12 +4339,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3978,8 +4358,39 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
+"Ovdje su predstavljeni razliiti parametri za vae raunalo. Ovisno o\n"
+"instaliranom hardveru, vidjet ete ili ne slijedee stavke:\n"
+"\n"
+" * \"Mi\": moete provjeriti trenutne postavke mia i promijeniti\n"
+"ih, ako treba, pritiskom na dugme;\n"
+"\n"
+" * \"Tipkovnica\": moete provjeriti trenutnu postavu tipkovnice i "
+"promijeniti\n"
+"je, ako treba, pritiskom na dugme;\n"
+"\n"
+" * \"Vremenska zona\": DrakX, podrazumijevano, pogaa vremensku zonu prema\n"
+"izabranom jeziku. Ali i ovdje, kao i kod izbora tipkovnice, moda niste u "
+"zemlji\n"
+"za koju bi izabrani jezik trebao odgovarati. Stoga, moda ete trabati "
+"stisnuti\n"
+"\"Vremenska zona\" dugme da bi namjestili sat prema vaoj vremenskoj zoni;\n"
+"\n"
+" * \"Pisa\": pritiskom na \"Nema pisaa\" dugme otvorit e se arobnjak za\n"
+"namjetanje pisaa;\n"
+"\n"
+" * \"Zvuna kartica\": ako je zvuna kartica naena, bit e ovdje "
+"prikazana.\n"
+"Nije je mogue mijenjati tijekom instalacije;\n"
+"\n"
+" * \"TV kartica\": ako je naena TV kartica, ovdje e biti prikazana. Nije "
+"je\n"
+"mogue mijenjati tijekom instalacije;\n"
+"\n"
+" * \"ISDN kartica\": ako je naena ISDN kartica, ovdje e biti prikazana. "
+"Moete\n"
+"mijenjati njene parametre pritiskom na dugme."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3989,8 +4400,7 @@ msgstr ""
"novu Mandrake Linux particiju. Budite paljivi, svi postojei podaci\n"
"biti e izgubljen i nee se moi povratiti!"
-#: ../../help.pm_.c:896
-#, fuzzy
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4001,30 +4411,31 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
"Izaberite \"U redu\" ukoliko elite obrisati sve podatke i\n"
-"postojee particije na navedenom hard disku. Budite paljivi, nakon "
-"klikanja\n"
-"na \"U redu\", neete moi povratiti bilo kakve postojee podatke ili "
-"particije\n"
-"na ovom hard disku, ukljuujui Windows podatke.\n"
-"\n"
+"postojee particije na navedenom tvrdom disku. Budite paljivi, nakon\n"
+"klikanja na \"U redu\", neete moi povratiti bilo kakve postojee podatke "
+"ili\n"
+"particije na ovom hard disku, ukljuujui Windows podatke.\n"
"\n"
"Pritisnite na \"Odustani\" za prekidanje ove operacije bez gubljenja bilo\n"
"kakvih postojeih podataka i particija na ovom hard disku."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"Ne mogu pristupiti kernel modulima koji odgovaraju vaem kernelu (datoteka %"
+"s nedostaje), ovo obino znai da vaa disketa za dizanje sustava nije "
+"usklaena sainstalacijskim medijem (napravite noviju boot disketu)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Morate takoer formatirati %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4050,20 +4461,20 @@ msgstr ""
"\n"
"Da li zaista elite instalirati te posluitelje?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Umetnite FAT formatiranu disketu u pogon %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT formatirana"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4071,7 +4482,7 @@ msgstr ""
"Za koritenje spremljenog odabira paketa, podignite instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Greka prilikom itanja datoteke %s"
@@ -4101,7 +4512,7 @@ msgstr "Morate imati swap particiju"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4109,59 +4520,59 @@ msgstr ""
"\n"
"Da ipak nastavim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Koristi postojee particije"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nema postojeih particija koje bih mogao upotrijebiti"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju elite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Odaberite veliinu"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Veliina korijenske particije u MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veliina swap particiju u MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Iskoristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji elite promijeniti veliinu?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Izraunavam granice Windows datotenog sustava"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4170,12 +4581,15 @@ msgstr ""
"Program koji mjenja veliinu FAT-a ne moe rukovati vaom particijom, \n"
"slijedea greka se dogodila: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Vaa Windows particija je prefragmentirana, molim pokrenite ``defrag'' prvo."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4196,54 +4610,54 @@ msgstr ""
"Takoer preporuljivo je da sauvate vae podatke (napravite backup).\n"
"Kada ste sigurni da elite nastaviti, pritisnite U redu."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Koliku veliinu elite zadrati za windowse"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particija %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Mijenjanje FAT veliine nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nema FAT particije za mjenjanje veliine ili za koritenje loopback-a (ili "
"nema dovoljno prostora)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Obrii cijeli disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ukloni Windowse(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate vie od jednog hard diska, na koji elite instalirati Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SVE postojee particije i podaci biti e izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Proizvoljno particioniranje diska"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4252,11 +4666,11 @@ msgstr ""
"Sada moete razdijeliti %s.\n"
"Kada ste gotovi ne zaboravite spremiti postavu sa `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vaoj Windows particiji"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ne mogu pronai bilo kakvo mjesto za instaliranje"
@@ -4264,16 +4678,16 @@ msgstr "Ne mogu pronai bilo kakvo mjesto za instaliranje"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX arobnjak za particioniranje je pronaao slijedea rjeenja:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje neuspjelo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Podiem mreu"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Onemoguujem mreu"
@@ -4285,12 +4699,12 @@ msgstr ""
"Dogodila se greka, ali neznam kako s njom lijepo rukovati.\n"
"Nastavite dalje na vlastiti rizik."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dupliciraj mjesto monitranja %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4302,12 +4716,12 @@ msgstr ""
"Provjerite cdrom na instaliranom raunalu koristei \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Dobrodoli u %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Disketni pogon nije dostupan"
@@ -4317,9 +4731,9 @@ msgstr "Disketni pogon nije dostupan"
msgid "Entering step `%s'\n"
msgstr "Pokreem korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4328,199 +4742,154 @@ msgstr ""
"instalacije Mandrake Linux-a. Ukoliko se to desi, moete probati tekstualnu\n"
"instalaciju. Za to, pritisnite `F1' kada podiete CDROM, i unesite `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Instalacijski razred"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Molim izaberite jedan od slijedeih razreda instalacije:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veliina izabranih grupa je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ukoliko elite instalirati manje od ove veliine,\n"
-"izaberite postotak paketa koliko elite instalirati.\n"
-"\n"
-"Mali postotak e instalirati samo najvanije pakete;\n"
-"dok postotak od 100%% e instalirati sve odabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Imate mjesta na vaem disku za samo %d%% paketa.\n"
-"\n"
-"Ukoliko elite instalirati manje od ovoga,\n"
-"izaberite postotak paketa koliko elite instalirati.\n"
-"Mali postotak e instalirati samo najvanije pakete;\n"
-"dok postotak od %d%% e instalirati koliko god je paketa mogue."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Detaljniji izbor nalazi se u slijedeem koraku."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Odaberite postotak paketa koje elite instalirati"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Odabir grupe paketa"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individualan odabir paketa"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veliina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Lo paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Inaica: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Veliina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Znaaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Ne moete oznaiti ovaj paket budui da nema dovoljno mjesta gdje ga se moe "
"instalirati"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Slijedei paketi e biti instalirani"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Slijedei paketi e biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Ne moete oznaiti/odznaiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Budui da je ovo obvezni paket ne moete ga odznaiti"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Ne moete odznaiti ovaj paket budui da je ve instaliran"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ovaj paket treba nadograditi\n"
"Da li ste sigurni da ga elite odznaiti?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne moete odznaiti ovaj paket budui da ga treba nadograditi"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Prikai automatski odabrane pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instaliraj"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Uitaj/Spremi na disketu"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Dograujem izbor paketa"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Odaberite pakete koje elite instalirati"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Preostalo vrijeme"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Molimo priekajte, Pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4536,17 +4905,17 @@ msgstr ""
"Ukoliko ga nemate, pritisnite Odustani kako bi izbjegli instalaciju sa ovog "
"Cd-Rom-a."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Da ipak nastavim?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Javila se greka prilikom sortiranja paketa:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Pojavila se greka kod instalacije paketa:"
@@ -4619,11 +4988,11 @@ msgstr "Pojavila se greka"
msgid "Do you really want to leave the installation?"
msgstr "Da li zaista elite napustiti instalaciju?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licencni dogovor"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4638,7 +5007,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4857,109 +5226,113 @@ msgstr ""
"Za bilo kakva pitanja o ovom dokumentu, molimo kontaktirajte MandrakeSoft S."
"A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tipkovnica"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Molim, izaberite raspored tipkovnice."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je cijeli popis raspoloivih tipkovnica"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Koji instalacijski razred elite?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instaliraj/Nadogradi"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili nadogradnja?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Preporueno"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Dogradnja"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Samo dogradi pakete"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Molim izaberite vau vrstu mia."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port mia"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Izaberite na kojem serijskom portu je mi prikljuen."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulacija gumbova"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulacija 2 gumba"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulacija 3 gumba"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Podeavam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Podeavam IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Traim particije kako bi pronaao mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Odaberite mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4972,7 +5345,7 @@ msgstr ""
"\n"
"Da li se slaete da izgubite sve particije?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4980,7 +5353,7 @@ msgstr ""
"DiskDrake nije uspio proitati vau particijsku tablice.\n"
"Nastavite o vlastitoj odgovornosti."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4989,76 +5362,79 @@ msgstr ""
"podizanje vaeg sustava, trebati ete napraviti bootstrap particiju u "
"DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Niti jedna root particija nije pronaena da se obavi dogradnja"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Korijenska particija"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Koja je korijenska particija (/) vaeg sustava?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Morate ponovo pokrenuti sustav kako bi se aktivirala promjena particijske "
"tablice"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje elite formatirati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Provjeri za loe blokove?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Stvaram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nema dovoljno swapa za zavretak instalacije, molim dodajte jo"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Traim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Traim dostupne pakete"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Traim pakete koje mogu nadograditi"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Ne moete odznaiti ovaj paket budui da je ve instaliran"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Va sustav nema dovoljno prostora za instalaciju ili dogradnju (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletno (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporueno (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5066,35 +5442,35 @@ msgstr ""
"Molimo izaberite uitivanje ili spremanje izbora paketa na disketu.\n"
"Format je isto kao auto_install napravljene diskete."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Uitaj sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Uitavam sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Odabir paketa"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Umetnite disketu koja sadrava izbor paketa"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Spremi na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Izabrana veliina je vea nego raspoloiv prostor"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tip instalacije"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5102,19 +5478,19 @@ msgstr ""
"Niste izabrali niti jednu grupu paketa\n"
"Izaberite minimalnu instalaciju ako elite"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Sa X-ima"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporueno!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno malena instalacija (posebice bez urpmia)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5125,16 +5501,16 @@ msgstr ""
"Ako imate samo neke od dolje navedenih CDa odznaite one koje nemate i "
"kliknite U redu."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom naslovljen \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5143,23 +5519,23 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Postava nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molim, umetnite Boot disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molim, umetnite Update Modules disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5228,170 +5604,201 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
"Imate mogunost skidanja (downloada) paketa za dogradnju koji su\n"
"izali poslije nego to je distribucija postala raspoloiva.\n"
"\n"
-"Dobiti ete sigurnosne popravke i popravke od greaka, ali trebate imati\n"
-"Internet vezu konfiguriranu za nastavak.\n"
+"Dobit ete sigurnosne popravke i popravke od greaka, ali za nastavak\n"
+"trebate imati podeenu Internet vezu.\n"
"\n"
-"Da li elite nastaviti ?"
+"Da li elite instalirati dogradnju?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web site za dobivanje popisa raspoloivih mirrora"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg elite skinuti pakete"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spajam se na mirror kako bih pribavio popis dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Koja je vaa vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Va hardverski sat namjeten je na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristei NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Posluitelj"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS posluitelj"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nema pisaa"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvunu karticu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije za podeavanje vae zvune "
"kartice"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije pronaena zvuna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumarno"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mi"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Pisac"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvuna kartica"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windowse (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podeavanje root lozinke"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez lozinke"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova lozinka je prejednostavna (lozinka mora sadravati barem %d znakova)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Provjera autentinosti"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Posluitelj"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domena"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Posluitelj"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP Autentifikacija"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Dobavi Windows fontove"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Posluitelj"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5422,19 +5829,19 @@ msgstr ""
"Ako elite napraviti boot disketu za va sustav, ubacite disketu u prvi\n"
" pogon i pritisnite \"U redu\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Prvi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Drugi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Preskoi"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5461,7 +5868,7 @@ msgstr ""
"Da li elite napraviti proizvoljnu boot disketu za va sustav?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5469,29 +5876,34 @@ msgid ""
"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
"because XFS needs a very large driver)."
msgstr ""
+"\n"
+"\n"
+"(UPOZORENJE! Koristite XFS za vau root particiju,\n"
+"stvaranje boot diskete na disketi kapaciteta 1.44 Mb vjerojatno\n"
+"nee uspjeti, jer XFS treba vrlo velik pokretaki program)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "alim, meutim disketni pogon nije dostupan"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Izaberite disketni pogon koji elite koristiti za izradu boot diskete"
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1221
+#, c-format
msgid "Insert a floppy in %s"
msgstr "Umetnite disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Stvaram boot disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5503,11 +5915,11 @@ msgstr ""
"Instalacija e nastaviti, ali ete morati\n"
" koristiti BootX da podignete vae raunalo"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Da li elite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5515,16 +5927,16 @@ msgstr ""
"Greka prilikom instalacije aboot-a, \n"
"probati nasilno instalirati iako to moe unititi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaliranje bootloadera"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Instalacija bootloader-a nije uspjela. Prijavljena je slijedea greska:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5541,18 +5953,17 @@ msgstr ""
" Tada napiite: shut-down\n"
"Pri slijedeem podizanju trebali biste vidjeti prompt bootloadera."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Umetnite praznu disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5562,7 +5973,8 @@ msgstr ""
"\n"
"elite li zaista zavriti?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5573,7 +5985,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5588,17 +6000,22 @@ msgstr ""
"konzultirajte Eratu raspoloivu na\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informacije o konfiguriranju vaeg sustava je raspoloivo u poslije\n"
"instalacijskom poglavlju od Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5612,15 +6029,15 @@ msgstr ""
"\n"
"Moete preferirati da ponovite instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatski"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ponovno prikai"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Spremi odabir paketa"
@@ -5641,50 +6058,30 @@ msgstr "kdesu nedostaje"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "nedostaje consolehelper"
#: ../../interactive.pm_.c:152
msgid "Choose a file"
msgstr "Izaberite datoteku"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molim priekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Proiri stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sami stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prebaci izmeu ravno i grupno sortiranog"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Krivi izbor, pokuajte ponovo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Va izbor? (uobiajeno %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5693,31 +6090,35 @@ msgstr ""
"Unosi koje trebate popuniti:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Va izbor? (0/1, uobiajeno '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Gumb `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Da li elite kliknuti na ovaj gumb? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Va izbor? (uobiajeno `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari za odabir iz (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5727,7 +6128,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"Va izbor? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5736,332 +6137,329 @@ msgstr ""
"=> Obavijest, naziv promijenjen:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ponovno Poalji"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "eka (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Njemaka"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "panjolska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveka"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "vedska"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tipkovnica"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tipkovnica"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaa maina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbejdanska (latinica)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:199
-#, fuzzy
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
-msgstr "Armenska (fonetska)"
+msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
-#, fuzzy
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
-msgstr "Bugarska"
+msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "vicarska (Njemaki raspored)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "vicarska (francuski raspored)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "eka (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Njemaka (bez mrtvih tipaka)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveka)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (vedska)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" raspored)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latin\" raspored)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Maarska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelska (fonetska)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Talijanska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanska (106 tipaka)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejska tipkovnica"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino amerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanska AZERTY (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanska \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvija"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nizozemska"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty raspored)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz raspored)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadska (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunjska (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunjska (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenska"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srpska (irilica)"
-#: ../../keyboard.pm_.c:258
-#, fuzzy
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
-msgstr "Tablica"
+msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tipkovnica"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik tipkovnica"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderna \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US keyboard (internacionalna)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vijetnamska \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinina)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
-msgstr ""
+msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
-msgstr ""
+msgstr "Obe Shift tipke istodobno"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
-msgstr ""
+msgstr "Control i Shift tipke istodobno"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr ""
+msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Ctrl i Alt tipke istodobno"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Alt i Shift tipku istodobno"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menu\" tipka"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
-msgstr ""
+msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Desna \"Windows\" tipka"
#: ../../loopback.pm_.c:32
#, c-format
@@ -6072,7 +6470,31 @@ msgstr "Kruno montiranje %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Ukloni logiki volumen prvo\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonski broj"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatiraj particije"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6114,10 +6536,6 @@ msgstr "1 gumb"
msgid "Generic 2 Button Mouse"
msgstr "Generiki mi s 2 gumba"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generiki"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Kotai"
@@ -6182,38 +6600,54 @@ msgstr "niti jedan"
msgid "No mouse"
msgstr "Nema mia"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Molimo istestirajte mia."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Za aktiviranje mia,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "POMAKNITE VA KOTAI!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Zavri"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Slijedee ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Prijanje"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Proiri stablo"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sami stablo"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Prebaci izmeu ravno i grupno sortiranog"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
@@ -6260,7 +6694,7 @@ msgstr ""
"Nije pronaen niti jedan mreni adapter na vaem sustavu.\n"
"Ne mogu postaviti ovu vrstu veze."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Odaberite mreni meusklop"
@@ -6274,7 +6708,7 @@ msgstr ""
msgid "no network card found"
msgstr "ne mogu pronai niti jednu mrenu karticu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Podeavam mreu"
@@ -6290,15 +6724,15 @@ msgstr ""
"Vae ime raunala bi trebalo biti potpuno-kvalificirano ime raunala,\n"
"kao to je ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Ime raunala"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "arobnjak mrenih postavki"
@@ -6353,7 +6787,7 @@ msgstr "ISDN postavke"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Izaberite vaeg pruatelja Internet usluga.\n"
" Ako nije na popisu odaberite Drugi"
@@ -6372,14 +6806,14 @@ msgstr "Protokol za ostatak svijeta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol za ostatak svijeta \n"
" bez D-kanala (za iznajmljene linije)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Koji protokol elite koristiti ?"
#: ../../network/isdn.pm_.c:199
@@ -6403,7 +6837,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ukoliko imate ISA karticu, vrijednosti na slijedeem zaslonu trebale bi biti "
@@ -6420,13 +6855,13 @@ msgid "Continue"
msgstr "Nastavi"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kakvu ISDN karticu imate?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Pronaao sam ISDN PCI karticu meutim ne znam kojeg je tipa. Molim izaberite "
"vau PCI karticu na slijedeem ekranu."
@@ -6445,47 +6880,47 @@ msgstr "Izaberite serijski port na kojemu se nalazi modem."
msgid "Dialup options"
msgstr "Podesi dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ime veze"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonski broj"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Prijavno ime"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Temeljem skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-zasnovano"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ime domene"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvi DNS posluitelj (opciono)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS posluitelj (opciono)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6493,7 +6928,7 @@ msgstr ""
"\n"
"Moete iskljuiti ili ponovno konfigurirati vau vezu."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6501,11 +6936,11 @@ msgstr ""
"\n"
"Moete ponovno konfigurirati vau vezu."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6513,35 +6948,32 @@ msgstr ""
"\n"
"Moete se spojiti na Internet ili ponovno konfigurirati vau vezu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Niste trenutno spojeni na Internet."
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
-msgstr "Povezan"
+msgstr "Povei"
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
-msgstr "Odspoji..."
+msgstr "Odspoji"
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
-msgstr "Podesi mreu"
+msgstr "Podesi vezu"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internet veza i postava"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada emo podesiti %s vezu."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6560,12 +6992,12 @@ msgstr ""
"\n"
"Pritisnite U redu za nastavak."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Mrene postavke"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6576,9 +7008,9 @@ msgstr ""
"Pritisnite U redu da zadrite postojee postavke, ili Odustani za ponovno "
"konfiguriranje vae mrene/Internet veze.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6589,66 +7021,72 @@ msgstr ""
"Ukoliko ne elite koristiti auto detekciju, odselektirajte kvadrati s "
"potvrdom.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Izaberite profil za konfiguriranje"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Koristi auto detekciju"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertni mod"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Otkrivanje ureaja..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normalna modemska veza"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detektiran na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN veza"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detektirano %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL veza"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detektirano na meusklopu %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kablovska veza"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detektirana kablovska veza"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN veza"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet kartica(e) pronaene"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Izaberite vezu koju elite podesiti"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6658,23 +7096,23 @@ msgstr ""
"Molimo izaberite koji elite koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet veza"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Da li elite pokreniti vau vezu kod svakog podizanja (boot) sustava ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Mrene postavke"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Mrea treba biti ponovno pokrenuta"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6685,7 +7123,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6695,7 +7133,7 @@ msgstr ""
"\n"
"Konfiguracija e sada biti primjenjena na vaem sustavu.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6703,16 +7141,20 @@ msgstr ""
"Nakon to je to napravljeno, preporuamo da ponovno pokrenete vae X\n"
"okruje kako bi izbjegli probleme prilikom promjene imena raunala."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
+"Dolo je do problema tijekom namjetanja. Provjerite vezu putem "
+"net_monitora\n"
+"ili mcca. Ako vaa veza ne radi, moda ete morati ponovno pokrenuti\n"
+"konfiguraciju"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6722,7 +7164,7 @@ msgstr ""
"Jednostavno prihvatite ovaj ureaj konfiguriran.\n"
"Promjena polja nie e prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6732,38 +7174,42 @@ msgstr ""
"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
"tokama (npr. 1.2.3.4)"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Podeavam mreni ureaj %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (upravljaki program %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmaska"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatski IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Pokrenuto pri podizanju"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti oblika 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6775,64 +7221,64 @@ msgstr ""
"primjerice mojeracunalo.odjel.domena.hr.\n"
"Takoer unesite IP adresu gateway raunala ako gateway postoji"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS posluitelj"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "Gateway (npr. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway ureaj"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Postava proxy-a"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Prati id mrene kartice (korisno za laptope)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Postava Interneta"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li elite pokuati spajanje na Internet ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testiram vau vezu..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sustav je sada spojen na Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Zbog sigurnosnih razloga, biti e sada odspojen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6840,111 +7286,116 @@ msgstr ""
"ini se kako sustav nije spojen na internet.\n"
"Probajte ponovno podesiti vau vezu."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Postava Veze"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Molim ispunite ili provjerite vrijednost doljnjeg polja"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Va osobni telefonski broj"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Ime ISP pruatelja (npr. provider.hr)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telef. broj pruatelja"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Pruateljev DNS 1 (opciono)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Pruateljev DNS 2 (opciono)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Odaberite vau zemlju"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Nain biranja"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Brzina"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Vrijeme ekanja veze (u sek)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Korisniko ime"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Korisnika Lozinka"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Proirene particije nisu podrane na ovoj platformi"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Imate rupu u svojoj particijskoj tablici meutim ja je ne mogu iskoristiti.\n"
"Jedino rjeenje je da pomaknete vau primarnu particiju kako bi rupa bila\n"
"odmah do proirenih particija."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Vraanje iz datoteke %s nije uspjelo: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Loa backup datoteka"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Greka prilikom pisanja u datoteku %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6954,188 +7405,186 @@ msgstr ""
"Test za provjeru integriteta podataka je neuspjean. \n"
"To znai da pisanje bilo ega na va disk rezultira sluajnim smeem"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "potrebno"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vano"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "vrlo lijepo"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "lijepo"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "moda"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Nova Generacija"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ispii, Bez Reda"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokalni pisa"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Udaljeni pisa"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Pisa na udaljenom CUPS posluitelju"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Pisa na udaljenom lpd posluitelju"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Mreni pisa (TCP/socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Pisa na SMB/Windows 95/98/NT posluitelju"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Pisa na NetWare posluitelju"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Unesite URI pisaa"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Proslijedi (pipe) na komandu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Nepoznati model"
-#: ../../printer.pm_.c:532
-#, fuzzy
+#: ../../printer.pm_.c:535
msgid "Local Printers"
-msgstr "Lokalni pisa"
+msgstr "Lokalni pisai"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
-msgstr "Udaljeni pisa"
+msgstr "Udaljeni pisai"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
-msgstr ""
+msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
-msgstr ""
+msgstr ", USB pisa \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
+msgstr ", multi-funkcionalan ureaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
-msgstr ""
+msgstr ", multi-funkcionalan ureaj na USBu"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
-msgstr ""
+msgstr ", multi-funkcionalan ureaj na HP JetDirectu"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
-msgstr ""
+msgstr ", multi-funkcionalan ureaj"
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
+#: ../../printer.pm_.c:562
+#, c-format
msgid ", printing to %s"
-msgstr "Greka prilikom pisanja u datoteku %s"
+msgstr ", ispis na %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
+msgstr "na LPD posluitelju \"%s\", pisa \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
+msgstr "na Windows posluitelju \"%s\", dijeli \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
+msgstr "na Novell posluitelju \"%s\", pisa \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
-msgstr ""
+msgstr ", koritenjem komande %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Raw printer (Bez upravljakog programa)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na ovom raunalu)"
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
+#: ../../printer.pm_.c:871
+#, c-format
msgid "On CUPS server \"%s\""
-msgstr "IP CUPS posluitelja"
+msgstr "Na CUPS posluitelju \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Uobiajeno)"
@@ -7148,26 +7597,22 @@ msgid "How is the printer connected?"
msgstr "Kako je pisa povezan?"
#: ../../printerdrake.pm_.c:25
-#, fuzzy
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
"printers will be automatically detected."
msgstr ""
"\n"
-"Pisae na udaljenom CUPS posluitelju ne morate konfigurirati\n"
-"ovdje; ti pisai e biti automatski pronaeni. Molim,\n"
-"izaberite \"Pisa na udaljenom CUPS posluitelju\" u tom sluaju."
+"Pisae na udaljenom CUPS posluitelju ne morate konfiguriratiovdje; ti "
+"pisai e biti automatski pronaeni."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
-msgstr "LAN postavke"
+msgstr "CUPS postavke"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
-msgstr "Udaljeni CUPS posluitelj"
+msgstr "Odredi CUPS posluitelj"
#: ../../printerdrake.pm_.c:71
msgid ""
@@ -7179,6 +7624,13 @@ msgid ""
"to enter the CUPS server IP address and optionally the port number to get "
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
+"Da bi pristupili pisaima na udaljenim CUPS posluiteljima u vaoj "
+"lokalnojmrei ne morate nita namjetati; CUPS posluitelji automatski "
+"obavjetavajuvae raunalo o svojim pisaima. Svi pisai koji su poznati "
+"vaem raunalusu popisani u \"Udaljeni pisai\" odjeljku glavnog prozora "
+"Printerdrakea. Kadava CUPS posluitelj nije u vaoj lokalnoj mrei, morate "
+"unesti IP adresuCUPS posluitelja i, opcionalno, broj porta, da bi dobili "
+"informacije o pisauod posluitelja. Inae, ostavite ova polja praznima."
#: ../../printerdrake.pm_.c:72
msgid ""
@@ -7189,12 +7641,18 @@ msgid ""
"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
+"\n"
+"Obino, CUPS se automatski namjeta prema vaem mrenom okruju, tako "
+"damoete pristupiti pisaima na CUPS posluiteljima u vaoj lokalnoj mrei."
+"Ako ovo ne radi dobro, iskljuite \"Automatsku CUPS konfiguraciju\" i "
+"uredite datoteku /etc/cups/cupsd.conf runo. Nemojte zaboraviti poslije "
+"ponovnopokrenuti CUPS (naredba:\"service cups restart\")."
#: ../../printerdrake.pm_.c:76
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba izgledati poput 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Broj porta bi trebao biti cjelobrojni broj!"
@@ -7202,7 +7660,7 @@ msgstr "Broj porta bi trebao biti cjelobrojni broj!"
msgid "CUPS server IP"
msgstr "IP CUPS posluitelja"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7210,21 +7668,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska CUPS konfiguracija"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Otkrivanje ureaja ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Iskuaj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
-msgstr "Nema pisaa"
+msgstr "Dodaj novi pisa"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7236,15 +7685,24 @@ msgid ""
"you access to all available printer drivers, driver options, and printer "
"connection types."
msgstr ""
+"\n"
+"Dobrodoli u arobnjak za namjetanje pisaa\n"
+"\n"
+"Ovaj arobnjak vam omoguuje da instalirate lokalne ili udaljene pisae "
+"koji\n"
+"e se koristiti s ovog raunala kao i sa drugih raunala u mrei.\n"
+"\n"
+"Pita vas za sve potrebne informacije za namjetanje pisaa i daje vam "
+"pristupsvim dostupnim pokretakim programima za pisae, njihovim opcijama i "
+"vrstamaveza prema pisaima."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokalni pisa"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7261,13 +7719,26 @@ msgid ""
"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
+"\n"
+"Dobrodoli u arobnjak za namjetanje pisaa\n"
+"\n"
+"Ovaj arobnjak e vam pomoi da instalirate pisae spojene na ovo raunalo.\n"
+"\n"
+"Prikljuite svoj pisa(e) u ovo raunalo i ukljuite ga/ih. Stisnite na "
+"\"Dalje\"kada ste spremni, ili na \"Odustani\" ako ne elite sada namjetati "
+"pisa(e).\n"
+"\n"
+"Primjetite da se neka raunala mogu sruiti tijekom automatskog "
+"prepoznavanjapisaa. Iskljuite \"Automatski prepoznaj pisae\" da bi "
+"instalirali pisa bezautomatskog prepoznavanja. Koristite \"Mod za strunjake"
+"\" ili printerdrake kadaelite namjestiti ispis na udaljenom pisau ako ga "
+"printerdrake ne prikaeautomatski."
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
-msgstr "Automatski pronalazak pisaa"
+msgstr "Automatski prepoznaj pisa"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7280,12 +7751,22 @@ msgid ""
"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
"Center."
msgstr ""
+"\n"
+"estitamo, va pisa je sada instaliran i namjeten!\n"
+"\n"
+"Moete pisati koritenjem \"Ispis\" naredbe u vaoj aplikaciji (obino u "
+"\"File\" izborniku).\n"
+"\n"
+"Ako elite dodati, maknuti ili promijeniti ime pisau, ili elite "
+"promijenitipodrazumijevane opcije (ladicu za uvlaenje papira, kakvou "
+"ispisa,...),izaberite \"Pisa\" u \"Hardver\" odjeljku Mandrake kontrolnog "
+"centra."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatski pronalazak pisaa"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7294,234 +7775,269 @@ msgid ""
"\n"
"Do you really want to get your printers auto-detected?"
msgstr ""
+"Printerdrake moe prepoznati vae lokalne paralelne i USB pisae, "
+"aliprimjetite da na nekim sustavima proces automatskog prepoznavanja "
+"MOEZAMRZNUTI VA SUSTAV I OTETITI DATOTENE SUSTAVE! Zato inite to "
+"NAVLASTITI RIZIK!\n"
+"\n"
+"Da li zaista elite automatski prepoznati vae pisae?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Koristi auto detekciju"
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
-msgstr "Ime udaljenog pisaa"
+msgstr "Runo podeavanje pisaa"
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Iskuaj portove"
+
+#: ../../printerdrake.pm_.c:252
+#, c-format
msgid "Detected %s"
-msgstr "detektirano %s"
+msgstr "Detektirano %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
-msgstr ""
+msgstr "Pisa na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
-msgstr ""
+msgstr "USB pisa \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
"printer: /dev/usb/lp1, ...)."
msgstr ""
+"Nije pronaen nijedan lokalni pisa! Za runo instaliranje pisaa upiiteime "
+"ureaja/datoteke u liniju za unos (paralelni portovi:/dev/lp0, /dev/lp1, ...,"
+"odgovara LPT1:, LPT2:, ..., prvi USB pisa: /dev/usb/lp0, drugi USB pisa:/"
+"dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
-msgstr "Unesite URI pisaa"
+msgstr "Morate unijeti ime ureaja ili datoteke!"
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
-msgstr "Lokalni pisa"
+msgstr ""
+"Nije pronaen lokalni pisa!\n"
+"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
+"Mreni pisai se mogu instalirati samo nakon instalacije. Izaberite\"Hardver"
+"\" i potom \"Pisa\" u Mandrake kontrolnom centru."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
+"Da bi instalirali mrene pisae, stisnite \"Odustani\", prebacite se u"
+"\"Strunjak\" mod i ponovno stisnite \"Dodaj novi pisa\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
+"Ovaj pisa je prepoznat, ako to nije onaj kojeg elite podeavati, "
+"upiiteime ureaja/datoteke u liniju za unos."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
+"Ovo je popis svih prepoznatih pisaa. Izaberite kojeg elite podesitiili "
+"upiite ime ureaja/datoteke u liniju za unos"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
"if you prefer a customized printer configuration, turn on \"Manual "
"configuration\"."
msgstr ""
+"Ovaj pisa je prepoznat. Namjetanje pisaa e raditi potpuno automatski.Ako "
+"va pisa nije ispravno prepoznat ili ako biste radije runo "
+"namjetalipisa, ukljuite \"Runo namjetanje\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
"automatically. If your printer was not correctly detected or if you prefer a "
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
+"Ovaj je popis svih prepoznatih pisaa. Izaberite pisa kojeg elite podesiti."
+"Namjetanje pisaa e raditi potpuno automatski.Ako va pisa nije ispravno "
+"prepoznat ili ako biste radije runo namjetalipisa, ukljuite \"Runo "
+"namjetanje\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
+"Izaberite port preko kojeg je va pisa povezan ili upiite ime ureaja/"
+"datotekeu liniju za unos."
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
+msgstr "Izaberite port na kojem se nalazi pisa."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
+" (paralelni portovi:/dev/lp0, /dev/lp1, ...,odgovara LPT1:, LPT2:, ..., prvi "
+"USB pisa: /dev/usb/lp0, drugi USB pisa: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
-msgstr "Unesite URI pisaa"
+msgstr "Morate izabrati/upisati pisa/ureaj!"
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
-msgstr "Postava Interneta"
+msgstr "Runo namjetanje"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
+"Da li je va pisa HPov multi-funkcijski ureaj (OfficeJet, PSC, PhotoSmart,"
+"LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
-msgstr "Instaliram paket %s"
+msgstr "Instaliram HPOJ paket"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
+msgstr "Provjeravam ureaj i namjetam HPOJ ..."
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instaliram paket %s"
+msgid "Installing SANE packages..."
+msgstr "Instaliram SANE paket..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaliram pakete..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
-msgstr ""
+msgstr "Skeniram na vaem HP multi-funkcijskom ureaju"
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "itam bazu pisaa ..."
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skeniram na vaem HP multi-funkcijskom ureaju"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
+msgstr "inim pisa dostupnim CUPSu ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "itam bazu pisaa ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Postavke udaljenog lpd pisaa"
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-"Ukoliko elite koristiti udaljeni lpd red morate unijeti\n"
-"ime ispisnog posluitelja te ime reda na posluitelju\n"
-"na koji elite ispisivati."
+"Ukoliko elite koristiti udaljeni lpd pisa, morate unijetiime ispisnog "
+"posluitelja te ime pisaa na tom posluitelju."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Udaljeno ime raunala"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ime udaljenog pisaa"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nedostaje ime raunala udaljenog pisaa!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Nedostaje ime udaljenog pisaa!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Postavke SMB (Windows 9x/NT) pisaa"
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
-"Za ispis na SMB pisa, trebate navesti\n"
-"ime SMB domaina (Primjetite da moe biti razliit od TCP/IP imena "
-"raunala)\n"
-"i vjerojatno IP adresu posluitelja pisaa, kao i\n"
-"ime dijeljenog resursa za pisa kojem elite pristupiti i bilo koje\n"
-"primjenjivo korisniko ime, lozinku ili informacije o radnoj grupi."
+"Za ispis na SMB pisa, trebate navestiime SMB domaina (Primjetite da moe "
+"biti razliit od TCP/IP imena raunala) i vjerojatno IP adresu ispisnog "
+"posluitelja, kao iime dijeljenog resursa za pisa kojem elite pristupiti i "
+"bilo kojeprimjenjivo korisniko ime, lozinku ili informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB posluitelj"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP SMB posluitelja"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Ime sharea"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Ime posluitelja ili IP posluitelja mora biti naveden!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Ime dijeljenog samba resursa nedostaje!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "SIGURNOSNO UPOZORENJE!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7544,8 +8060,27 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Sada ete namjestiti ispis na Windows korisnikom raunu sa lozinkom. "
+"Zboggreke u arhitekturi Samba klijent softvera, lozinka je stavljena u "
+"istomtekstualnom obliku u komandnoj liniji Samba klijenta koji se koristi "
+"zaslanje ispisnog posla Windows posluitelju. Tako je mogue da si svaki "
+"korisnikna ovom raunalu ispie lozinku na ekranu izdavanje komandi poput "
+"\"psauxwww\".\n"
+"\n"
+"Preporuamo da iskoristite jednu od slijedeih alternativa (u svim "
+"sluajevimamorate provjeriti da samo raunala sa vae lokalne mree imaju "
+"pristup vaemWindows serveru, npr. putem vatrozida):\n"
+"\n"
+"Koristite korisniki raun bez lozinke na vaem Windows posluitelju, kao"
+"\"GUEST\" raun ili posebni raun odreen samo za ispis. Nemojte "
+"micatizatitu lozinkom sa osobnog ili administratorskog rauna.\n"
+"\n"
+"Namjestite va Windows posluitelj da omoguuje pristup pisau preko "
+"lpdprotokola. Zatim namjestite ispis s ovog raunala sa \"%s\" tipom veze "
+"uPrinterdrakeu.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7553,119 +8088,122 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Namjestite va Windows posluitelj da omoguuje pristup pisau preko "
+"IPPprotokola i namjestite ispis s ovog raunala sa \"%s\" tipom veze u "
+"Printerdrakeu.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"Poveite va pisa na Linux posluitelj i dopustite da se vaa "
+"Windowsraunala povezuju na njega kao klijenti.\n"
+"\n"
+"Da li stvarno elite nastaviti namjetati ovaj pisa kao to inite sada?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Postavke NetWare pisaa"
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
-"Za ispis na NetWare pisa, trebate navesti\n"
-"NetWare ime posluitelja pisaa (Primjetite da moe biti razliit od\n"
-"njegovog TCP/IP imena raunala!) kao i ime ispisnog reda za pia koji\n"
-"elite pristupiti kao i primjenjivo korisniko ime i lozinku."
+"Za ispis na NetWare pisa, trebate navestiNetWare ime ispisnog posluitelja "
+"(Primjetite da moe biti razliit odnjegovog TCP/IP imena raunala!) kao i "
+"ime ispisnog reda za pisa kojimelite pristupiti, te neko primjenjivo "
+"korisniko ime i lozinku."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Ispisni posluitelj"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Ime reda pisaa"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Ime NCP posluitelja nedostaje!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Nedostaje ime NCP reda!"
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
-msgstr "Opcije socket pisaa"
+msgstr "Opcije TCP/Socket pisaa"
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
"number is usually 9100, on other servers it can vary. See the manual of your "
"hardware."
msgstr ""
-"Za ispis na socket pisa, trebate navesti \n"
-"ime posluitelja od printera te opciono broj porta."
+"Za ispis na TCP ili socket pisa, trebate navestiime posluitelja pisaa te "
+"opciono broj porta. Na HP JetDirect posluiteljimabroj porta je obino 9100, "
+"na drugim posluiteljima moe biti drugaije.Pogledajte prirunik vaeg "
+"hardvera."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Ime raunala od pisaa"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nedostaje ime raunala od pisaa!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Ureaja pisaa"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
+"Moete izravno odrediti da URI pristupa pisau. URI mora odgovarati oliCUPS "
+"ili Foomatic specifikacijama. Primjetite da nisu svi URI tipovi podrani od "
+"svih spoolera."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Ispravan URI mora biti uneen!"
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-"Svaki pisa treba ime (na primjer lp).\n"
-"Polja opisa i lokacije ne mora biti \n"
-"popunjeno. To su komentari za korisnike."
+"Svaki pisa treba ime (na primjer \"pisa\").Polja opisa i lokacije ne "
+"moraju biti popunjena. To su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Ime pisaa"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Pripremam bazu pisaa ..."
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
-msgstr "Ime udaljenog pisaa"
+msgstr "Model vaeg pisaa"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7679,28 +8217,35 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Printerdrake je usporedio ime modela koje je dobio autodetekcijom s "
+"modelimapopisanim u svojoj bazi podataka da bi naao koji najbolje odgovara. "
+"Ovaj izbormoe biti pogrean, posebice kada va pisa uope nije u bazi "
+"pisaa. Zatoprovjerite da li je izbor toan i stisnite \"Model je toan\" "
+"ako jest, a ako nestisnite \"Runo izaberi model\" da bi mogli runo "
+"izabrati model pisaana slijedeem ekranu.\n"
+"\n"
+"Za va pisa Printerdrake je naao:\n"
+"\n"
+"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
-msgstr "Da li je ovo ispravno?"
+msgstr "Model je toan"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
-msgstr "Ime udaljenog pisaa"
+msgstr "Runo izaberi model"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Izabir modela pisaa"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Kakav model pisaa imate?"
-#: ../../printerdrake.pm_.c:1141
-#, fuzzy
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7710,23 +8255,23 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Molim, provjerite da li je Printerdrake \n"
-"automatski pronaao va model pisaa\n"
-"ispravno. Pronaite ispravan model u\n"
-"popisu ukoliko pokaziva pokazuje a\n"
-"krivi model ili na \"Raw pisa\"."
+"Molim, provjerite da li je Printerdrakeautomatski pronaao va model "
+"pisaaispravno. Pronaite ispravan model upopisu kada pokaziva pokazuje "
+"nakrivi model ili na \"Raw pisa\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
+"Ako va pisa nije prikazan, izaberite kombatibilni (pogledajte prirunik "
+"odpisaa) ili neki slini."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI winprinter konfiguracija"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7735,20 +8280,30 @@ msgid ""
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Namjetate OKI laserski winpisa. Ovi pisai koriste dosta poseban\n"
+"komunikacijski protokol i stoga e raditi samo ako su spojeni na "
+"prviparalelni port. Kada je va pisa spojen na drugi port ili na "
+"kutijuispisnog posluitelja spojite ga na prvi paralelni port prije "
+"ispisaprobne stranice. Inae pisa nee raditi. Vau postavu tipa veze "
+"pokretakiprogram e ignorirati."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguracija"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
"printer to a local port or configure it on the machine where it is connected "
"to."
msgstr ""
+"Pokretaki programi za Inkjet pisae od Lexmarka podravaju samo lokalne "
+"pisae,ne pisae na udaljenim raunalima ili kutijama ispisnog posluitelja. "
+"Spojiteva pisa na lokalni port ili ga namjestite na raunalu u kojeg je "
+"ukljuen."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7760,8 +8315,17 @@ msgid ""
"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
"program."
msgstr ""
+"Da bi mogli ispisivati sa svojim Lexmark inkjetom i ovom postavom, "
+"trebateLexmarkove inkjet pokretake programe za pisae (http://www.lexmark."
+"com/).Otiite na ameriki site i stisnite na \"Drivers\" dugme. Zatim "
+"izaberiteva model i potom \"Linux\" kao operativni sustav. Pokretaki "
+"programi dolazekao RPM paketi ili skripte za ljusku sa interaktivnom "
+"grafikom instalacijom.Ne trebate raditi ovu konfiguraciju iz grafikog "
+"suelja. Odustanite odmahnakon pristajanja na licencu. Zatim ispiite "
+"stranice za namjetanje glavepisaa sa \"lexmarkmaintain\" i podesite "
+"postavke za namjetanje glave saovim programom."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7770,23 +8334,29 @@ msgid ""
"duplex unit, extra trays) are set correctly. Note that with a very high "
"printout quality/resolution printing can get substantially slower."
msgstr ""
+"Podrazumijevane postavke pisaa\n"
+"\n"
+"Trebali biste se uvjeriti da li su veliina stranice, vrsta tinte/"
+"nainispisa (ako je dostupan) i hardverske postavke laserskih pisaa "
+"(memorija,duplex jedinica, dodatne ladice) postavljeni ispravno. Primjetite "
+"dasa vrlo velikom kakvoom ispisa/rezolucijom ispis moe znatno usporiti."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s je izvan dosega!<"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7795,52 +8365,55 @@ msgstr ""
"Da li elite postaviti ovaj pisa (\"%s\")\n"
"kao podrazumijevani pisa?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testne stranice"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
"laser printers with too low memory it can even not come out. In most cases "
"it is enough to print the standard test page."
msgstr ""
+"Izaberite probne stranice koje elite ispisati.\n"
+"Primjetite: foto probna stranica se moe vrlo dugo ispisivati, a na "
+"laserskimpisaima sa malo memorije i uope se ne ispisati. U veini "
+"sluajeva jedovoljno ispisati standardnu probnu stranicu."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Bez testnih stranica"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Ispii"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardna testna stranica"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna stranica (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativna testna stranica (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto testna stranica"
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
-msgstr "Ispisujem probnu stranicu(e)..."
+msgstr "Ne ispii nikakve probne stranice"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Ispisujem probnu stranicu(e)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7855,26 +8428,23 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
"Probna stranica(e) poslana je na pisa.\n"
"Ponekad je potrebno par sekundi prije nego pisa pone s ispisom.\n"
-"Da li sve radi kako treba?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
-msgstr ""
+msgstr "Da li je sve radilo ispravno?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
-msgstr "Nema pisaa"
+msgstr "Raw pisa"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7882,16 +8452,23 @@ msgid ""
"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
"to modify the option settings easily.\n"
msgstr ""
+"Da bi ispisali datoteku iz komandne linije (terminalski prozor) koristiteili "
+"komandu \"%s <datoteka>\" ili grafiki alat za ispis: \"xpp <datoteka>\"ili "
+"\"kprinter <datoteka>\". Grafiki alati vam omoguuju da lako izaberetepisa "
+"i podesite opcije.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Ove komande moete takoer koristiti u \"Printing command\" polju dijalogaza "
+"ispis mnogih aplikacija, ali ovdje ne stavljate ime datoteke jerdatoteku za "
+"ispis dobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7899,50 +8476,66 @@ msgid ""
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
+"\n"
+"\"%s\" komanda dozvoljava da podesite opcije za pojedini posao ispisa.Samo "
+"dodajte eljene postavke u komandnu liniju, npr. \"%s <datoteka>\"."
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
+"Da bi saznali o dostupnim opcijama za trenutni pisa proitajte ili "
+"popisprikazan dolje ili stisnite na \"Popis ispisnih opcija\".%s\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
+"Ovo je popis dostupnih opcija za ispis za trenutni pisa:\n"
+"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
+"Da bi ipisali datoteku iz komandne linije (terminalski prozor) "
+"koristitekomandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Ovu naredbu moete takoer koristiti u \"Printing command\" polju "
+"dijalogamnogih aplikacija. Ali tamo ne upisujete ime datoteke jer datoteku "
+"za ispisdobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
+"Da bi dobili popis opcija dostupnih za trenutni pisa stisnite na "
+"\"Popisispisnih opcija\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
+"Da bi ispisali datoteku iz komandne linije (terminalskog prozora) "
+"koristitenaredbu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7951,8 +8544,13 @@ msgid ""
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
+"Moete takoer koristiti grafiko suelje \"xpdq\" za namjetanje opcijai "
+"upravljanje poslovima ispisa.\n"
+"Ako koristite KDE okruje, imate \"dugme za paniku\", ikonu na radnom stolu,"
+"nazvanu \"ZAUSTAVI pisa!\", koja zaustavlja sve poslove ispisa im "
+"jestisnete. Ovo je korisno kad se, npr., zaglavi papir.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7960,70 +8558,91 @@ msgid ""
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"\"%s\" i \"%s\" naredbe vam takoer omoguuju da podesite opcije za "
+"odreeniposao ispisa. Jednostavno dodajte eljene postavke u komandnu "
+"liniju, npr.\"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1773
#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ispis/skeniranje na \"%s\""
+
+#: ../../printerdrake.pm_.c:1774
+#, c-format
msgid "Printing/Scanning on \"%s\""
-msgstr "Onemoguujem mreu"
+msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ispis/skeniranje na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
+#, c-format
msgid "Printing on the printer \"%s\""
-msgstr "Onemoguujem mreu"
+msgstr "Ispis na pisau \"%s\""
+
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zatvori"
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
-msgstr "Postavke pisaa"
+msgstr "Popis ispisnih opcija"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"Va HP multi-funkcijski ureaj je automatski namjeten za skeniranje. "
+"Sadamoete skenirati sa \"scanimage\" (\"scanimage -d hp:%s\" da odredite "
+"kojiskener, ako ih imate vie) iz komandne linije ili s grafikim sueljima"
+"\"xscanimage\" ili \"xsane\". Ako koristite GIMP, takoer moete "
+"skeniratibiranjem odgovarajue stavke u \"File\"/\"Acquire\" izborniku. "
+"Probajte\"man scanimage\" i \"man sane-hp\" u komandnoj liniji za vie "
+"informacija.\n"
+"\n"
+"Ne koristite \"scannerdrake\" za ovaj ureaj!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "itam CUPS bazu upravljakih programa..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
+msgstr "itam podatke o pisau ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
-msgstr "Postava Interneta"
+msgstr "Prebaci postavke pisaa"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8032,64 +8651,81 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
+"Moete preslikati postavke pisaa koje ste napravili za spooler %s na %s,va "
+"trenutni spooler. Svi konfiguracijski podaci (ime pisaa, opis, lokacija,"
+"vrsta veze i podrazumijevane opcije) su preuzeti, ali ne i poslovi.\n"
+"Ne mogu se svi redovi prebaciti zbog:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
+"CUPS ne podrava pisae na Novell posluiteljima ili pisae koji "
+"aljupodatke u naredbu slobodne forme.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
+"PDQ podrava samo lokalne pisae, udaljene LPD pisae i socket/TCPpisae.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
+msgstr "LPD i LPRng ne podravaju IPP pisae.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
+"Uz to, ovaj program ne moe stvarati redove ili \"foomatic-configure\" sene "
+"moe prebaciti."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
+"\n"
+"Takoer, pisai podeeni sa PPD datotekama od svog proizvoaa ili sanative "
+"CUPS pokretakim programima se ne mogu prebaciti."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
+"\n"
+"Oznaite pisae koje elite prebaciti i stisnite \"Prebaci\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
-msgstr ""
+msgstr "Ne prebacuj pisae"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
-msgstr ""
+msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
+"Pisa \"%s\" ve postoji na %s.\n"
+"Stisnite \"Prebaci\" da prepiete preko njega.\n"
+"Moete i upisati novo ime ili preskoiti ovaj pisa."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Ime pisaa moe sadravati samo slova, brojeve i podvlaku"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8098,63 +8734,62 @@ msgstr ""
"Pisa \"%s\" ve postoji,\n"
"da li zaista elite prepisati njegovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Novo ime pisaa"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
-msgstr ""
+msgid "Transferring %s..."
+msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
+"Prebacili ste va bivi podrazumijevani pisa(\"%s\"), da li bi trebao "
+"bitipodrazumijevani pisa i u novom sustavu %s?"
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "itam CUPS bazu upravljakih programa..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
+msgstr "Osvjeavam padatke o pisau ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
-msgstr "Postavke pisaa"
+msgstr "Postavke udaljenog pisaa"
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Pokreem vau vezu..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
+msgstr "Pokreem mreu ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Podesi mreu"
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
-msgstr "Niste podesili monitor"
+msgstr "Mrea nije podeena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
+"Sada ete podesiti udaljeni pisa. Zahtjeva ispravni pristup mrei, aliona "
+"jo nije podeena. Ako nastavite bez ispravne mree, neete moikoristiti "
+"pisa kojeg sada podeavate. Kako elite nastaviti?"
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
-msgstr "Podeavam mreu"
+msgstr "Nastavi bez podeavanja mree"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8163,35 +8798,39 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
+"Postava mree napravljena tijekom instalacije se ne moe sada pokrenuti."
+"Provjerite da li je mrea dostupna poslije pokretanja sustava i "
+"ispravitepostavke koritenjem Mandrake kontrolnog centra, odjeljak \"Mrea i "
+"Internet\"/\"Veza\", i poslije podesite pisa, takoer iz Mandrake "
+"kontrolnog centra,odjeljak \"Hardver\"/\"Pisa\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
+"Mrea nije pokrenuta. Provjerite postavke i hardver. Zatim probajte "
+"ponovnopodesiti va udaljeni pisa."
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Koji ispisni sustav elite koristiti?"
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
+msgstr "Ponovno pokreem ispisni sutav ..."
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
+#: ../../printerdrake.pm_.c:2065
msgid "high"
-msgstr "Visok"
+msgstr "Visoka"
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
-msgstr "Paranoidan"
+msgstr "Paranoidna"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
-msgstr ""
+msgstr "Instaliram ispisni sustav s %s sigurnosnom razinom."
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8205,13 +8844,20 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
+"Sada ete instalirati ispisni sustav %s na sustav koji radi pod %s "
+"sigurnosnomrazinom.\n"
+"Ovaj ispisni sustav pokree daemon (pozadinski proces) koji eka na "
+"posloveispisa i rjeava ih. Ovaj daemon je dostupan i udaljenim raunalima "
+"prekomree, te je tako mogue mjesto napada. Stoga se na ovoj sigurnosnoj "
+"razinisamo nekoliko izabranih daemona podrazumijevano pokree.\n"
+"\n"
+"Da li stvarno elite namjestiti ispisivanje na ovom raunalu?"
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
-msgstr "Koji ispisni sustav elite koristiti?"
+msgstr "Pokretanje ispisnog sustava prilikom podizanja sustava"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8224,218 +8870,222 @@ msgid ""
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
+"Ispisni sustav (%s) se nee automatski pokretati kada se raunalu pokrene.\n"
+"\n"
+"Mogue je da je automatsko pokretanje iskljueno zbog prebacivanja na "
+"viusigurnosnu razinu, jer je ispisni sustav mogua toka napada.\n"
+"\n"
+"elite li ponovno ukljuiti automatsko podizanje ispisnog sustava?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
-msgstr ""
+msgstr "Provjeravam instalirani softver..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
-msgstr ""
+msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
-msgstr ""
+msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
-msgstr "Odaberite vezu pisaa"
+msgstr "Odaberite spooler pisaa"
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
-msgstr "Koji ispisni sustav elite koristiti?"
+msgstr "Koji ispisni sustav (spooler) elite koristiti?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Podesi pisa"
+msgid "Configuring printer \"%s\"..."
+msgstr "Podeavam pisa \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instaliram paket %s"
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
+msgstr "Instaliram Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Postavke pisaa"
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "itam CUPS bazu upravljakih programa..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
+msgstr "Pripremam PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
-msgstr "Podesi pisa"
+msgstr "Podeavam aplikacije..."
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
-msgstr "Da li elite podesiti pisa?"
+msgstr "Da li elite podesiti ispisivanje?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
-msgstr ""
+msgstr "Ispisni sustav:"
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
-msgstr "Pisac"
+msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
"OpenOffice.org."
msgstr ""
+"Navedeni pisai su podeeni. Dvostruko kliknite na pisa da bi mu "
+"promijenilipostavke; da bi ga odredili za podrazumijevani pisa; da bi "
+"pogledali informacijeo njemu; ili da bi pisa sa udaljenog CUPS posluitelja "
+"uinili dostupnimStarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
+"Navedeni pisai su podeeni. Dvostruko kliknite na pisa da bi mu "
+"promijenilipostavke; da ga odredite za podrazumijevani pisa; ili da bi "
+"pogledaliinformacije o njemu."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
+msgstr "Osvjei popis pisaa (za prikaz svih dostupnih udaljenih CUPS pisaa)"
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
-msgstr "Podesi mreu"
+msgstr "Promijeni ispisni sustav"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Zavri"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
-msgstr "Da li elite iskuati postavu ?"
+msgstr "elite li podesiti neki drugi pisa?"
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
-msgstr "Postavke modema"
+msgstr "Promijeni postavke pisaa"
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2784
+#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
-msgstr "Da li elite iskuati postavu ?"
+msgstr ""
+"Pisa %s\n"
+"to elite promijeniti na ovom pisau?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
-msgstr ""
+msgstr "Napravi!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
-msgstr "Dijeljenje Internet Veze"
+msgstr "Vrsta veze s pisaem"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
-msgstr "Veza pisaa"
+msgstr "Ime pisaa, opis, lokacija"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
-msgstr ""
+msgstr "Proizvoa pisaa, model, pokretaki program"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
-msgstr ""
+msgstr "Proizvoa pisaa, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
-msgstr ""
+msgstr "Odredi ovaj pisa za podrazumijevani"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Dodaj ovaj pisa StarOfficeu/OpenOffice.orgu"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Ukloni ovaj pisa iz StarOfficea/OpenOffice.orga"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
-msgstr "Ispisujem probnu stranicu(e)..."
+msgstr "Ispii probne stranice"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
-msgstr "Da li elite iskuati postavu ?"
+msgstr "Saznajte kako koristiti ovaj pisa"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
-msgstr "Postavke udaljenog pisaa"
+msgstr "Ukloni pisa"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "itam CUPS bazu upravljakih programa..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Uklanjam stari pisa \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Podrazumijevani pisa"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
+msgstr "Pisa \"%s\" je sada odreen za podrazumijevani."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Dodavanje pisaa StarOfficeu/OpenOffice.orgu"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Pisa \"%s\" je uspjeno dodan StarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Nisam uspio dodati \"%s\" StarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Uklanjam pisa iz StarOfficea/OpenOffice.orga"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Pisa \"%s\" je uspjeno uklonjen iz StarOfficea/OpenOffice.orga."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Nisam uspio ukloniti pisa \"%s\" iz StarOfficea/OpenOffice.orga."
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2907
+#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Da li elite ponovno pokrenuti mreu?"
+msgstr "Da li stvarno elite ukloniti pisa \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "itam CUPS bazu upravljakih programa..."
+msgid "Removing printer \"%s\"..."
+msgstr "Uklanjam pisa \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8519,24 +9169,62 @@ msgstr "Lozinke se ne podudaraju. Pokuajte ponovno!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne mogu dodati particiju na _formatirani_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne mogu pisati u datoteku %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid nije uspio"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nije uspio (moda niste instalirali raidtools alate?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Ova razina se treba koristiti sa panjom. Ona ini va sustav mnogo lakim "
+"za koritenje,\n"
+"ali vrlo osjetljiv: ne smije biti koriten za raunala koja su povezana u "
+"mrei ili na Internet. Naime, nema lozinke za pristup."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Sa ovom sigurnosnom razinom, koritenje ovog sustava kao posluitelj postaje "
+"mogue.\n"
+"Sigurnost je sada toliko visoka da se sustav moe koristiti kao posluitelj\n"
+"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vae raunalo "
+"samo klijent na Internetu, bolje da izaberete niu razinu."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcije"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA (Naprednu Linux Zvunu Arhitekturu) zvuni sustav"
@@ -8595,7 +9283,7 @@ msgstr ""
"HardDrake pokree isprobavanje hardware-a, i opciono konfigurira\n"
"novi/promjenjeni hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8671,8 +9359,7 @@ msgstr ""
"Linux Virtualni Posluitelj, koristi se za pravljenje visoko raspoloivog\n"
"posluitelja visokih performansi."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8749,14 +9436,13 @@ msgstr ""
"poput NFS-a ili NIS-a. Portmap posluitelj mora biti pokrenut na raunalima\n"
"koji su posluitelji za protokole koji se slue RPC mehanizmima."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
-"Postfix je Mail Transport Agent, koji je program koji\n"
-"alje mail-ove sa jedne maine na drugu."
+"Postfix je Mail Transport Agent, to je program kojialje mail-ove sa jednog "
+"raunala na drugo."
#: ../../services.pm_.c:67
msgid ""
@@ -8845,33 +9531,29 @@ msgstr "Internet"
#: ../../services.pm_.c:126
msgid "File sharing"
-msgstr ""
+msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
-msgstr "Sistemski mod"
+msgstr "Sustav"
#: ../../services.pm_.c:133
-#, fuzzy
msgid "Remote Administration"
-msgstr "Postavke udaljenog lpd pisaa"
+msgstr "Udaljeno administriranje"
# ../../share/compssUsers
#: ../../services.pm_.c:141
-#, fuzzy
msgid "Database Server"
-msgstr "Baze"
+msgstr "Posluitelj baza podataka"
#: ../../services.pm_.c:170
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr ""
+msgstr "Servisi: %d aktiviran za %d registriran"
#: ../../services.pm_.c:186
-#, fuzzy
msgid "Services"
-msgstr "ureaj"
+msgstr "Servisi"
#: ../../services.pm_.c:198
msgid "running"
@@ -8898,22 +9580,20 @@ msgid "On boot"
msgstr "Pri pokretanju"
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Start"
-msgstr "Status:"
+msgstr "Pokretanje"
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Stop"
-msgstr "Sektor"
+msgstr "Zaustavljanje"
#: ../../share/advertising/00-thanks.pl_.c:9
msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
+msgstr "Hvala vam to ste izabrali Mandrake Linux 8.2"
#: ../../share/advertising/00-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
-msgstr ""
+msgstr "Dobrodoli u Open Source svijet"
#: ../../share/advertising/00-thanks.pl_.c:11
msgid ""
@@ -8921,11 +9601,12 @@ msgid ""
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
+"Uspjeh MandrakeSofta se temelji na principima slobodnog softvera. Vanovi "
+"operativni sustav je rezultat udruenog rada svjetske Linux zajednice"
#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
msgid "Join the Free Software world"
-msgstr "Protokol za ostatak svijeta"
+msgstr "Pridruite se svijetu slobodnog softvera"
#: ../../share/advertising/01-gnu.pl_.c:10
msgid ""
@@ -8933,11 +9614,13 @@ msgid ""
"help others by joining the many discussion forums that you will find in our "
"\"Community\" webpages"
msgstr ""
+"Upoznajte Open Source zajednicu i postanite lanom. Uite, poduavajte "
+"ipomaite drugima uestvovanjem u diskusijama u mnogim forumima koje "
+"etepronai na \"Community\" web stranicama"
#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
msgid "Internet and Messaging"
-msgstr "Internet pristup"
+msgstr "Internet i slanje poruka"
#: ../../share/advertising/02-internet.pl_.c:10
msgid ""
@@ -8946,9 +9629,12 @@ msgid ""
"Konqueror, exchange email & organize your personal information with "
"Evolution and Kmail, and much more"
msgstr ""
+"Mandrake Linux 8.2 prua najbolji softver za pristupanje svemu to "
+"Internetima za ponuditi: surfajte webom i gledajte animacije sa Mozillom i "
+"Koquererom,razmjenjujte emailove i organizirajte vae osobne informacije sa "
+"Evolutionomi Kmailom, i jo mnogo toga"
#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
msgid "Multimedia and Graphics"
msgstr "Multimedija - Grafika"
@@ -8958,6 +9644,10 @@ msgid ""
"the latest software to play music and audio files, edit and organize your "
"images and photos, watch TV and videos, and much more"
msgstr ""
+"Mandrake Linux 8.2 vam omoguuje da potpuno ostvarite "
+"multimedijalnipotencijal vaeg raunala! Koristite najnovije programe za "
+"reprodukcijuglazbe i zvunih datoteka, ureujte i organizirajte slike i "
+"fotografije,gledajte TV i video zapise, i jo mnogo toga"
#: ../../share/advertising/04-develop.pl_.c:9
msgid "Development"
@@ -8969,22 +9659,25 @@ msgid ""
"of the GNU gcc compiler as well as the best Open Source development "
"environments"
msgstr ""
+"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte mo "
+"GNU gcc prevoditelja kao i najbolja Open Source okruja za razvojaplikacija."
#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
-msgstr "Kontrolni Centar"
+msgstr "Mandrake Kontrolni Centar"
#: ../../share/advertising/05-contcenter.pl_.c:10
msgid ""
"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
"customizing and configuring your Mandrake system"
msgstr ""
+"Mandrake Linux 8.2 Kontrolni Centar je mjesto gdje si potpuno "
+"moetepodrediti i podesiti va Mandrake sustav"
#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
msgid "User interfaces"
-msgstr "Mreni meusklop"
+msgstr "Korisnika suelja"
#: ../../share/advertising/06-user.pl_.c:10
msgid ""
@@ -8992,17 +9685,22 @@ msgid ""
"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
"0.8, and the rest"
msgstr ""
+"Mandrake Linux 8.2 ima izbor od 11 razliitih grafikih suelja za radni "
+"stol i prozorne menaere koji ukljuuje GNOME 1.4, KDE 2.2.2, WindowMaker "
+"0.8 i ostale"
#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
msgid "Server Software"
-msgstr "SMB posluitelj"
+msgstr "Posluiteljski softver"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"Uinite od svog raunala moni posluitelj sa samo nekoliko pritisaka na "
+"miu:Web posluitelj, email, vatrozid, router, datoteni i ispisni "
+"posluitelj, ..."
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -9013,10 +9711,12 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
+"Mandrake Linux 8.2 dolazi sa najboljim Open Source igrama - arkade, akcijske,"
+"kartanje, sport, strategije, ..."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -9024,11 +9724,13 @@ msgid ""
"provides free Linux training, as well as a way to test your progress, at "
"MandrakeCampus -- our online training center"
msgstr ""
+"elite li nauiti Linux jednostavno, brzo i besplatno? MandrakeSoftvam "
+"omoguuje besplatnu Linux obuku, kao i nain da provjerite svojnapredak, u "
+"MandrakeCampusu -- naem online centru za obuku"
#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert"
-msgstr "Ekspert"
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -9036,10 +9738,13 @@ msgid ""
"around the corner. And if you're already a Linux veteran, become an \"Expert"
"\" and share your knowledge at our support website"
msgstr ""
+"Kvalitetna podrka od Linux zajednice, kao i od MandrakeSofta, je iza ugla.A "
+"ako ve jeste Linux veteran, postanite \"Strunjak\" i podijelite "
+"svojeznanje na naem websiteu za podrku"
#: ../../share/advertising/11-consul.pl_.c:9
msgid "MandrakeConsulting"
-msgstr ""
+msgstr "MandrakConsulting"
#: ../../share/advertising/11-consul.pl_.c:10
msgid ""
@@ -9048,31 +9753,47 @@ msgid ""
"vast experience as a Linux producer to provide a true IT alternative for "
"your business organization"
msgstr ""
+"Za sve vae IT projekte, nai savjetnici su spremni analizirati vaezahtjeve "
+"i ponuditi konkretno rjeenje. Iskoristite MandrakeSoftovogolemo iskustvo "
+"kao Linux stvaratelja da bi dobili ozbiljnu IT alternativuvaoj poslovnoj "
+"organizaciji"
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
"A full range of Linux solutions, as well as special offers on products and "
"'goodies', are available online at our e-store"
msgstr ""
+"Potpun raspon Linux rjeenja, kao i posebne ponude proizvoda i 'goodiesa', "
+"sudostupni online preko nae e-trgovine"
#: ../../share/advertising/13-Nvert.pl_.c:9
msgid ""
"For more information on MandrakeSoft's Professional Services and commercial "
"offerings, please see the following web page:"
msgstr ""
+"Za vie informacija o MandrakeSoftovim profesionalnim uslugama i "
+"komercijalnimponudama, pogledajte web stranice:"
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
#: ../../standalone.pm_.c:25
-#, fuzzy
msgid "Installing packages..."
-msgstr "Instaliram paket %s"
+msgstr "Instaliram pakete..."
+
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
#: ../../standalone/diskdrake_.c:85
msgid ""
@@ -9082,20 +9803,175 @@ msgstr ""
"Ne mogu proitati vau particijsku tablicu, previe je unitena za mene :(\n"
"Pokuati u sa brisanjem loih particija"
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Prebaci postavke pisaa"
+
+# ../../share/compssUsers
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Posluitelj baza podataka"
+
+# ../../share/compssUsers
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Posluitelj baza podataka"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Posluitelj"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Posluitelj"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pomo"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "Nema TV kartice!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nije povezan"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Obrii"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Izabrao sve"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Podeavam..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ponovno postavi"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Molim, umetnite Boot disketu u pogon %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Disketni pogon nije dostupan"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
+#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
-msgstr "Greka"
+msgstr "Greka!"
#: ../../standalone/drakautoinst_.c:46
#, c-format
msgid "I can't find needed image file `%s'."
-msgstr ""
+msgstr "Ne mogu nai potrebnu datoteku sa slikom '%s'."
#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
msgid "Auto Install Configurator"
-msgstr "Postava nakon instalacije"
+msgstr "Postava automatske instalacije"
#: ../../standalone/drakautoinst_.c:49
msgid ""
@@ -9111,17 +9987,35 @@ msgid ""
"\n"
"Do you want to continue?"
msgstr ""
+"Sada ete instalirati disketu za automatsku instalaciju. Ova mogunost "
+"jedonekle opasna i mora se oprezno koristiti.\n"
+"\n"
+"Sa tom mogunou, moi ete ponoviti instalaciju kako ste je proveli naovom "
+"raunalu, s tim da ete biti interaktivno priupitani u nekim koracima,da bi "
+"promijenili njihove vrijednosti.\n"
+"\n"
+"Za maksimalnu sigurnost, particioniranje i formatiranje se nikad "
+"neeobavljati automatski, to god izabrali prilikom instalacije na ovo "
+"raunalo.\n"
+"\n"
+"elite li nastaviti?"
#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
msgid "Automatic Steps Configuration"
-msgstr "Postava Stila Podizanja"
+msgstr "Postava automatskih koraka"
#: ../../standalone/drakautoinst_.c:72
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
+"Izaberite za svaki korak da li e se ponoviti kao i u vaoj instalaciji, "
+"ilie se izvoditi runo"
+
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Pravim auto instalacijsku disketu"
#: ../../standalone/drakautoinst_.c:145
msgid ""
@@ -9130,770 +10024,834 @@ msgid ""
"\n"
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
+"\n"
+"Dobrodoli.\n"
+"\n"
+"Parametri automatske instalacije su dostupni u odjeljku na lijevoj strani"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "estitke!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
+"Disketa je uspjeno stvorena.\n"
+"Sada moete ponoviti svoju instalaciju"
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
-msgstr "Instaliraj"
+msgstr "Automatska Instalacija"
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
-msgstr "Dodaj korisnika"
+msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
-msgstr "Formatiram loopback datoteku %s"
+msgstr "Ukloni posljednju stavku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
+#: ../../standalone/drakbackup_.c:599
msgid ""
-"***********************************************************************\n"
+"\n"
+" DrakBackup Report \n"
"\n"
msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
"\n"
" DrakBackup Report \n"
"\n"
-msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
"\n"
"\n"
msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
"\n"
+" DrakBackup Daemon Report\n"
"\n"
-"***********************************************************************\n"
"\n"
-msgstr ""
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
"\n"
"\n"
msgstr ""
+"\n"
+" DrakBackup Report detalji\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
-msgstr ""
+msgstr "ukupni progres"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
-msgstr ""
+msgstr "Sigurnosna pohrana sustavskih datoteka"
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
-msgstr "Loa backup datoteka"
+msgstr "Sigurnosna pohrana datoteka na tvrdom disku..."
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
-msgstr "Loa backup datoteka"
+msgstr "Sigurnosna pohrana korisnikih datoteka"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
-msgstr ""
+msgstr "Progres sigurnosne pohrane tvrdog diska"
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
-msgstr "Loa backup datoteka"
+msgstr "Sigurnosna pohrana drugih datoteka"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
+"popis datoteka poslan FTPom : %s\n"
+" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
+"\n"
+"(!) problem sa FTP vezom: nije bilo mogue poslati vae pohranjene "
+"datotekeFTPom.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Greka prilikom itanja datoteke %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
-msgstr "Odabir paketa"
+msgstr "Odabir datoteka"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
-msgstr ""
+msgstr "Izaberi datoteke ili mape i stisni 'Dodaj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
+"\n"
+"Provjerite sve opcije koje trebate.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
+"Ove opcije mogu pohraniti i povratiti sve datoteke u vaoj /etc mapi.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+msgstr "Sigurnosno pohranjivanje vaih sustavskih datoteka ( /etc mapa )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
+msgstr "Koristi inkrementalno pohranjivanje (ne zamjenjuje staru pohranu)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
+msgstr "Izostavi kritine datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
+"S ovom opcijom moi ete povratiti bilo koju inaicu\n"
+"vaeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Odaberite sve korisnike koje elite ukljuiti u pohranu."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
-msgstr ""
+msgstr "Izostavi cache preglednika (browsera)"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
+msgstr "Koristi inkrementalnu pohranu (ne zamjenjuje stare pohrane)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
-msgstr "Ukloni zapis"
+msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
-msgstr "Ukloni Windowse(TM)"
+msgstr "Windowse (FAT32)"
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
-msgstr "Korisniko ime"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1257
#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Koristi FTP vezu za pohranu"
+
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
-msgstr "Molimo istestirajte mia."
+msgstr "Upiite ime hosta ili IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr ""
+msgstr "Upiite mapu na ovom hostu u koju ete staviti pohranu."
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
-msgstr "Molim pokuajte ponovo"
+msgstr "Upiite svoje korisniko ime"
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
-msgstr "Molim pokuajte ponovo"
+msgstr "Upiite svoju lozinku"
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
-msgstr "ponovno unesite lozinku"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN veza"
+msgstr "Zapamti ovu lozinku"
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Odaberite vezu pisaa"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
-msgstr ""
+msgstr "Koristi CD/DVDROM za pohranu"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
-msgstr "Molim izaberite raspored tipkovnice."
+msgstr "Izaberite prostor na CDu"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
-msgstr "Molim kliknite na particiju"
+msgstr "Naznaite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+msgstr "Naznaite da li prethodno elite obrisati va CDRW"
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
-msgstr "Odaberite pakete za instalaciju."
+msgstr ""
+"Naznaite da li elite ukljuiti podizanje instalacije pri\n"
+"dizanju raunala sa CDa."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
+"Upiite ime vaeg CD snimaa\n"
+" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
-msgstr "Loa backup datoteka"
+msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
-msgstr ""
+msgstr "Upiite ime ureaja kojeg ete koristiti za sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Naznaite da li prethodno elite obrisati va CDRW"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
+"Upiite maksimalnu dozvoljenu\n"
+" veliinu za Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Molimo istestirajte mia."
+msgid "Please enter the directory to save to:"
+msgstr "Upiite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
-msgstr "Loa backup datoteka"
+msgstr "Koristi quotu za pohranjene datoteke"
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
-msgstr "Mreni meusklop"
+msgstr "Mrea"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
-msgstr ""
+msgstr "Tvrdi disk / NFS"
+
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Vrsta"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
-msgstr ""
+msgstr "svaki sat"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
-msgstr ""
+msgstr "svaki dan"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
-msgstr ""
+msgstr "svaki tjedan"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
-msgstr ""
+msgstr "svaki mjesec"
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
-msgstr "Korisniko ime"
+msgstr "Koristi daemon"
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr ""
+"Izaberite vremenski razmak izmeu\n"
+"dvije sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
-msgstr "Molim izaberite jezik koji elite koristiti."
+msgstr "Izaberite medij za pohranu."
-#: ../../standalone/drakbackup_.c:1327
+#: ../../standalone/drakbackup_.c:1648
#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Otkrivanje hard diskova"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Korisniko ime"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
+msgstr "Osigurajte da je cron daemon ukljuen u vae servise"
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
-msgstr ""
+msgstr "Ovjde poalji izvjetaj mailom poslije svake pohrane:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
-msgstr ""
+msgstr "to"
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
-msgstr "Kotai"
+msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
-msgstr "Kotai"
+msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
-msgstr "Postavke modula:"
+msgstr "Jo opcija"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
-msgstr "Mrene postavke"
+msgstr "Drakbackup postava"
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Izaberite gdje elite pohranjivati"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
-msgstr ""
+msgstr "na tvrdi disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
-msgstr ""
+msgstr "preko mree"
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Izaberite to elite pohranjivati"
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
-msgstr "Podesi datotene sustave"
+msgstr "Pohrani sustav"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
-msgstr ""
+msgstr "Pohrani korisnike"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
-msgstr ""
+msgstr "Runo izaberi korisnika"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
+"\n"
+"Izvori za pohranu: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
+"\n"
+"- Sustavske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
+"\n"
+"- Korisnike datoteke:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
+"\n"
+"- Druge datoteke:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
+"\n"
+"- Snimi na tvrdi disk u putanju : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Ureaj mia: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"Snimi FTPom na host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
+"\n"
+"Snimi FTPom na host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
+"\t\t korisniko ime: %s\n"
+"\t\t u putanju: %s \n"
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
-msgstr "Opcije"
+msgstr ""
+"\n"
+"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
-msgstr ""
+msgstr "\tIzostavi sustavske datoteke\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
-msgstr ""
+msgstr "\tPohrana koristi tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
-msgstr ""
+msgstr "\tPohrana koristi tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
+"\n"
+"- Daemon (%s) ukljui :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
-msgstr ""
+msgstr "\t-Tvrdi disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
+
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
-msgstr ""
+msgstr "\t-Mreu FTPom.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
-msgstr ""
+msgstr "\t-Mreu SSHom.\n"
+
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Mreu FTPom.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Mreu FTPom.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
+msgstr "Nema postavki, molimo izaberite arobnjaka ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
+"Popis podataka za povrat:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
+"Popis oteenih podataka:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
+msgstr "Molimo ponitite odabir ili ga uklonite idui put"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
-msgstr ""
+msgstr "Pohranjene datoteke su oteene"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
-msgstr ""
+msgstr " Svi vai izabrani podaci su "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
-msgstr ""
+msgstr " Uspjeno povraeni na %s "
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
-msgstr "Mrene postavke"
+msgstr " Povrati postavke "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
-msgstr ""
+msgstr "U redu da bi povratili ostale datoteke"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
+"Popis korisnika za povrat (samo je najnoviji nadnevak vaan za svakog "
+"korisnika)"
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
-msgstr "Loa backup datoteka"
+msgstr "Pohrani sustavske datoteke prije:"
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
-msgstr "Molim izaberite koju vrstu mia koristite."
+msgstr "izaberite nadnevak za povrat"
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
-msgstr "Loa backup datoteka"
+msgstr "Koristi tvrdi disk za pohranu"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Upiite mapu za snimanje:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP veza"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sigurna veza"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr ""
+msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "Upiite mapu u koju ste pohranili podatke"
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
-msgstr "Molim izaberite koju vrstu mia koristite."
+msgstr "Izaberite drugi medij s kojeg ete povratiti podatke"
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
-msgstr "Ostali"
+msgstr "Ostali mediji"
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
-msgstr "Instaliraj sustav"
+msgstr "Povrati sustav"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
-msgstr ""
+msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
-msgstr ""
+msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr ""
+msgstr "izaberi putanju za povrat (umjesto / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
+"Napravi novu sigurnosnu pohranu prije povrata (samo za inkrementalne "
+"pohrane.)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "Ukloni mape korisnika prije povrata."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
-msgstr ""
+msgstr "Povrati sve pohrane"
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
-msgstr "Prilagoeno"
+msgstr "Prilagoena pohrana"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
-msgstr "<- Prijanje"
+msgstr "Prijanje"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
-#, fuzzy
msgid "Save"
-msgstr "Status:"
+msgstr "Snimi"
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
-msgstr "Loa backup datoteka"
+msgstr "Sloi sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
-msgstr "Prilagoeno"
+msgstr "Povrati"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
-msgstr "Slijedee ->"
+msgstr "Slijedee"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
+"Molimo sloite pohranu prije povrata...\n"
+"ili provjerite da je putanja ispravna"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
+"Greka tijekom slanja pote\n"
+" va mail sa izvjetajem nije poslan\n"
+" molimo podesite sendmail"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Izabir instaliranih paketa"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Slijedei paketi e biti instalirani"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
+"Greka tijekom slanja datoteke putem FTPa.\n"
+" Ispravite svoje FTP postavke."
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
-msgstr "Molim izaberite jezik koji elite koristiti."
+msgstr "Izaberite podatke za povrat"
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
-msgstr "Molim izaberite jezik koji elite koristiti."
+msgstr "Izaberite medij za sigurnosnu pohranu..."
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
-msgstr "Molim izaberite jezik koji elite koristiti."
+msgstr "Izaberite podatke koje ete pohraniti..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
+"Nije pronaena datoteka s postavkama \n"
+"pritisnite arobnjaka ili Napredno."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
-msgstr ""
+msgstr "Razvija se ... molimo saekajte."
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
-msgstr "Loa backup datoteka"
+msgstr "Pohrani sustavske datoteke"
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
-msgstr "Loa backup datoteka"
+msgstr "Pohrani korisnike datoteke"
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr "Loa backup datoteka"
+msgstr "Pohrani ostale datoteke"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
-msgstr ""
+msgstr "Ukupni progres"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
-msgstr ""
+msgstr "slanje datoteka FTPom"
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
-msgstr "Otkrivanje ureaja..."
+msgstr "aljem datoteke..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr ""
+msgstr "Popis datoteka koje e biti na CDu."
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
-msgstr "Molimo istestirajte mia."
+msgstr "Upiite brzinu cd snimaa"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
+msgstr "Upiite ime CD snimaa (ex:0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Naznaite elite li da se instalacija sustava moe pokretati sa CDa."
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
-msgstr "Mrene postavke"
+msgstr "Pohrani iz datoteke sa postavkama"
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
-msgstr "Mrene postavke"
+msgstr "Pogledaj postavke sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
-msgstr "LAN postavke"
+msgstr "Postavke arobnjaka"
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
-msgstr "LAN postavke"
+msgstr "Napredne postavke"
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
-msgstr "Podesi datotene sustave"
+msgstr "Pohrani sada"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
-msgstr ""
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9924,8 +10882,36 @@ msgid ""
" \n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+"U ovom koraku Drakbackup e vam omoguiti da promijenite:\n"
+"\n"
+" - Nain saimanja:\n"
+" \n"
+" Ako oznaite bzip2 saimanje, saet ete vae\n"
+" podatke bolje nego sa gzipom (oko 2-10 %).\n"
+" Ova opcija nije podrazumijevano oznaena jer\n"
+" ovaj nain saimanja zathjeva vie vremena (oko 1000% vie).\n"
+" \n"
+" - Nain osvjeavanja pohrane:\n"
+"\n"
+" Ova opcija e osvjeavati pohranu, ali nije ba\n"
+" pretjerano korisna jer se prvo sve mora dekompresirati\n"
+" prije nego to se osvjei.\n"
+" \n"
+" - .backupignore nain:\n"
+"\n"
+" Kao kod cvsa, Drakbackup e ignorirati sve reference\n"
+" iz .backupignore datoteka u svakoj od mapa.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9933,8 +10919,13 @@ msgid ""
" set myhostname or mydomain in /etc/postfix/main.cf\n"
"\n"
msgstr ""
+"\n"
+"Neke greke tijekom slanja pote su uzrokovane \n"
+" loim postavkama postfixa. Da bi ih rijeili, morate\n"
+" namjesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9974,8 +10965,45 @@ msgid ""
"\n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+" - Pohrani sustavske datoteke:\n"
+" \n"
+"\tOva opcija vam omoguuje da pohranite svoju /etc mapu,\n"
+"\tkoja sadri sve datoteke s postavkama. Budite\n"
+"\toprezni tijekom postupka povrata da ne bi prepisali:\n"
+"\t\t/etc/passed \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Pohrani korisnike datoteke: \n"
+"\n"
+"\tOva opcija vam omoguuje da izaberete sve korisnike koje\n"
+"\telite pohraniti.\n"
+"\tDa bi utedjeli prostor na disku, preporuamo da\n"
+"\tizostavite cache web preglednika.\n"
+"\n"
+" - Pohrani ostale datoteke: \n"
+"\n"
+"\tOva opcija vam omoguuje da dodate jo podataka za pohranu.\n"
+"\tSa ovom pohranom nije trenutano mogue izabrati\n"
+"\tinkrementalnu pohranu.\t\t\n"
+" \n"
+" - Inkrementalne pohrane:\n"
+"\n"
+"\tInkrementalna pohrana je najmonija opcija kod\n"
+"\tpohranjivanja. Omoguuje vam da pohranite\n"
+"\tsve svoje podatke prvi put, a potom samo one\n"
+"\tpromijenjene.\n"
+"\tZatim ete moi, prilikom povrata,\n"
+"\tvratiti vae podatke prema odreenom\n"
+"\tnadnevku.\n"
+"\tAko niste izabrali ovu opciju sve\n"
+"\tstare pohrane e biti prebrisane prije svake pohrane.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10002,13 +11030,43 @@ msgid ""
"\n"
"\n"
msgstr ""
+"opis povrata:\n"
+" \n"
+"Samo e se najnoviji nadnevak koristiti, jer je s inkrementalnim \n"
+"pohranama potrebno povratiti stare pohrane jednu po jednu.\n"
+"\n"
+"Dakle, ako ne elite povratiti korisnika, iskljuite sve njegove\n"
+"kuice.\n"
+"\n"
+"Inae, moete izabrati samo jedno od ovog\n"
+"\n"
+" - Inkrementalne pohrane:\n"
+"\n"
+"\tInkrementalna pohrana je najmonija opcija kod\n"
+"\tpohranjivanja. Omoguuje vam da pohranite\n"
+"\tsve svoje podatke prvi put, a potom samo one\n"
+"\tpromijenjene.\n"
+"\tZatim ete moi, prilikom povrata,\n"
+"\tvratiti vae podatke prema odreenom\n"
+"\tnadnevku.\n"
+"\tAko niste izabrali ovu opciju sve\n"
+"\tstare pohrane e biti prebrisane prije svake pohrane.\n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
+" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10024,8 +11082,21 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
+"Ovaj program je besplatni softver; moete ga redistribuirati i/ili "
+"mijenjati\n"
+"pod uvjetima GNU General Public License objavljenje od Free Software\n"
+"Foundationa; ili inaice 2, ili (kako izaberete) neke kasnije inaice.\n"
+"\n"
+"Ovaj program se distribuira u nadi da e biti koristan, ali\n"
+"BEZ IKAKVE GARANCIJE; bez ak i podrazumijevane TRINE GARANCIJE\n"
+"ili POGODNOSTI ZA ODREENU SVRHU. Pogledajte\n"
+"GNU General Public License za vie detalja.\n"
+"\n"
+"Trebali ste dobiti presliku GNU General Public License\n"
+"sa ovim programom; ako ne, piite na Free Software Foundation,\n"
+"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10064,8 +11135,46 @@ msgid ""
"\n"
"\n"
msgstr ""
+"Opis:\n"
+"\n"
+" Drakbackup se koristi za sigurnosnu pohranu vaeg sustava.\n"
+" Tijekom podeavanja moete izabrati: \n"
+"\t- Sustavske datoteke, \n"
+"\t- Korisnike datoteke, \n"
+"\t- Ostale datoteke.\n"
+"\titav va sustav ... i ostale (poput Windows particija)\n"
+"\n"
+" Drakbackup vam omoguuje da pohranite va sustav na:\n"
+"\t- Tvrdi disk.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (s automatskim pokretanjem prilikom podizanja "
+"raunala,\n"
+"spasonosnom opcijom i automatskom instalacijom.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Vrpcu.\n"
+"\n"
+" Drakbackup vam omoguuje da povratite va sustav u\n"
+" izabranu mapu.\n"
+"\n"
+" Podrazumijevano, sve pohrane e biti u\n"
+" /var/lib/drakbackup mapi\n"
+"\n"
+" Datoteka s postavkama:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"\n"
+"Povrat:\n"
+" \n"
+" Tijekom povrata, DrakBackup e ukloniti \n"
+" vau izvornu mapu i potvrditi da li su sve\n"
+" datoteke u pohrani ispravne. Preporuamo \n"
+" da napravite posljednju pohranu prije povrata.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10075,8 +11184,15 @@ msgid ""
"drive before sending it to the server.\n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+"Budite oprezni kada koristite ftp pohranu, jer se samo\n"
+"pohrane koje su ve sloene mogu slati poluitelju.\n"
+"Tako sada trebate sloiti pohranu na va tvrdi disk prije\n"
+"no to je poaljete posluitelju.\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10088,8 +11204,16 @@ msgid ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
msgstr ""
+"\n"
+"Problemi sa povratom pohrane:\n"
+"\n"
+"Tijekom pohrane, drakbackup e provjeriti\n"
+"sve vae datoteke u pohrani prije nego ih povrati.\n"
+"Prije povrata, Drakbackup e ukloniti vau izvornu\n"
+"mapu, i izgubit ete sve podatke. Vano je biti\n"
+"oprezan i ne mijenjati podatke u pohrani runo.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10127,109 +11251,575 @@ msgid ""
" \n"
"\n"
msgstr ""
+"Opis:\n"
+"\n"
+" Drakbackup se koristi za sigurnosnu pohranu vaeg sustava.\n"
+" Tijekom podeavanja moete izabrati: \n"
+"\t- Sustavske datoteke, \n"
+"\t- Korisnike datoteke, \n"
+"\t- Ostale datoteke.\n"
+"\titav va sustav ... i ostale (poput Windows particija)\n"
+"\n"
+" Drakbackup vam omoguuje da pohranite va sustav na:\n"
+"\t- Tvrdi disk.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (s automatskim pokretanjem prilikom podizanja "
+"raunala,\n"
+"spasonosnom opcijom i automatskom instalacijom.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Vrpcu.\n"
+"\n"
+" Drakbackup vam omoguuje da povratite va sustav u\n"
+" izabranu mapu.\n"
+"\n"
+" Podrazumijevano, sve pohrane e biti u\n"
+" /var/lib/drakbackup mapi\n"
+"\n"
+" Datoteka s postavkama:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Povrat:\n"
+" \n"
+" Tijekom povrata, DrakBackup e ukloniti \n"
+" vau izvornu mapu i potvrditi da li su sve\n"
+" datoteke u pohrani ispravne. Preporuamo \n"
+" da napravite posljednju pohranu prije povrata.\n"
+"\n"
+"\n"
#: ../../standalone/drakboot_.c:58
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %s-a nije uspjela. Prijavljena je slijedea greska:"
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+# ../../share/compssUsers
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konzolni Alati"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "na tvrdi disk"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Mi"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Udaljeni pisa"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Ime sharea"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakbug_.c:61
#, fuzzy
-msgid "no fonts found"
-msgstr "ne mogu pronai niti jednu mrenu karticu"
+msgid "Userdrake"
+msgstr "Printerdrake"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakbug_.c:62
#, fuzzy
+msgid "Configuration Wizards"
+msgstr "arobnjak mrenih postavki"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Provjera autentinosti"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Odabir paketa"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Molim priekajte"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post deinstalacija"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshotovi e biti raspoloivi poslije instalaciju u %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Mrene postavke (%d adaptera)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Obrii profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil za obrisati:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novi profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Ime profila kojeg treba stvoriti (novi profil se stvara kao kopija "
+"trenutnog):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Ime raunala: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internet pristup"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tip:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Meusklop:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Molim saekajte"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Podeavanje Internet Pristupa..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN postavke"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Upravljaki program"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Meusklop"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Stanje"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Podesi lokalnu mreu..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Ovdje stisnite za pokretanje arobnjaka ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "arobnjak..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Primjeni"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo priekajte... Primjenjujem konfiguraciju"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Povezan"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nije povezan"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Povei..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Odspoji..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Upozorenje, otkrivena je jo jedna Internet veza, koja moda koristivau "
+"mreu"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemate niti jedan konfigurirani meusklop.\n"
+"Konfigurirajte ga prvo klikanjem na 'Postavljanje'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN postavke"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot protokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Pokrenuto pri podizanju"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Aktiviraj sada"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "Deaktiviraj sada"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Ovo suelje jo nije podeeno.\n"
+"Pokrenite arobnjak za postavu u glavnom prozoru"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemate niti jednu internet vezu.\n"
+"Napravite jednu klikanjem na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Postava Internet veze"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Postava Internet veze"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tip veze: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet kartica"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uporaba: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-2,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Ime modula"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Veliina"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "pravljenje boot diskete"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "uobiajeno"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Greka DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "kernel inaica"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Openito"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspertno podruje"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opcionalni argumenti"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Dodaj modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "prisili"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ako je potrebno"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "izostavi scsi module"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "izostavi raid module"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ukloni modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ispis"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Napravi disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Uvjerite se da je medij\tprisutan za ureaj %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Ne postoji medij za ureaj %s.\n"
+"Molimo ubacite jedan."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne mogu napraviti fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne mogu ispravno zatvoriti mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
+msgid "Search installed fonts"
+msgstr "Trai instalirane fontove"
+
+#: ../../standalone/drakfont_.c:234
+msgid "Unselect fonts installed"
+msgstr "Odselektiraj instalirane fontove"
+
+#: ../../standalone/drakfont_.c:258
+msgid "parse all fonts"
+msgstr "parsiraj sve fontove"
+
+#: ../../standalone/drakfont_.c:261
+msgid "no fonts found"
+msgstr "nisu pronaeni fontovi"
+
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "Gotov"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgstr "nisam mogao nai nikakve fontove na vaim montiranim particijama"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "Ponovno izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
-msgstr ""
+msgstr "nisam mogao nai nijedan font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "Potrai fontove u popisu instaliranih"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr ""
+msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr "Pripremam instalaciju"
+msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "saekajte tijekom ttmkfdira..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
-msgstr ""
+msgstr "Instalacija True Typea gotova"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
-msgstr ""
+msgstr "Pretvaranje fontova"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
-msgstr ""
+msgstr "stvaranje typ1insta"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "Ghostscript reference"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "pretvaranje ttf fontova"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "pretvaranje pfm fontova"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "Potisni privremene datoteke"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
-msgstr ""
+msgstr "Ponovno pokreni XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "Potisni datoteke fontova"
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
-msgstr "ogranii"
+msgstr "Ponovno pokreni xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10237,123 +11827,113 @@ msgid ""
"-You can install the fonts using the normal way. In rare cases, bogus fonts "
"may hang up your X Server."
msgstr ""
+"Prije no to instalirate bilo kakve fontove, provjerite da li ih imate "
+"pravokoristiti i instalirati na va sustav.\n"
+"\n"
+"-Moete instalirati fontove na normalan nain. U rijetkim sluajevima, "
+"lanifontovi e sruiti va X posluitelj."
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
-msgstr "Formatiraj particije"
+msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "Dobavi Windows fontove"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN postavke"
+msgstr "Odinstaliraj fontove"
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
-msgstr "Toka montiranja"
+msgstr "Popis fontova"
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
-msgstr "Izaberite particije koje elite formatirati"
+msgstr "Izaberite aplikacije koje e podravati fontove :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
-msgstr ""
+msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
-msgstr "Ured"
+msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
-msgstr "Prekini"
+msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
-msgstr "Pisac"
+msgstr "Generiki pisa"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "Izaberite datoteku ili mapu fontova i stisnite 'Dodaj'"
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
-msgstr "Instaliraj sustav"
+msgstr "Instalacijski popis"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
-msgstr ""
+msgstr "stisnite ovdje ako ste sigurni"
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
-msgstr ""
+msgstr "ovdje ako niste."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
-msgstr ""
+msgstr "Odselektiraj sve"
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
-msgstr "Odaberite datoteku"
+msgstr "Izabrao sve"
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
-msgstr "Postavke udaljenog pisaa"
+msgstr "Popis za uklanjanje"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
-msgstr "Init poruka"
+msgstr "Poetni testovi"
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
-msgstr "Nema mrenog adaptera na vaem sustavu!"
+msgstr "Kopiraj fontove na va sustav"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "Instaliraj i pretvori fontove"
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
-msgstr "Instaliraj"
+msgstr "Post instalacija"
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
-msgstr "Nema mrenog adaptera na vaem sustavu!"
+msgstr "Ukloni fontove s vaeg sustava"
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
-msgstr "Izlaz iz instalacije"
+msgstr "Post deinstalacija"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet Veze"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje veze prema internetu je trenutno omogueno"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10365,31 +11945,31 @@ msgstr ""
"\n"
"to elite napraviti?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "onemogui"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "odustani"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ponovno postavi"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Onemoguujem posluitelje..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje veze prema Internetu je trenutno onemogueno."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje veze prema Internetu je trenutno onemogueno"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10401,19 +11981,19 @@ msgstr ""
"\n"
"to elite napraviti?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "omogui"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Omoguujem posluitelje..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje veze prema internetu je trenutno omogueno."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10429,21 +12009,21 @@ msgstr ""
"Upozorenje: trebati ete primjenjeni Mreni Ureaj za postavljanje lokalne "
"mree (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Meusklop %s (koristi modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Meusklop %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nema mrenog adaptera na vaem sustavu!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10451,11 +12031,11 @@ msgstr ""
"Nije pronaen niti jedan mreni adapter na vaem sustavu. Molimo pokrenite "
"hardware-ski konfiguracijski alat."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Mreni meusklop"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10470,19 +12050,18 @@ msgstr ""
"\n"
"Postaviti u lokalnu mreu (LAN) sa tim adapterom."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo odaberite koji mreni adapter e biti povezan na vau lokalnu mreu."
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
-msgstr "Niste podesili monitor"
+msgstr "Mreno suelje ve podeeno"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10491,18 +12070,21 @@ msgid ""
"\n"
"You can do it manually but you need to know what you're doing."
msgstr ""
+"Upozorenje, mreni adapter (%s) je ve podeen.\n"
+"\n"
+"elite li automatsku re-konfiguraciju?\n"
+"\n"
+"Moete je podesiti i runo, ali trebate znati to radite."
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
-msgstr "Postava Stila Podizanja"
+msgstr "Automatska rekonfiguracija"
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
-msgstr "Postavke modema"
+msgstr "Pokai trenutne postavke suelja"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10512,8 +12094,14 @@ msgid ""
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
+"Trenutne postavke '%s':\n"
+"\n"
+"Mrea: %s\n"
+"IP adresa: %s\n"
+"IP atribut: %s\n"
+"Pokretaki program: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10524,35 +12112,42 @@ msgid ""
"you.\n"
"\n"
msgstr ""
+"Mogu zadrati vae trenutne postavke i pretpostaviti da ste ve "
+"postaviliDHCP posluitelj; u tom sluaju molim provjerite da li sam tono "
+"proitaoC-Class mreu koju koristite za vau lokalnu mreu; neu je "
+"ponovnokonfigurirati niti dirati postavke vaeg DHCP posluitelja.\n"
+"\n"
+"Inae, mogu vam rekonfigurirati vae suelje i (re)konfiguriratiDHCP "
+"posluitelj.\n"
+"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
-msgstr ""
+msgstr "C-Class lokalna mrea"
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
-msgstr "IP CUPS posluitelja"
+msgstr "IP (ovog) DHCP posluitelja"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "Re-konfiguriraj suelje i DHCP posluitelj"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+msgstr "Lokalna mrea nije zavrila sa '.0', odustajem."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalni LAN adresni konflikt je pronaen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Detektirana je vatrozidna konfiguracija!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10560,20 +12155,20 @@ msgstr ""
"Upozorenje! Postojea vatrozidna konfiguracija je pronaena. Morati ete "
"runo popraviti neke dijelove nakon instalacije."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Podeavam..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podeavam skriptove, instaliram softver, pokreem posluitelje..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problem prilikom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10583,23 +12178,23 @@ msgstr ""
"Sada moete dijeliti vau internet vezu sa drugim raunalima na vaoj "
"lokalnoj mrei, koristei automatsku mrenu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Postavljanje je ve uraeno, ali je trenutno onemogueno."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Postavljanje je ve uraeno, ali je trenutno omogueno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje veze prema internetu nije bilo konfigurirano."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Postavke dijeljenja internet veze"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10614,213 +12209,6 @@ msgstr ""
"\n"
"Kliknite na Postavke ukoliko elite pokreniti arobnjak za postavljanja."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Mrene postavke (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Obrii profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za obrisati:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ime raunala: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internet pristup"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Meusklop:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podeavanje Internet Pristupa..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Upravljaki program"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Meusklop"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi lokalnu mreu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "arobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo priekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Povezan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije povezan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Povei..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odspoji..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate niti jedan konfigurirani meusklop.\n"
-"Konfigurirajte ga prvo klikanjem na 'Postavljanje'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenuto pri podizanju"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktivno"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktivno"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate niti jednu internet vezu.\n"
-"Napravite jednu klikanjem na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Postava Internet veze"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Postava Internet veze"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip veze: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Podeavam sigurnosni nivo"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolni Centar"
@@ -10829,92 +12217,126 @@ msgstr "Kontrolni Centar"
msgid "Choose the tool you want to use"
msgstr "Izaberite alat koje elite koristiti"
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
-msgstr "Kanadska (Quebec)"
+msgstr "Kanada (kabl)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "SAD (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
-msgstr ""
+msgstr "SAD (kabl)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
-msgstr ""
+msgstr "SAD (kabl-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
-msgstr ""
+msgstr "Japan (kabl)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
-msgstr ""
+msgstr "Istona Europa"
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Francuska [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
-msgstr "Islandska"
+msgstr "Irska"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
-msgstr ""
+msgstr "Zapadna Europa"
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
-msgstr "serijski"
+msgstr "Australija"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
-msgstr ""
+msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
-msgstr ""
+msgstr "Juna Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
-msgstr ""
+msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
+"Molim, \n"
+"upiite svoj tv standard i zemlju"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
-msgstr ""
+msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
-msgstr ""
+msgstr "Podruje :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "Pretraivanje TV kanala u tijeku ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
+msgstr "Traim TV kanale"
+
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Pojavila se greka kod instalacije paketa:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:153
+msgid "No TV Card detected!"
+msgstr "Nema TV kartice!"
+
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10925,6 +12347,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"TV kartica nije prepoznata na vaem raunalu. Provjerite da li je Linux-"
+"podrana Video/TV kartica ispravno ukljuena.\n"
+"\n"
+"\n"
+"Moete posjetiti nau bazu hardvera na:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -10957,238 +12387,241 @@ msgstr "Ne mogu pokrenuti ivu nadogradnju !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr ""
+msgstr "Promjena je izvrena, ali da bi imala uinak, morate se odlogirati"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
-msgstr ""
+msgstr "logdrake"
#: ../../standalone/logdrake_.c:95
msgid "Show only for the selected day"
-msgstr ""
+msgstr "Pokai samo izabrani dan"
#: ../../standalone/logdrake_.c:102
-#, fuzzy
msgid "/File/_New"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Nova"
#: ../../standalone/logdrake_.c:102
-#, fuzzy
msgid "<control>N"
-msgstr "<control>Q"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
-#, fuzzy
msgid "/File/_Open"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Otvori"
#: ../../standalone/logdrake_.c:103
-#, fuzzy
msgid "<control>O"
-msgstr "<control>Q"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
-#, fuzzy
msgid "/File/_Save"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Snimi"
#: ../../standalone/logdrake_.c:104
-#, fuzzy
msgid "<control>S"
-msgstr "<control>Q"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr ""
+msgstr "/Datoteka/Snimi_kao"
#: ../../standalone/logdrake_.c:106
-#, fuzzy
msgid "/File/-"
-msgstr "/_Datoteka"
+msgstr "/Datoteka/-"
#: ../../standalone/logdrake_.c:108
-#, fuzzy
msgid "/_Options"
-msgstr "Opcije"
+msgstr "/_Opcije"
#: ../../standalone/logdrake_.c:109
-#, fuzzy
msgid "/Options/Test"
-msgstr "Opcije"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
+msgstr "/Opcije/Proba"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr ""
+msgstr "/Pomo/_O programu"
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
+msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
#: ../../standalone/logdrake_.c:119
msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
+msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
#: ../../standalone/logdrake_.c:173
-#, fuzzy
msgid "User"
-msgstr "Korisniko ime"
+msgstr "Korisnik"
#: ../../standalone/logdrake_.c:174
-#, fuzzy
msgid "Messages"
-msgstr "Testne stranice"
+msgstr "Poruke"
#: ../../standalone/logdrake_.c:175
msgid "Syslog"
-msgstr ""
+msgstr "Syslog"
#: ../../standalone/logdrake_.c:176
msgid "Mandrake Tools Explanations"
-msgstr ""
+msgstr "Objanjenja Mandrake alata"
#: ../../standalone/logdrake_.c:179
msgid "search"
-msgstr ""
+msgstr "potraga"
#: ../../standalone/logdrake_.c:185
msgid "A tool to monitor your logs"
-msgstr ""
+msgstr "Alat za nadziranje logova"
#: ../../standalone/logdrake_.c:186
msgid "Settings"
-msgstr ""
+msgstr "Postavke"
#: ../../standalone/logdrake_.c:191
-#, fuzzy
msgid "matching"
-msgstr "Procjenjujem"
+msgstr "odgovara"
#: ../../standalone/logdrake_.c:192
msgid "but not matching"
-msgstr ""
+msgstr "ali ne odgovara"
#: ../../standalone/logdrake_.c:196
-#, fuzzy
msgid "Choose file"
msgstr "Izaberite datoteku"
#: ../../standalone/logdrake_.c:201
-#, fuzzy
msgid "Calendar"
-msgstr "Standardno"
+msgstr "Kalendar"
#: ../../standalone/logdrake_.c:211
-#, fuzzy
msgid "Content of the file"
-msgstr "Spoji se na Internet"
+msgstr "Sadraj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
-msgstr ""
+msgstr "Upozorenje na potu/SMS"
#: ../../standalone/logdrake_.c:268
-#, fuzzy, c-format
+#, c-format
msgid "please wait, parsing file: %s"
-msgstr "Molimo priekajte, Pripremam instalaciju"
+msgstr "Molim priekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
-msgstr "Postava Interneta"
+msgstr "Postava upozorenja na potu/SMS"
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Dobro doli u pomoni program za konfiguriranje proxy-a.\n"
+"Dobrodoli u pomoni program za postavljanje pote/SMSa.\n"
"\n"
-"Ovdje ete moi postaviti va http i ftp proxi-e\n"
-"sa ili bez logina i lozinke\n"
-
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
+"Ovdje ete moi namjestiti sustav upozoravanja.\n"
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ime domene"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Izlaz"
+msgid "Ftp Server"
+msgstr "NIS Posluitelj"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail posluitelj, Inn news posluitelj"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Posluitelj"
#: ../../standalone/logdrake_.c:422
#, fuzzy
-msgid "service setting"
-msgstr "ureaj"
+msgid "SSH Server"
+msgstr "NIS Posluitelj"
#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servisi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ispisni posluitelj"
+
+#: ../../standalone/logdrake_.c:431
+msgid "service setting"
+msgstr "postavljanje servisa"
+
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
-msgstr ""
+msgstr "Primit ete upozorenje ako jedan od izabranih servisa vie ne radi"
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
-msgstr "Formatiram"
+msgstr "Postavka optereenja"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
+msgstr "Primit ete upozorenje ako je optereenje vee od ove vrijednosti"
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
-msgstr "Postava Interneta"
+msgstr "postava upozoravanja"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
-msgstr ""
+msgstr "Odredite nain na koji e vas sustav upozoravati"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
-msgstr ""
+msgstr "Snimi kao.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Molim izaberite koju vrstu mia koristite."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "niti jedan serial_usb nije pronaen\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliranje tree tipke?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "itam podatke o pisau ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Otkrivanje ureaja ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
-msgstr ""
+msgstr "%s naen na %s, podesi?"
#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
msgid "Select a scanner"
-msgstr "Odaberite grafiku karticu"
+msgstr "Odaberite skener"
#: ../../standalone/scannerdrake_.c:80
#, c-format
msgid "This %s scanner is unsupported"
-msgstr ""
+msgstr "Skener %s nije podran"
#: ../../standalone/scannerdrake_.c:94
#, c-format
@@ -11196,11 +12629,12 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake nije uspio prepoznati va %s skener.\n"
+"Izaberite ureaj gdje je skener ukljuen"
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "Boot ureaj"
+msgstr "Izaberite ureaj"
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -11209,6 +12643,9 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"Ovaj %s skener mora podesiti printerdrake.\n"
+"Moete pokrenuti printerdrake iz Mandrake kontrolnog centra uHardver "
+"odjeljku."
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -11217,6 +12654,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"va %s skener je podeen.\n"
+"Moete sada skenirati dokumente koritenjem ''XSanea'' izMultimedija/Grafika "
+"u aplikacijskom izborniku."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11313,9 +12765,8 @@ msgid "Configure X"
msgstr "Podesi X"
#: ../../steps.pm_.c:34
-#, fuzzy
msgid "Install system updates"
-msgstr "Instaliraj sustav"
+msgstr "Instaliraj dogradnje sustava"
#: ../../steps.pm_.c:35
msgid "Exit install"
@@ -11492,46 +12943,44 @@ msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
#: ../../tinyfirewall.pm_.c:180
msgid "No I don't need DHCP"
-msgstr ""
+msgstr "Ne, ne trebam DHCP"
#: ../../tinyfirewall.pm_.c:180
msgid "Yes I need DHCP"
-msgstr ""
+msgstr "Da, trebam DHCP"
#: ../../tinyfirewall.pm_.c:181
msgid "No I don't need NTP"
-msgstr ""
+msgstr "Ne, ne trebam NTP"
#: ../../tinyfirewall.pm_.c:181
msgid "Yes I need NTP"
-msgstr ""
+msgstr "Da, trebam NTP"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
msgid "Don't Save"
-msgstr ""
+msgstr "Nemoj snimiti"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
#: ../../tinyfirewall.pm_.c:206
msgid "Save & Quit"
-msgstr ""
+msgstr "Snimi & izai"
#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
msgid "Firewall Configuration Wizard"
-msgstr "Vatrozidne postave"
+msgstr "arobnjak za postavu vatrozida"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
-msgstr ""
+msgstr "Ne (sadri ovo s interneta na vatrozidu)"
#: ../../tinyfirewall.pm_.c:200
msgid "Yes (allow this through the firewall)"
-msgstr ""
+msgstr "Da (propusti ovo kroz vatrozid)"
#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
msgid "Please Wait... Verifying installed packages"
-msgstr "Molimo priekajte, Pripremam instalaciju"
+msgstr "Molimo priekajte... Provjeravam instalirane pakete"
#: ../../tinyfirewall.pm_.c:238
#, c-format
@@ -11539,6 +12988,8 @@ msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"Neuspjela instalacija potrebnih paketa : %s i Bastille.\n"
+" Pokuajte ih instalirati runo."
# ../../share/compssUsers
#: ../../share/compssUsers:999
@@ -11634,11 +13085,6 @@ msgstr "Alati za lako podeavanje vaeg raunala"
msgid "Multimedia - Sound"
msgstr "Multimedija - Zvuk"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Pomoni programi"
-
#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentacija"
@@ -11661,9 +13107,8 @@ msgid "Multimedia station"
msgstr "Multimedijska stanica"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Configuration"
-msgstr "LAN postavke"
+msgstr "Postavke"
# ../../share/compssUsers
#: ../../share/compssUsers:999
@@ -11759,11 +13204,6 @@ msgstr ""
# ../../share/compssUsers
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, praenje"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Osobne financije"
@@ -11817,3 +13257,255 @@ msgstr "Multimedija - CD prenje"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck neuspjean sa izlaznim kodom %d ili signalom %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikacija grafike kartice: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Postavke posluitelja"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Niste podesili monitor"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Niste podesili grafiku karticu"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Niste podesili rezoluciju"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "provjerite parametre koje ste unjeli"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Pojavila se greka:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Zatvaram nakon %d sekundi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Da li je ovo ispravno?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Pojavila se greka, provjerite parametre koje ste unjeli"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 posluitelj: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Pokai sve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pripremam X-Window postavu"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "to elite napraviti?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Promijeni monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Promijeni grafiku karticu"
+
+#~ msgid "Change Server options"
+#~ msgstr "Promijeni postavke posluitelja"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Promijeni rezoluciju"
+
+#~ msgid "Show information"
+#~ msgstr "Prikai informacije"
+
+#~ msgid "Test again"
+#~ msgstr "Iskuaj ponovo"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Va multi-funkcijski ureaj je automatski podeen za skeniranje. "
+#~ "Sadamoete skenirati iz komandne linije sa \"ptal-hp %s scan ...\". "
+#~ "Skeniranjepreko grafikog suelja ili iz GIMPa nije jo podrano za va "
+#~ "ureaj. Vieinformacija ete nai u \"/usr/share/doc/hpoj-0.8/ptal-hp-"
+#~ "scan.html\" datoteci u vaem sustavu. Ako imate HP LaserJet 1100 ili 1200 "
+#~ "moeteskenirati samo ako imate instalirane opcije skenera.\n"
+#~ "\n"
+#~ "Ne koristite \"scannerdrake\" za ovaj ureaj!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Koristi tvrdi disk sa daemonom"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Koristi FTP sa daemonom"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Popis paketa za instaliranje"
+
+# ../../share/compssUsers
+#~ msgid "proftpd"
+#~ msgstr "Proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Podeavam sigurnosni nivo"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafika kartica"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Odaberite grafiku karticu"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Odaberite X upravljaki program"
+
+#~ msgid "X driver"
+#~ msgstr "X upravljaki program"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Upozorenje: testiranje grafike kartice moe zamrzunti vae raunalo"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standardni VGA, 640x480 na 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 na 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibilan, 1024x768 na 87 Hz s preplitanjem (bez 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 na 87 Hz s preplitanjem, 800x600 na 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Proireni Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Bez preplitanja SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Visoko frekvencijski SVGA, 1024x768 na 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor koji ide do 1600x1200 na 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor koji ide do 1600x1200 na 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ukupna veliina izabranih grupa je otprilike %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ukoliko elite instalirati manje od ove veliine,\n"
+#~ "izaberite postotak paketa koliko elite instalirati.\n"
+#~ "\n"
+#~ "Mali postotak e instalirati samo najvanije pakete;\n"
+#~ "dok postotak od 100%% e instalirati sve odabrane pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Imate mjesta na vaem disku za samo %d%% paketa.\n"
+#~ "\n"
+#~ "Ukoliko elite instalirati manje od ovoga,\n"
+#~ "izaberite postotak paketa koliko elite instalirati.\n"
+#~ "Mali postotak e instalirati samo najvanije pakete;\n"
+#~ "dok postotak od %d%% e instalirati koliko god je paketa mogue."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Detaljniji izbor nalazi se u slijedeem koraku."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Odaberite postotak paketa koje elite instalirati"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Izaberite sigurnosni nivo"
+
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Kompletno (%dMB)"
+
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Minimum (%dMB)"
+
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Preporueno (%dMB)"
+
+#~ msgid ""
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid "(!) Error during mail sending. \n"
+#~ msgstr "(!) greka tijekom slanja pote.\n"
+
+#~ msgid "USA (bcast)"
+#~ msgstr "SAD (bcast)"
+
+#~ msgid "China (bcast)"
+#~ msgstr "Kina (bcast)"
+
+#~ msgid "Japan (bcast)"
+#~ msgstr "Japan (bcast)"
+
+# ../../share/compssUsers
+#~ msgid "Utilities"
+#~ msgstr "Pomoni programi"
+
+# ../../share/compssUsers
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Arhiviranje, emulatori, praenje"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index bf75c2e01..6b7c865ed 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -9,33 +9,64 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-05 21:55+09:00\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-23 21:55+09:00\n"
"Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n"
"Language-Team: Bahasa Indonesia <id@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.6\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurasikan semua head secara terpisah"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gunakan ekstensi Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurasi kartu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB atau lebih"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Pilih server X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Server X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Konfigurasi head majemuk"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -43,41 +74,44 @@ msgstr ""
"Sistem Anda mendukung konfigurasi head majemuk.\n"
"Apa yg ingin Anda lakukan?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Kartu grafis"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Pilih memori kartu grafis Anda"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Pilih kartu grafis"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Konfigurasi XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Pilih server X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Konfigurasi XFree mana yang Anda inginkan?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Server X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurasikan semua head secara terpisah"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Pilih driver X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Gunakan ekstensi Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Driver X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurasikan hanya kartu \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Konfigurasi XFree mana yang Anda inginkan?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s dengan akselerasi hardware 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -87,32 +121,17 @@ msgstr ""
"XFree %s.\n"
"Kartu Anda ini dapat dipakai pada XFree %s yg punya dukungan baik dalam 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s dengan akselerasi hardware 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
-"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D PERCOBAAN"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -123,31 +142,57 @@ msgstr ""
"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG.\n"
"Kartu Anda ini dapat digunakan XFree %s yang lebih baik dalam 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
+"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalasi driver display)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Konfigurasi XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Pilih memori kartu grafis Anda"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Pilih opsi server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Lakukan perubahan?\n"
+"Konfigurasi sekarang adalah:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Pilih monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Customized"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generik"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Pembuat"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,511 +214,326 @@ msgstr ""
"Anda akan rusak berat.\n"
"Kalau Anda ragu, gunakan setting yang umum."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Laju refresh horisontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Laju refresh vertikal"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor tidak dikonfigurasi"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Kartu grafis belum dikonfigurasi"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolusi belum ditentukan"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Anda ingin tes konfigurasi ini?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Awas: tes kartu grafis ini dapat membekukan komputer Anda"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Tes konfigurasi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 warna (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"coba ubah beberapa parameter"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ribu warna (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ada error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ribu warna (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Tinggalkan dalam %d detik"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 juta warna (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Setting sudah benar?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyar warna (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ada kesalahan, coba ubah beberapa parameter"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolusi"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolusi"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Pilih resolusi dan kedalaman warna"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Kartu grafis: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Tambahan"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Batal"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode Ahli"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Tunjukan seluruhnya"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Anda ingin tes konfigurasi ini?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolusi"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Tes konfigurasi"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Layout Keyboard: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Jenis Mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Device Mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Kartu grafis: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikasi kartu grafis: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memori grafis: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Pilihan kedalaman warna: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusi: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Siap-siap konfigurasikan X "
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Apa yang akan Anda mau?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ubah Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ubah kartu grafis"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ubah Parameter Server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ubah Resolusi"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Lihat info"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
+msgstr "Antarmuka grafis saat startup"
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Tes lagi"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Keluar"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Lakukan perubahan?\n"
-"Konfigurasi sekarang adalah:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X saat startup"
-
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Saya bisa bikin komputermu akan menjalankan X saat booting.\n"
-"Anda mau fasilitas ini ?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 warna (8 bits)"
+"Komputer Anda bisa diset agar menjalankan X saat booting.\n"
+"Anda mau fasilitas ini?"
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ribu warna (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ribu warna (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 juta warna (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyar warna (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB atau lebih"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA Standar, 640x480 pada 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "VGA Super, 800x600 pada 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Kompatibel, 1024x768 pada 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 pada 87 Hz interlaced, 800x600 pada 56 hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 pada 60 Hz, 640x480 pada 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 pada 60 Hz, 800x600 pada 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 pada 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor yang dapat mencapai 1600x1200 pada 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor yang dapat mencapai 1600x1200 pada 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Sektor pertama di partisi boot"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Sektor pertama di drive (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalasi SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
-msgstr "Bootloader akan diinstall di mana?"
+msgstr "Bootloader akan diinstal di mana?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalasi LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO dengan menu teks"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO dengan menu grafis"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Boot dari DOS/windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Parameter Bootloader utama"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader yang hendak digunakan"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalasi Bootloader"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Device boot"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (tidak bisa dipakai pada BIOS kuno)"
+msgstr "LBA (tak bisa dipakai pada BIOS kuno)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
-msgstr "Compact"
+msgstr "Kompak"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
-msgstr "compact"
+msgstr "kompak"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Delay sebelum boot ke image default"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Katasandi"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Katasandi (lagi)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Batasi parameter command line"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "batasi"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Hapus /tmp saat boot"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ukuram RAM yg tepat (saya nemu %d MB)"
+msgstr "Ukuran RAM yg tepat (ditemukan %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Buat multi profil"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Berikan jumlah RAM dalam satuan MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa katasandi"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Silakan ulangi"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Katasandi tidak sama"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Pesan Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Delay Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Timeout Kernel Boot"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Aktifkan boot dari CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Aktifkan boot dari OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Default OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -687,83 +547,83 @@ msgstr ""
"\n"
"Di drive mana Anda boot?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ini adalah entri yang lain lagi.\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Tambah"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Selesai"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modifikasi"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
-msgstr "Tipe entri mana yang hendak ditambahkan"
+msgstr "Tipe entri mana yang hendak ditambahkan?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "OS Lain (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "OS Lain (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
-msgstr "OS Lain (windows...)"
+msgstr "OS Lain (Mindows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Sambung"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Tak aman"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Default"
@@ -795,53 +655,77 @@ msgstr "Anda harus tentukan partisi swap"
msgid "This label is already used"
msgstr "Label ini sudah dipakai"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
-msgstr "Ketemu interface %s %s"
+msgstr "Ditemukan interface %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Anda punya lagi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
-msgstr "Punya %s interface?"
+msgstr "Punya antarmuka %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Tidak"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Lihat info hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
-msgstr "Menginstall driver untuk card %s %s"
+msgstr "Menginstal driver untuk kartu %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Anda dapat memberikan opsi terhadap modul %s.\n"
+"Ingat, semua alamat harus diisikan dengan awalan 0x misalnya '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Silakan beri parameter untuk modul %s ini.\n"
+"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
+"Misalnya, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Pilihan Modul:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
-msgstr "Driver %s mana yang hendak saya coba?"
+msgstr "Driver %s mana yang harus saya coba?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,45 +736,20 @@ msgid ""
"should\n"
"not cause any damage."
msgstr ""
-"Kadangkala, driver %s butuh informasi tambahan agar dapat bekerja normal\n"
-"walaupun kadangkala juga ini tidak perlu. Nah, apakah Anda ingin untuk\n"
-"memberikan parameter tambahan tadi atau biarkan saja drivernya melakukan\n"
-"deteksi sendiri parameternya? Biasanya, autodetek akan membuat kompputer\n"
-"jadi hengki (baca: hang), tapi biasanya sih tak ngerusak hardwarenya."
+"Kadangkala, driver %s butuh info tambahan agar dapat bekerja normal walau\n"
+"biasanya tak perlu. Inginkah Anda memberikan parameter tambahan tadi atau\n"
+"biarkan saja drivernya melakukan deteksi sendiri parameternya? Deteksi\n"
+"otomatis bisa membuat komputer hang), tapi tak merusak."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Probe otomatis"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Tentukan opsi"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Anda dapat memberikan opsi terhadap modul %s.\n"
-"Ingat, semua alamat harus diisikan dengan awalan 0x misalnya '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Silakan beri parameter untuk modul %s ini.\n"
-"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
-"Misalnya, ``io=0x300 irq=8''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Pilihan Modul:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -899,49 +758,53 @@ msgstr ""
"Module %s gagal diload.\n"
"Mau coba lagi dengan parameter yang lain?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "akses ke program X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "akses ke peralatan rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "izinkan \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(sudah ditambahkan %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Katasandi ini terlalu sederhana"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Silakan tulis nama user"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Nama user hanya boleh terdiri dari huruf, angka, `-' dan `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Nama user terlalu panjang"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "User ini sudah ada sebelumnya"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Tambah user"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -950,32 +813,32 @@ msgstr ""
"Masukkan user\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Buat user"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nama Lengkap"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nama user"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -983,87 +846,72 @@ msgstr ""
"Komputer Anda dapat diset agar secara otomatis login dg satu user.\n"
"Anda ingin pakai feature ini?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Pilih user default:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Pilih manajer window yg akan dipakai:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Pilih bahasan yg akan dipakai."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Anda bisa pilih bahasa lain yang akan tersedia setelah install selesai"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Semua"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Izinkan semua user"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Customized"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Tiada pemakaian bersama"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s perlu diupgrade. Anda ingin instal?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Anda dapat mengekspor dg NFS atau Samba. Mana yg Anda ingin"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "Anda dapat mengekspor dg NFS atau Samba. Pilih yg Anda ingin."
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Paket wajib %s hilang"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"Bolehkah user mengekspor direktori di home mereka?\n"
+"Jika diizinkan, user akan dapat meng-klik \"Share\" di konqueror and "
+"nautilus.\n"
+"\n"
+"\"Custom\" memungkinkan tuning masing-masing user.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Batal"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Luncurkan userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1071,31 +919,31 @@ msgstr ""
"Sharing per-user menggunakan grup \"fileshare\". \n"
"Anda dapat memakai userdrake utk menambah user di grup ini."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Selamat Datang di Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Lemah"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standar"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Kuat"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Lebih Kuat"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Pengecut"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -1106,13 +954,13 @@ msgstr ""
"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
"akses katasandi."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr "Katasandi akan diaktifkan, tapi mohon jangan disambungkan ke jaringan."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1120,7 +968,7 @@ msgstr ""
"Ini adalah sekuriti standar, dianjurkan untuk komputer yang akan\n"
"terkoneksi ke Internet sebagai klien."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1128,50 +976,51 @@ msgstr ""
"Sudah ada beberapa batasan, dan beberapa pengecekan otomatis berjalan tiap "
"malam."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Dengan level sekuriti ini, sistem akan dapat digunakan sebagai server.\n"
"Sekuriti kini cukup tinggi untuk dapat melayani koneksi banyak klien.\n"
"Jika mesin Anda hanya berfungsi sebagai klien, pilihlah level lebih rendah."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Sama dengan level sebelumnya, tapi sistem sepenuhnya ditutup.\n"
"Fitur sekuriti maksimum."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Pilih Tingkat Security"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Tingkat keamanan"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Gunakan libsafe utk server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Library penahan serangan string format dan overflow buffer"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Admin Keamanan (login / email)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1196,73 +1045,77 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Selamat datang di sang pemilih sistem operasi, GRUB"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Gunakan tombol %c dan %c untuk memilih entri yang disorot"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tekan enter untuk memboot OS yang terpilih, atau tekan 'e' untuk edit"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "perintah sebelum booting, atau 'c' untuk command line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Entri yang dipilih akan diboot secara otomatis dalam %d detik."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
-msgstr "Waah /boot tak cukup spacenya nih"
+msgstr "tak cukup ruang di /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Anda tak dapat menginstal bootloader pada partisi %s\n"
#: ../../bootlook.pm_.c:46
msgid "no help implemented yet.\n"
-msgstr " belom ada help-nya nih.\n"
+msgstr "belum ada help.\n"
#: ../../bootlook.pm_.c:62
msgid "Boot Style Configuration"
msgstr "Konfigurasi Tipe Boot"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_File"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/File/_Keluar"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1297,12 +1150,12 @@ msgstr "mode Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Manajer Boot: %s. Klik Configure untuk memanggil ahli setup."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurasikan"
@@ -1312,7 +1165,7 @@ msgid "System mode"
msgstr "Mode sistem"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Jalankan X-Window saat sistem dimulai"
#: ../../bootlook.pm_.c:148
@@ -1323,21 +1176,23 @@ msgstr "Tidak, saya tak mau autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ya, saya mau autologin dg (user,desktop) ini"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
#: ../../bootlook.pm_.c:229
#, c-format
msgid "can not open /etc/inittab for reading: %s"
-msgstr "gagal baca file /etc/inittab nih: %s"
+msgstr "gagal baca file /etc/inittab: %s"
#: ../../common.pm_.c:94
msgid "GB"
@@ -1378,7 +1233,7 @@ msgstr "Gagal membuat screenshot sebelum buat partisi"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshot akan tersedia setelah instal di %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Perancis"
@@ -1386,7 +1241,7 @@ msgstr "Perancis"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgia"
@@ -1410,11 +1265,12 @@ msgstr "Norwegia"
msgid "Sweden"
msgstr "Swedia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Belanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Itali"
@@ -1422,7 +1278,7 @@ msgstr "Itali"
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Amerika Serikat"
@@ -1430,8 +1286,8 @@ msgstr "Amerika Serikat"
msgid "Please make a backup of your data first"
msgstr "Lebih dulu buatlah backup data Anda"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Baca dengan seksama!"
@@ -1443,11 +1299,12 @@ msgid ""
msgstr ""
"Jika Anda ingin pakai aboot, sisakan ruang (cukup 2048 sektor) di awal disk"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Ada Kesalahan"
@@ -1455,11 +1312,11 @@ msgstr "Ada Kesalahan"
msgid "Wizard"
msgstr "Wizard"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Pilih aksi"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1471,175 +1328,180 @@ msgstr ""
"Disarankan utk mengubah ukuran partisi ini\n"
"(klik di situ, lalu pilih \"Ubah ukuran\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Silakan pilih partisi"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detil"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "FS terjournal"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Kosong"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Lainnya"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipe filesystem:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Buat"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gunakan ``%s'' saja"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Hapus"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Gunakan ``unmount'' terlebih dahulu"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Setelah mengganti tipe partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Pilih partisi"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Pilih partisi lain"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Keluar"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Ubah ke modus ahli"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ubah ke modus normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Kembali"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Keluar tanpa menyimpan"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Keluar dari program tanpa menyimpan dalam tabel partisi?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ingin simpan modifikasi /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Alokasi otomatis"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Hapus semua"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Tambahan"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Info hard drive"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Semua partisi primary telah digunakan"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Partisi tak dapat ditambah"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Untuk menambahkan partisi, hapus satu agar dapat membuat partisi extended"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Simpan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Kembalikan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Selamatkan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Muat ulang tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Mount otomatis media lepas"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Pilih file"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1647,11 +1509,11 @@ msgstr ""
"Backup tabel partisi tidak memiliki ukuran yg sama\n"
"Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Awas"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1659,248 +1521,260 @@ msgstr ""
"Masukkan disket ke drive\n"
"semua data di disket ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Sedang mencoba menyelamatkan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Info detil"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Posisi mount"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Pilihan"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Ubah ukuran"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Pindah"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Format"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Mount"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Tambahkan ke RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Tambahkan ke LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Unmount"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Hapus dari RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Hapus dari LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ganti RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "digunakan untuk loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Membuat partisi baru"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sektor awal: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ukuran dalam MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipe filesystem: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Posisi mount: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Kesukaan: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Hapus file loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mengubah tipe partisi"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Filesystem apa yang Anda inginkan?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Pindah dari ext2 ke ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
-msgstr "Device loopback %s akan di mount ke mana?"
+msgstr "Device loopback %s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
-msgstr "Mount device %s akan di mount ke mana?"
+msgstr "Mount device %s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Tak bisa unset mount point karena partisi ini sudah digunakan untuk\n"
-"loopback. Hapus dulu loopbacknya kalau mau begitu."
+"loopback. Hapus dulu loopbacknya."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
-msgstr "Sedang menghitung bound filesystem fat"
+msgstr "Sedang menghitung bound filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Sedang mengubah ukuran"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ukuran partisi ini tidak dapat diubah"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
-msgstr "semua data pada partisi ini sebaiknya dibackup dulu"
+msgstr "Semua data pada partisi ini sebaiknya dibackup dulu"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Sehabis meresize partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Pilih ukuran baru"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ukuran baru dalam MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Disk mana yang hendak dipindah?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Sektor mana yang hendak dipindah"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Pindah"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Memindahkan partisi..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Pilih RAID yang ada untuk ditambahkan ke"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "baru"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Pilih LVM yang ada untuk ditambahkan ke"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "nama LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Partisi ini tak bisa dipakai sebagai loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nama file loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Berikan nama file"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "File sudah digunakan loopback yang lain, pilih yang lainnya dong"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "File sudah ada. Gunakan file ini ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opsi mount"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Macam-macam"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "device"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "level"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ukuran chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
-msgstr "Hati-hati nih: operasi ini sangat berbuahayyya"
+msgstr "Hati-hati: operasi ini berbahaya"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Tipe partisi apa yang hendak digunakan?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Perlu paket %s. Anda ingin instal?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1911,7 +1785,7 @@ msgstr ""
"Kalau Anda pakai LILO dan tak jalan, atau Anda tak mau LILO dan tak mau /"
"boot juga"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1922,7 +1796,7 @@ msgstr ""
"dan Anda tidak memiliki partisi /boot. Apabila Anda akan menggunakan lilo\n"
"(boot manager), hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1932,129 +1806,129 @@ msgstr ""
"Sekarang bootloader tak ada yang bisa handel tanpa partisi /boot.\n"
"Jadi hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabel partisi pada drive %s akan ditulis ke disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Sehabis memformat partisi %s semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Sedang memformat"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Sekarang sedang memformat file loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Melakukan format partisi %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sembunyikan file"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Pindah file ke partisi baru"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktori %s telah berisi data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Pindah file ke partisi baru"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Salin %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Hapus %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "partisi %s sekarang jadi %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Device: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS letter: %s (hanya tebakan)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipe: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nama: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Mulai: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Ukuran: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d sampai %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Telah diformat\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Belum diformat\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Telah di-mount\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2063,7 +1937,7 @@ msgstr ""
"File loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2071,27 +1945,27 @@ msgstr ""
"Partisi di-boot secara default\n"
" (untuk MS-DOS boot, bukan untuk lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ukuran chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disk RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nama file loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2100,10 +1974,10 @@ msgid ""
msgstr ""
"\n"
"Mungkin partisi ini adalah \n"
-"partisi driver, jadi sebaiknya\n"
-"jangan diapa-apain deh.\n"
+"partisi Driver, sebaiknya\n"
+"biarkan begitu saja.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2115,62 +1989,62 @@ msgstr ""
"yang khusus digunakan \n"
"oleh sistem dual boot.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Ukuran: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ukuran: %s silinber, %s head, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disk LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisi tipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "pada bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "pada kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Pilihan: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Kunci sandi sistem file"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Pilih kunci sandi sistem file Anda"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Katasandi ini terlalu mudah (harus paling tidak %d karakter)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Kunci sandi tak cocok"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Kunci sandi"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Kunci sandi (lagi)"
@@ -2179,35 +2053,60 @@ msgid "Change type"
msgstr "Ubah tipe"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Klik salah satu media"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Gagal login dg nama user %s (katakunci salah?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Otentikasi Domain Dibutuhkan"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Yang lain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Nama user yang mana"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr "Masukkan nama user, katakunci dan nama domain utk mengakses host ini."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Nama user"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Cari Server"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s proses format dari %s gagal"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "tidak bisa melakukan format %s dengan tipe %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "penyambungan partisi %s ke direktori %s gagal"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck gagal dg kode keluar %d / sinyal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "error melepas mount %s: %s"
@@ -2224,66 +2123,310 @@ msgstr "dengan /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS tak dapat dipakai utk partisi berukuran di bawah 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS tak dapat dipakai utk partisi berukuran di bawah 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Mount point harus diawali dengan /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Partisi dengan titik mount %s sudah ada\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Anda tak dapat menggunakan LVM Logical Volume untuk titik mount %s."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Direktori ini harus ada di filesystem root"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr "Anda perlu filesystem yg benar (ext2, reiserfs) utk titik mount ini\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
+msgstr ""
+"Anda perlu filesystem yg benar (ext2, reiserfs, xfs, atau jfs) utk titik "
+"mount ini\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Anda tak dapat menggunakan sistem file bersandi utk mount point %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Tak cukup ruangan untuk alokasi otomatis"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Tiada yang dikerjakan"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "error membuka file %s untuk ditulisi: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Error - tidak ada device yang valid untuk membuat filesystem baru. Periksa "
"kembali hardware untuk mencari penyebabnya"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Anda tak punya partisi!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Deteksi otomatis"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Takdikenal|Generik"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Takdikenal|CPH05X (bt878) [banyak pembuat]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Takdikenal|CPH06X (bt878) [banyak vendors]"
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+"Pada kartu TV modern umumnya, modul bttv kernel GNU/Linux otomatis "
+"mendeteksi parameter yg benar.\n"
+"Jika kartu Anda tak terdeteksi, pilihlah tuner dan tipe kartu di sini. Pilih "
+"parameter kartu tv Anda jika perlu"
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Model kartu :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "setting PLL :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Jumlah buffer penangkap :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Jumlah buffer penangkap utk penangkapan mmap"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Tipe tuner :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Support radio :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "aktifkan support radio"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Keluar"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Tolong"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Tolong..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_About..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Model kartu :"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Batal"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Kelas media"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Keterangan"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Identifikasi bus"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Lokasi di bus"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Pilih file"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Device gateway"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 tombol"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 versi "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Hardware terdeteksi"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Info"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Jalankan alat konfigurasi"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Konfigurasi modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Pendeteksian sedang berjalan"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Tunggulah"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primer"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekunder"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Jalankan \"%s\"..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "Tentang Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Inilah HardDrake, alat konfigurasi hardware Mandrake.\n"
+"Versi:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Pengarang:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Pertolongan Harddrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2297,7 +2440,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2423,9 +2566,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2744,7 +2886,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2756,9 +2898,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2823,21 +2964,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2853,9 +2993,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Pada tahap ini, pilihlah tempat Mandrake Linux akan diinstal di harddisk.\n"
"Bila harddisk masih kosong / ada sistem operasi lain yg mengisi seluruhnya,\n"
@@ -2931,9 +3071,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3116,38 +3255,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3307,11 +3440,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3362,7 +3495,7 @@ msgstr ""
"Bbrp pertanyaan sulit dijawab jika Anda tak berpengetahuan kuat tentang\n"
"GNU/Linux. Jangan pilih kelas ini kecuali Anda tahu apa yang Anda lakukan."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3386,7 +3519,7 @@ msgstr ""
"\n"
"Klik \"Lagi\" utk menampilkan daftar lengkap keyboard ter-support."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3411,7 +3544,7 @@ msgstr ""
"Anda dapat menginstal banyak bahasa. Setelah Anda selesai memilih tambahan\n"
"bahasa (locale) klik \"OK\" untuk melanjutkan."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3436,7 +3569,7 @@ msgstr ""
"mouse. Gunakan tombol dan roda untuk verifikasi setting. Jika mouse tak\n"
"bekerja baik tekan spasi atau RETURN untuk \"Batal\" dan pilih lagi."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3444,23 +3577,23 @@ msgstr ""
"Pilih port yang benar. Misalnya \"COM1\" di Mindows bernama \"ttyS0\" di \n"
"GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3512,7 +3645,7 @@ msgstr ""
"Jika komputer Anda tak terhubung dengan jaringan terkelola, pilihlah\n"
"\"File lokal\" untuk otentikasi."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3534,7 +3667,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3542,7 +3675,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3602,7 +3735,7 @@ msgstr ""
"membuat masukan baru; dan \"Selesai\" membawa Anda ke tahap instalasi\n"
"berikutnya."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3624,7 +3757,7 @@ msgstr ""
"Anda dapat menghapus entrinya. Tapi untuk bisa masuk ke sistem operasi tsb.\n"
"Anda perlu bootdisk nantinya."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3637,29 +3770,28 @@ msgstr ""
"\n"
"Kalau Anda kurang tahu, pilih saja \"Sektor pertama di drive (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3693,7 +3825,7 @@ msgstr ""
"gunakan lprNG. Jika tidak, pilihlah CUPS sebab lebih mudah dan bekerja baik\n"
"di network."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3718,7 +3850,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sedang mendeteksi perangkat IDE komputer Anda, juga men-scan kartu\n"
@@ -3743,7 +3875,7 @@ msgstr ""
"dari dokumentasi hardware, website pabrik (jika Anda punya akses Internet)\n"
"atau wicrosoft mindows (jika Anda memakai hardware ini di windows)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3753,9 +3885,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3767,7 +3898,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3833,7 +3964,7 @@ msgstr ""
"prompt yaboot. Entri ini juga akan ditandai \"*\" jika Anda menekan [Tab]\n"
"untuk melihat pilihan boot."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3860,9 +3991,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3896,10 +4026,10 @@ msgstr ""
" * OS Standar: Anda dapat memilih OS yang akan diboot secara default saat\n"
"delay Open Firmware terlampaui."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3907,12 +4037,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3951,7 +4080,7 @@ msgstr ""
" * \"Kartu ISDN\": kartu ISDN yg terdeteksi di sistem Anda akan ditampilkan\n"
"di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3961,7 +4090,7 @@ msgstr ""
"Linux Mandrake. Hati-hati, semua data di situ akan hilang dan\n"
"tak dapat dikembalikan seperti semula!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3978,7 +4107,7 @@ msgstr ""
"Pilih \"Batal\" utk membatalkan aksi ini tanpa kehilangan data dan partisi\n"
"yang ada dalam hard drive ini."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3989,12 +4118,12 @@ msgstr ""
"berarti bahwa disket boot Anda tak sinkron dengan media instalasi (buatlah "
"disket boot baru"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Anda harus juga memformat %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4016,20 +4145,20 @@ msgstr ""
"\n"
"Jadi instal server ini?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Tanpa domain NIS, broadcast tak dapat dipakai"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Masukkan disket yang sudah diformat dengan tipe FAT di drive %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
-msgstr "Disketnya belum diformat dengan sistem FAT"
+msgstr "Disket ini tak diformat dengan sistem FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4037,7 +4166,7 @@ msgstr ""
"Untuk menggunakan pilihan paket yang sudah disimpan sebelumnya, bootlah "
"instalasi dengan pilihan ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Error saat membaca file %s"
@@ -4048,7 +4177,7 @@ msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
-"Ada hardwaare di komputer ini yang membutuhkan driver ``proprietary''.\n"
+"Ada hardware di komputer ini yang membutuhkan driver ``proprietary''.\n"
"Anda bisa mencari informasinya di: %s"
#: ../../install_interactive.pm_.c:58
@@ -4067,7 +4196,7 @@ msgstr "Anda harus buat partisi swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4075,59 +4204,59 @@ msgstr ""
"\n"
"Jalan terus?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Anda harus punya partisi FAT termount pada /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Pakai ruang kosong"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Tidak ada cukup ruangan untuk mengalokasikan partisi baru"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Pakai partisi yang sudah ada"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Tidak ada partisi yang bisa digunakan"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Gunakan partisi windows untuk loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Partisi mana yang hendak dipakai oleh Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Pilih ukurannya"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ukuran partisi root dalam MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ukuran partisi swap dalam MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Pakai ruang kosong pada partisi windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "partisi mana yang mau Anda ubah ukurannya?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Sedang menghitung bound filesystem windows"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Sedang menghitung bound sistem file Mindows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4136,12 +4265,15 @@ msgstr ""
"Saya tidak dapat mengubah ukuran partisi FAT ini,\n"
"Ada error ini yang terjadi: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "Partisi windows Anda terlalu terfragmen, jalankan ``defrag'' dulu"
-
#: ../../install_interactive.pm_.c:137
msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
+msgstr "Partisi Mindows Anda terlalu terfragmen, jalankan ``defrag'' dulu"
+
+#: ../../install_interactive.pm_.c:138
+msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful:\n"
@@ -4159,120 +4291,120 @@ msgstr ""
"jalankan scandisk (dan defrag juga) di partisi ini lalu backup datanya.\n"
"Setelah yakin, tekan Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Tentukan ukuran untuk menyimpan windows"
-
#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Tentukan ukuran untuk menyimpan Mindows"
+
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partisi %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Resize FAT gagal: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Tidak ada partisi FAT untuk diubah ukurannya atau untuk digunakan sebagai "
"loopback (atau tidak ada cukup ruangan)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Hapus seluruh disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
-msgstr "Buang windows"
+msgstr "Buang Mindows"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Anda punya beberapa harddisk, yang mana yang ingin di-instal linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SEMUA partisi yang ada beserta data pada drive %s akan hilang"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Lakukan partisi disk secara custom"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "gunakan fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Anda bisa buat partisi %s \n"
-"Habis itu, jangan lupa simpan dengan menekan tombol `w'"
+"Anda kini dapat membuat partisi %s. \n"
+"Ketika selesai jangan lupa simpan dengan menekan tombol `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
-msgstr "Eh, Anda tak punya cukup ruangan pada partisi windows!"
+msgstr "Anda tak punya cukup ruangan pada partisi Mindows!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
-msgstr "Aduh, ruangannya tak cukup nih untuk menginstall"
+msgstr "Tiada ruang untuk instalasi"
#: ../../install_interactive.pm_.c:246
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Wizard partisi DrakX menemukan solusi berikut:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Proses partisi gagal: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
-msgstr "Up-kan Jaringan"
+msgstr "Aktifkan jaringan"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
-msgstr "Matikan Jaringan"
+msgstr "Matikan jaringan"
#: ../../install_steps.pm_.c:76
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
-"Ada error nih, tapi aku tak tahu cara mengatasinya.\n"
-"Lanjutkan saja, tapi resiko tanggung sendiri yah."
+"Ada error, tapi cara mengatasinya tak diketahui.\n"
+"Jalan terus tapi resiko tanggung sendiri."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Lokasi mount %s ada dua"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
"\"\n"
msgstr ""
-"Ada paket yang penting tak benar diinstalnya.\n"
-"Mungkin saja drive cdrom atau cdromnya yang rusak.\n"
-"Cek dulu cdromnya di komputer yang sudah terinstall Linux dengan\n"
-"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\" dulu gih\n"
+"Ada paket penting yang tak benar diinstal.\n"
+"Mungkin drive cdrom atau cdromnya yang rusak.\n"
+"Cek dulu cdromnya di komputer yang sudah terinstal Linux dengan\n"
+"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
-msgstr "Wah maaf nih, tak ada floppy drive yah ?"
+msgstr "Tidak ada floppy drive"
#: ../../install_steps_auto_install.pm_.c:76
#: ../../install_steps_stdio.pm_.c:22
@@ -4280,9 +4412,9 @@ msgstr "Wah maaf nih, tak ada floppy drive yah ?"
msgid "Entering step `%s'\n"
msgstr "Memulai langkah `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4291,200 +4423,152 @@ msgstr ""
"Linux-Mandrake. Cobalah instalasi text. Untuk hal ini silakan\n"
"tekan `F1' saat booting pada CDROM, lalu ketikkan `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
-msgstr "Kelas Instal"
+msgstr "Kelas Instalasi"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Pilihlah kelas instalasi berikut:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukuran total grup yang dipilih kira-kira %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Kalau Anda mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
-"pilih dulu persentase paket yang hendak diinstall.\n"
-"\n"
-"Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
-"dan sebaliknya persentase 100%% akan install semua paket yang tadi sudah\n"
-"dipilih"
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Anda punya hard disk cuma cukup untuk sekitar %d%% dari seluruh paketini.\n"
-"\n"
-"Kalau Anda mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
-"pilih dulu persentase paket yang hendak diinstall.\n"
-"Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
-"dan sebaliknya persentase %d%% akan install paket yang tadi sudah\n"
-"dipilih sebanyak-banyaknya"
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Anda akan bisa memilih dengan lebih lengkap nanti"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Persentase paket yang akan diinstall"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Pilihan Grup Paket"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Pilih paket sendiri"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukuran total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
-msgstr "Paket Error"
+msgstr "Paket buruk"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nama: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versi: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ukuran: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
-msgstr "Derajat: %s\n"
+msgstr "Derajat kepentingan: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Anda tak bisa pilih paket ini sebab tak ada ruang kosong untuk menginstallnya"
+msgstr "Paket ini tak dapat dipilih sebab tak ada ruang untuk menginstalnya"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
-msgstr "Paket ini yang akan diinstall"
+msgstr "Paket berikut akan diinstal"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
-msgstr "Paket berikut adalah yang akan dihapus"
+msgstr "Paket berikut akan dihapus"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Anda tak bisa pilih/buang paket ini"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
-msgstr "Paket ini harus diinstall, tak bisa dibuang"
+msgstr "Paket ini harus diinstal, tak bisa dibuang"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
-msgstr "Anda tak bisa buang paket ini, sebab dia sudah diinstall"
+msgstr "Anda tak bisa buang paket ini, sebab dia sudah diinstal"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Paket ini mesti diupgrade\n"
"Benar tak mau dipilih?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Anda tak bisa buang paket ini. dia mesti diupgrade"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instal"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Muat/Simpan di floppy"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Update pilihan paket"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Instalasi minimal"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Pilih paket yang akan diinstal"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalasi"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Perkiraan"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
-msgstr "Sisa waktu "
+msgstr "Sisa waktu"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Tunggu ya, saya sedang menyiapkan instalasi"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
+msgstr "Tunggu, instalasi sedang disiapkan..."
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
-msgstr "Sedang instal paket %s"
+msgstr "Instalasi paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Terima"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Tolak"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4493,25 +4577,24 @@ msgid ""
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-"Ganti CDROM!\n"
+"Ganti Cd-Rom!\n"
"\n"
-"Silakan masukkan CDROM berlabel \"%s\" di drive Anda dan tekan OK\n"
-"Kalau Anda tak punya CDROM ini, tekan Batal aja untuk membatalkan instalasi "
-"dari CD ini."
+"Masukkan Cd-Rom berlabel \"%s\" ke drive dan tekan Ok. Jika Anda tak punya,\n"
+"tekan Batal untuk menghindari instalasi dari Cd-Rom ini."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
-msgstr "Cuek aja?"
+msgstr "Jalan terus?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
-msgstr "Ada error mengurutkan paket"
+msgstr "Ada error mengurutkan paket:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
-msgstr "Ada error saat menginstall paket"
+msgstr "Ada error saat instalasi paket:"
#: ../../install_steps_interactive.pm_.c:10
msgid ""
@@ -4587,11 +4670,11 @@ msgstr "Ada error"
msgid "Do you really want to leave the installation?"
msgstr "Anda ingin tinggalkan instalasi?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Persetujuan Lisensi"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4606,7 +4689,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4724,7 +4807,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4829,121 +4912,125 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Benarkah Anda menolak lisensi?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Keyboard"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Pilih layout keyboard Anda"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ini adalah daftar keyboard yang tersedia"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kelas instalasi yang anda diinginkan?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instal/Update"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Akan instal atau update?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Disarankan"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ahli"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Upgrade"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Hanya upgrade paket"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Pilihlah tipe mouse Anda."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port Mouse"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Di serial port mana mouse Anda dicolokkan ?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulasi tombol"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
-msgstr "Emulasi 2 tombol"
+msgstr "Emulasi tombol 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulasi tombol 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurasikan card PCMCIA"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
-msgstr "konfigurasi IDE"
+msgstr "Konfigurasi IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Tidak ada partisi"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Mendeteksi partisi untuk mencari lokasi mount"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Pilih lokasi mount"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Saya tak bisa baca tabel partisi, udah hancur lebur nih :(\n"
-"Aku akan coba hapus partisi yg jeleknya (SEMUA DATA akan HILANG).\n"
-"Solusi lainnya adalah jangan biarkan saya memodifikasi tabel partisi.\n"
+"Tabel partisi rusak tak terbaca :(\n"
+"Partisi buruk dapat dicoba dihapus (SEMUA DATA AKAN HILANG!).\n"
+"Solusi lainnya adalah melarang DrakX memodifikasi tabel partisi.\n"
"(pesan errornya adalah %s)\n"
"\n"
"Anda setuju untuk menghapus semua partisi?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4951,7 +5038,7 @@ msgstr ""
"DiskDrake gagal membaca tabel partisi Anda.\n"
"Lanjutkan tapi resiko tanggung sendiri!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4959,73 +5046,74 @@ msgstr ""
"Tiada ruang 1MB utk bootstrap! Instal akan berlanjut, tetapi utk mem-boot "
"sistem, Anda perlu membuat partisi bootstrap di DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
-msgstr "Tiada partisi root tertemukam utk upgrade"
+msgstr "Tiada partisi root ditemukam utk upgrade"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partisi root"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Manakah partisi root (/) di sistem Anda?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Anda harus reboot agar perubahan table partisi dapat berlaku"
+msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Pilih partisi yang akan diformat"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Periksa bad blok?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Melakukan format partisi"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Membuat dan memformat file %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Instalasi tidak bisa diteruskan karena swap kurang, tambahin dong"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Sedang mencari paket yang tersedia"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Instalasi tak dapat diteruskan karena swap kurang, tambahkan"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Mencari paket untuk diupgrade"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Sedang mencari paket yg tersedia dan bangun ulang database rpm..."
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr "Sistem ini tak punya cukup space untuk install atawa upgrade (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Sedang mencari paket yang tersedia..."
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Lengkap (%dMB)"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
+msgstr "Mencari paket untuk diupgrade"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Mencari paket terinstal"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Disarankan (%dMB)"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr "Tak cukup ruang untuk instalasi atau upgrade (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5033,35 +5121,35 @@ msgstr ""
"Pilih muat/simpan seleksi paket di floppy.\n"
"Formatnya sama dengan floppy buatan auto_install."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Muat dari floppy"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Memuat dari floppy"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pilihan paket"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Masukkan disket yg berisi seleksi paket"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Simpan di floppy"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Ukuran terpilih melebihi area yg ada"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tipe instalasi"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5069,19 +5157,19 @@ msgstr ""
"Anda belum memilih grup paket.\n"
"Pilih instalasi minimal yang Anda ingin:"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Dengan X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Dengan dokumentasi dasar (disarankan!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Sungguh instalasi minimal (khususnya tanpa urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5091,41 +5179,41 @@ msgstr ""
"Kalau tak punya sama sekali, click Cancel.\n"
"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Label CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Sedang menyiapkan instalasi"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-"Sedang instal paket %s\n"
+"Instalasi paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
-msgstr "Konfigurasi Instalasi akhir"
+msgstr "Konfigurasi instalasi akhir"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Masukkan floppy boot ke drive %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Masukkan disket Update Modules ke drive %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5190,163 +5278,193 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Anda kini dapat men-download paket terupdate yg dirilis pasca distribusi.\n"
+"Anda kini dapat men-download paket terupdate yg dirilis pasca distribusi,\n"
+"mungkin berisi pembetulan keamanan/kutu.\n"
"\n"
-"Anda akan mendapat pembetulan keamanan/kutu, tapi Anda perlu punya koneksi\n"
-"Internet terkonfigurasi utk melanjutkan.\n"
+"Anda perlu koneksi Internet untuk men-download.\n"
"\n"
"Ingin instal update ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux sedang dihubungi untuk mengambil daftar mirror"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror tempat Anda ingin mengambil paket program"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Saya sedang mencek mirror untuk mengambil daftar paket yang tersedia"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
-msgstr "Pilih timezone Anda"
+msgstr "Pilih zonawaktu Anda"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Jam hardware diset ke GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "sinkronisasi waktu otomatis (dg NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Server NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
-msgstr "server CUPS remote"
+msgstr "Server CUPS remote"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Tidak ada printer"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Anda punya kartu suara ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Jalankan \"sndconfig\" setelah instalasi untuk konfigurasi kartu suara"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Kartu suara tak terdeteksi. Coba \"harddrake\" setelah instalasi"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ringkasan"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
-msgstr "Timezone"
+msgstr "Zonawaktu"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
-msgstr "kartu ISDN"
+msgstr "Kartu ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
-msgstr "Sound Card"
+msgstr "Kartu suara"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
-msgstr "TV Card"
+msgstr "Kartu TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Mindows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "File lokal"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Set katasandi root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
-msgstr "Tak berkatasandi"
+msgstr "Tiada katasandi"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Katasandinya terlalu mudah (harus paling tidak %d karakter)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
-msgstr "Autentikasi"
+msgstr "Otentikasi"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Otentikasi LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Basis dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Otentikasi NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domain NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Otentikasi Mindows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Domain Mindows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Nama Server PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"Agar dapat dijalankan di PDC W2K, Anda perlu minta admin melakukan: C:\\>net "
+"localgroup \"Pre-Windows 2000 Compatible Access\" everyone / add dan reboot "
+"server"
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5364,27 +5482,26 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
-"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
-"SILO di sistem Anda, atau saat sistem operasi lain menghapus SILO, atau "
-"SILO\n"
-"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
-"digunakan\n"
-"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
-"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?"
-
-#: ../../install_steps_interactive.pm_.c:1187
+"tergantung pada bootloader. Ini berguna bila Anda tidak mau menginstal\n"
+"SILO di sistem Anda, atau saat sistem operasi lain menghapus SILO, atau\n"
+"SILO tak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga\n"
+"bisa digunakan dengan image rescue Mandrake, yang memudahkan kita untuk\n"
+"merecover sistem dari kegagalan. Jika Anda mau bikin bootdisk, masukkan\n"
+"disket ke drive pertama dan tekan \"Ok\"."
+
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
-msgstr "Drive Disket Pertama"
+msgstr "Drive disket Pertama"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Drive disket kedua"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Lewatkan"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5400,16 +5517,14 @@ msgid ""
"%s"
msgstr ""
"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
-"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
-"lilo (ataw grub) di sistem Anda, atau saat sistem operasi lain menghapus "
-"lilo, atau lilo\n"
-"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
-"digunakan\n"
-"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
-"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?\n"
+"tergantung pada bootloader. Ini berguna bila Anda tidak mau menginstal\n"
+"lilo (atau grub) di sistem Anda, atau saat sistem operasi lain menghapus\n"
+"lilo, atau lilo tak bisa digunakan pada konfigurasi hardware Anda.\n"
+"Bootdisk ini juga bisa digunakan dengan image rescue Mandrake, yang\n"
+"memudahkan kita untuk merecover sistem dari kegagalan. Ingin buat bootdisk?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5423,28 +5538,28 @@ msgstr ""
"pembuatan bootdisk di disket 1.44 Mb mungkin gagal,\n"
"karena XFS perlu driver amat besar)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Tiada floppy drive tersedia"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pilih drive floppy untuk membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
-msgstr "Masukkan disket di %s"
+msgstr "Masukkan disket ke %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Membuat bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5456,11 +5571,11 @@ msgstr ""
"Instal akan berlanjut, tapi Anda perlu memakai\n"
"BootX utk mem-boot mesin Anda"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Ingin pakai aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5468,15 +5583,15 @@ msgstr ""
"Ada error saat install aboot,\n"
"paksakan instalasi walau merusak partisi awal?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instalasi bootloader"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalasi bootloader gagal. Ada kesalahan berikut:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5493,18 +5608,17 @@ msgstr ""
" kemudian: shut-down\n"
"Anda akan melihat prompt bootloader pada boot selanjutnya."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Masukkan disket kosong di drive %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Lagi buat disket auto install"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5514,7 +5628,8 @@ msgstr ""
"\n"
"Anda ingin keluar sekarang?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5525,7 +5640,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5539,17 +5654,22 @@ msgstr ""
"silakan lihat Errata di:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informasi untuk konfigurasi sistem juga tersedia di \n"
"bab Instalasi akhir di Buku Petunjuk Resmi Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Buat floppy instalasi otomatis"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5563,15 +5683,15 @@ msgstr ""
"\n"
"Mungkin Anda perlu mengulangi instalasinya.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Otomatis"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ulang"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Simpan pilihan paket"
@@ -5598,44 +5718,24 @@ msgstr "consolehelper hilang"
msgid "Choose a file"
msgstr "Pilih file"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Tambahan"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Dasar"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Tunggulah"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Buka Tree"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Tutup Tree"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Togel tampilan rata dan terurut grupnya"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Pilihan salah, silakan ulangi\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Pilihan Anda? (default %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5644,31 +5744,35 @@ msgstr ""
"Entri yang harus Anda penuhi:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Pilihan Anda? (0/1, default %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Tombol `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Anda ingin meng-klik tombol ini? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr "ketikkan `void' untuk entri kosong"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "Pilihan Anda? (default %s%s) "
+msgstr "Pilihan Anda? (default `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Banyak yang dapat dipilih dari (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5678,7 +5782,7 @@ msgstr ""
"atau tekan Enter untuk melanjutkan.\n"
"Pilihan Anda? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5687,327 +5791,327 @@ msgstr ""
"=> Catatan, label berubah:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Kirim ulang"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ceko (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Jerman"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spanyol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finland"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Perancis"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norwegia"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polandia"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusia"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Swedia"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Keyboard UK"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Keyboard US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albania"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenia (lama)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenia (mesintik)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenia (fonetik)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaijan (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulagaria (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazil (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusia"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Swis (layout Jerman)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Swis (layout Prancis)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ceko (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Jerman (tanpa dead key)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Denmark"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegia)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedia)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonia"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (layout \"Rusia\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (layout \"Latin\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Yunani"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungaria"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroasia"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Ibrani"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Ibrani (fonetik)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandia"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itali"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Jepang 106 tombol"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Keyboard Korea"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Amerika Latin"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuania AZERTY (lama)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuania AZERTY (baru)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuania \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lithuania \"phonetic\" QWERTY"
+msgstr "Lithuania \"fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Belanda"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polandia (layout qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polandia (layout qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugis"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
-msgstr "Romanian (qwertz)"
+msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
-msgstr "Romanian (qwerty)"
+msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusia (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Papanketik Muangthai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Papanketik Tajik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turki (model \"F\" tradisional)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turki (model \"Q\" modern)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Keyboard US (internasional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslavia (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "kunci Alt Kanan"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Kedua Shift bersamaan"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
-msgstr "Kunci Control dan Shift bersamaan"
+msgstr "Control dan Shift bersamaan"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr "Kunci CapsLock"
+msgstr "CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr "Kunci Ctrl dan Alt bersamaan"
+msgstr "Ctrl dan Alt bersamaan"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr "Kunci Alt dan Shift bersamaan"
+msgstr "Alt dan Shift bersamaan"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Kunci \"Menu\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Kunci \"Mindows\" kiri"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Kunci \"Mindows\" kanan"
@@ -6020,7 +6124,29 @@ msgstr "Mount melingkar %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Hapus dulu volume logiknya\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "nomor"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d bilangan terpisah koma\""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d string terpisah koma"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "bilangan terpisah koma"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "string terpisah koma"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr "Support PCMCIA tak ada lagi utk kernel 2.2, pakailah kernel 2.4."
@@ -6061,13 +6187,9 @@ msgstr "1 tombol"
msgid "Generic 2 Button Mouse"
msgstr "Mouse Generik 2 Tombol"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generik"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
-msgstr "wheel"
+msgstr "Wheel"
#: ../../mouse.pm_.c:49
msgid "serial"
@@ -6129,38 +6251,54 @@ msgstr "tiada"
msgid "No mouse"
msgstr "Tidak pakai mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
-msgstr "Silakan di test mousenya"
+msgstr "Silakan tes mouse Anda"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Untuk mengaktifkan mouse,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr "gerakan rodanya!"
+msgstr "gerakkan rodanya!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Selesai"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Lanjutkan ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Tahap sebelumnya"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Sudah sesuai?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Buka Tree"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Tutup Tree"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Togel tampilan rata dan terurut grupnya"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Hubungan ke Internet"
@@ -6205,9 +6343,9 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
"Tidak ada adapter jaringan ethernet yang terdeteksi di sistem ini.\n"
-"Saya jadinya tidak dapat mengkonfigurasikan tipe koneksi ini deh."
+"Tipe koneksi ini tak dapat diset up."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Pilih interface jaringan"
@@ -6218,9 +6356,9 @@ msgstr "Pilih adapter jaringan yang akan digunakan untuk terhubung ke Internet"
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
-msgstr "Tidak ada card network ya?"
+msgstr "kartu jaringan tak ditemukan"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigureasi jaringan"
@@ -6231,20 +6369,19 @@ msgid ""
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Masukkan nama komputernya karena ada server DHCP yang mengharuskan adanya "
-"hostname ini.\n"
+"Masukkan hostname sebab ada server DHCP yg mengharuskan adanya hostname.\n"
"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
-"misalnya ``samson.ciawi.mdamt.net''."
+"misalnya ``mesinku.labku.kotaku.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nama Host"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Wizard Konfigurasi Jaringan"
@@ -6254,7 +6391,7 @@ msgstr "Modem ISDN external"
#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
-msgstr "card ISDN Internal"
+msgstr "Kartu ISDN internal"
#: ../../network/isdn.pm_.c:22
msgid "What kind is your ISDN connection?"
@@ -6295,12 +6432,12 @@ msgstr "Konfigurasi lama (isdn4net)"
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
#: ../../network/isdn.pm_.c:215
msgid "ISDN Configuration"
-msgstr "konfigurasi ISDN"
+msgstr "Konfigurasi ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Pilih provider Anda.\n"
"Bila tidak ada dalam daftar, pilih Tidak Terdaftar"
@@ -6319,14 +6456,14 @@ msgstr "Protokol lain"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol lain \n"
" tanpa D-Channel (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Protokol apa yang ingin Anda gunakan?"
#: ../../network/isdn.pm_.c:199
@@ -6350,7 +6487,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Bila Anda punya card ISA, konfigurasi pada layar berikut nanti harusnya "
@@ -6368,13 +6506,13 @@ msgid "Continue"
msgstr "Lanjut"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Manakah card ISDN Anda?"
+msgid "Which is your ISDN card?"
+msgstr "Manakah kartu ISDN Anda?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Saya mendeteksi adanya sebuah card ISDN PCI, tapi saya tidak tahu tipenya. "
"Silakan pilih card PCI tersebut pada layar berikutnya."
@@ -6391,47 +6529,47 @@ msgstr "Di serial port mana modem Anda terhubung?"
msgid "Dialup options"
msgstr "Parameter Dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nama koneksi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Nomor telepon"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nama domain"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
-msgstr "Server DNS Primary (boleh diisi/tidak)"
+msgstr "Server DNS Primer (boleh diisi/tidak)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
-msgstr "Server DNS Sekondari (boleh tidak diisi)"
+msgstr "Server DNS Sekunder (boleh tidak diisi)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6439,7 +6577,7 @@ msgstr ""
"\n"
"Anda bisa putuskan atau konfigurasi koneksi yang ada sekarang."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6447,11 +6585,11 @@ msgstr ""
"\n"
"Anda bisa mengkonfigurasikan ulang koneksi ini"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Sekarang Anda sedang terhubung ke Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6459,32 +6597,32 @@ msgstr ""
"\n"
"Anda bisa sambungkan koneksi ke Internet atau mengkonfigurasikan ulang."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Anda sedang tidak terhubung ke Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Tersambung"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Putus"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Konfigurasikan koneksi"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Koneksi dan konfigurasi Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Kita akan mengkonfigurasi koneksi %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6503,12 +6641,12 @@ msgstr ""
"\n"
"Tekan OK utk mulai."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurasi Jaringan"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6519,9 +6657,9 @@ msgstr ""
"Silakan klik OK untuk rekonfigurasi ulang koneksi jaringan/internet ini, "
"atau batal jika Anda berubah pikiran.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6532,66 +6670,72 @@ msgstr ""
"Bila Anda tidak mau menggunakan deteksi otomatis, mohon untuk tidak memilih "
"checkbox.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Pilih profil yang hendak Anda konfigurasikan"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Gunakan deteksi otomatis"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode Ahli"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Mendeteksi alat..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Konfigurasi koneksi modem biasa "
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "dideteksi pada port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Konfigurasi koneksi ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s telah terdeteksi"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Koneksi ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "telah dideteksi ada pada interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Konfigurasi jaringan kabel"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Koneksi kabel terdeteksi"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "konfigurasi LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
-msgstr "ada ethernet card yang terdeteksi"
+msgstr "ada kartu ethernet terdeteksi"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Pilih koneksi yg hendak dikonfigurasi"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6601,34 +6745,34 @@ msgstr ""
"Pilih yg ingin Anda pakai.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Koneksi Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Anda mau jalankan koneksi ini saat boot?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
-msgstr "Konfigurasi Jaringan"
+msgstr "Konfigurasi jaringan"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
-msgstr "Network perlu di-start ulang"
+msgstr "Jaringan perlu di-start ulang"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr ""
-"Problem terjadi saat restart netword:\n"
+"Problem terjadi saat restart jaringan:\n"
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6638,7 +6782,7 @@ msgstr ""
"\n"
"Konfigurasi akan diterapkan di sistem Anda.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6646,19 +6790,19 @@ msgstr ""
"Setelah itu, silakan restart X Anda agar bebas dari masalah pergantian\n"
"nama host."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Problem konfigurasi.\n"
"Tes koneksi Anda via net_monitor atau mcc. Jika koneksi tak berjalan, Anda "
"mungkin perlu jalankan konfigurasi dari awal lagi"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6669,7 +6813,7 @@ msgstr ""
"Bila ingin menggantinya, silakan ganti isi pada kolom-kolom di konfigurasi "
"ini."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6679,219 +6823,228 @@ msgstr ""
"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
"bertitik (misalnya 202.159.35.32)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurasi perangkat jaringan %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Alamat IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP otomatis"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Start saat boot"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Alamat IP harus dalam format 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-"Masukkan nama komputernya.\n"
+"Masukkan nama host Anda.\n"
"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
-"misalnya ``mdamt.fdns.net''.\n"
-"Anda juga bisa masukkan alamat IP gatewaynya kalau ada"
+"misalnya ``mesin.lab.grup.com''.\n"
+"Anda juga bisa masukkan alamat IP gateway kalau ada"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (mis. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
-msgstr "Device Gateway"
+msgstr "Device gateway"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfigurasi proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Lacak ID kartu network (berguna di laptop)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy biasanya http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy biasanya ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Konfigurasi Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Anda ingin tes koneksi Internet sekarang?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Tes koneksi Anda..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sistem ini sekarang terhubung ke Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Untuk alasan keamanan, sekarang akan diputus koneksinya"
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
+msgstr "Untuk alasan keamanan, sekarang koneksi akan diputus"
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-"Sistem ini sepertinya tidak terhubung ke Internet deh.\n"
+"Sistem ini sepertinya tidak terhubung ke Internet.\n"
"Cobalah konfigurasikan ulang koneksinya."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konfigurasi Koneksi"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Silakan isi atau cek kolom berikut"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
-msgstr "IRQ card"
+msgstr "IRQ kartu"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
-msgstr "Mem card (DMA)"
+msgstr "Mem kartu (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
-msgstr "IO Card"
+msgstr "IO kartu"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
-msgstr "IO_0 card"
+msgstr "IO_0 kartu"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
-msgstr "IO_1 card"
+msgstr "IO_1 kartu"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Nomor telepon Anda"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nama provider (misalnya provider.net.id)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Nomor telepon provider"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS Provider 1 (boleh diisi boleh tidak)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS Provider 2 (boleh diisi boleh tidak)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Pilih negri Anda"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "mode dial"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Laju koneksi"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout koneksi (detik)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login Account (username)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Katasandi Account"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Inggris"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "gagal melakukan mount: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Partisi extended tak bisa dipakai di platform ini"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Anda punya tabel partisi tapi tidak bisa saya gunakan.\n"
"Satu-satunya cara adalah memindahkan partisi primary Anda ke partisi\n"
"extended selanjutnya"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Proses restore dari file %s gagal: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "File backup rusak"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Error pada saat menulis file %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6901,186 +7054,186 @@ msgstr ""
"hal ini saya ketahui saat gagal mengecek integritas data di situ.\n"
"Artinya, data apapun yang ditulis ke situ akan gagal."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "harus ada"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "penting"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
-msgstr "bagus deh"
+msgstr "amat bagus"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bagus"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "hmm.."
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Printer lokal"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "printer remote"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Printer di server CUPS remote"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Printer di server lpd remote"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Printer jaringan (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer di server SMB/windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Printer di server NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Masukkan URI device printer"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Pipe job ke perintah"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Model tak dikenal"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Printer Lokal"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Printer Remote"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " di port paralel \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", printer USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", alat multifungsi di port paralel \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", alat multifungsi di USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", alat multifungsi di HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", alat multifungsi"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", cetak ke %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "di server LPD \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
-msgstr "di server Windows \"%s\", share \"%s\""
+msgstr "di server Mindows \"%s\", share \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "di server Novell \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", menggunakan perintah %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Printer telanjang (tanpa driver)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(di %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(di mesin ini)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Di server CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Default)"
@@ -7102,11 +7255,11 @@ msgstr ""
"Printer pada server CUPS remote tak perlu dikonfigurasikan di sini; printer "
"ini akan secara otomatis dideteksi."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "konfigurasi CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Tentukan server CUPS"
@@ -7147,7 +7300,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Alamat IP harus seperti 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Nomor port harus berupa bilangan bulat"
@@ -7155,7 +7308,7 @@ msgstr "Nomor port harus berupa bilangan bulat"
msgid "CUPS server IP"
msgstr "IP server CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7163,20 +7316,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Konfigurasi CUPS otomatis"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Pendeteksian alat..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Tes port"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Tambah printer baru"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7198,13 +7343,13 @@ msgstr ""
"Anda akses ke semua driver printer tersedia, opsi driver, dan tipe koneksi "
"printer."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Printer Lokal"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7234,11 +7379,11 @@ msgstr ""
"otomatis. Pakailah \"Mode Ahli\" printerdrake bila Anda ingin set up "
"pencetakan di printer remote jika printerdrake tak otomatis menampilkannya."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Printer deteksi otomatis"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7261,11 +7406,11 @@ msgstr ""
"ingin mengubah opsi standar setting (tray kertas, kualitas cetak, ...), "
"pilih \"Printer\" di bagian \"Perangkat Keras\" Pusat Kontrol Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Deteksi Otomatis Printer"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7281,33 +7426,37 @@ msgstr ""
"\n"
"Anda ingin deteksi otomatis printer?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Lakukan deteksi otomatis"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Setup printer secara manual"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Tes port"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Terdeteksi %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer di port paralel \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "printer USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7319,11 +7468,11 @@ msgstr ""
"sebanding dg LPT1:, LPT2:, ..., printer USB pertama: /dev/usb/lp0, printer "
"USB kedua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Masukkan nama alat atau file!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7331,7 +7480,7 @@ msgstr ""
"Tiada printer lokal ditemukan!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7339,7 +7488,7 @@ msgstr ""
"Printer network hanya dapat diinstal setelah instalasi ini. Pilih \"Hardware"
"\" lalu \"Printer\" di Pusat Kontrol Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7347,7 +7496,7 @@ msgstr ""
"Untuk menginstal printer network, klik \"Batal\", pindah ke \"Mode Ahli\", "
"dan klik \"Tambah printer baru\" lagi."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7355,7 +7504,7 @@ msgstr ""
"Printer berikut terdeteksi otomatis, jika bukan yang ingin dikonfigurasikan, "
"masukkan nama alat/file di baris masukan"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7363,7 +7512,7 @@ msgstr ""
"Daftar printer terdeteksi otomatis. Pilihlah printer yang ingin diset up "
"atau masukkan nama alat/file di baris masukan"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7374,7 +7523,7 @@ msgstr ""
"otomatis. Jika printer Anda tak terdeteksi dengan benar atau jika ingin Anda "
"konfigurasi sendiri, jalankan \"Konfigurasi manual\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7386,7 +7535,7 @@ msgstr ""
"dengan benar atau jika ingin Anda konfigurasi sendiri, jalankan "
"\"Konfigurasi manual\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7394,11 +7543,11 @@ msgstr ""
"Pilih port tempat printer Anda terhubung atau masukkan nama alat/file di "
"baris masukan"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Pilihlah port tempat printer Anda terhubung."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7406,52 +7555,66 @@ msgstr ""
" (Port Paralel: /dev/lp0, /dev/lp1, ..., sebanding dengan LPT1:, LPT2:, ..., "
"printer USB pertama: /dev/usb/lp0, printer USB kedua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Pilih/masukkan printer/alat!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Konfigurasi manual"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Apakah printer Anda adalah alat multifungsi dari HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 dengan scanner)?"
+"LaserJet 1100/1200/1220/3200/3300 dengan scanner), HP PhotoSmart P100/1315 "
+"atau HP LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instalasi paket HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Sedang mencek alat dan mengkonfigurasi HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instalasi paket SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalasi paket..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Alat multifungsi HP sedang di-scan"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Alat multifungsi HP sedang di-scan"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Membuat port printer tersedia utk CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Pembacaan database printer..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Pilihan printer lpd remote"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7459,27 +7622,27 @@ msgstr ""
"Untuk memakai printer lpd remote, berikan nama host\n"
"server printer dan nama printer di server tsb."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nama host remote"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nama printer remote"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nama host remote hilang!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Nama printer remote hilang!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Pilihan printer SMB (windows 95/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7491,35 +7654,35 @@ msgstr ""
"share printer yang ingin Anda akses, juga nama user, katasandi, dan info "
"workgroup."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Host server SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP server SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nama share"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Workgroup"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Harus ada nama/IP server!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Nama share Samba hilang!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "PERINGATAN KEAMANAN!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7542,8 +7705,26 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Anda akan menset up pencetakan ke account Mindows dengan katasandi. "
+"Berhubung kesalahan arsitekture piranti lunak klien Samba, katakunci "
+"ditampilkan dalam teks di baris perintah klien Samba untuk mengirim job "
+"cetak ke server Mindows. Ini memungkinkan tiap user di mesin ini melihat "
+"katasandi di layar dengan perintah \"ps auxwww\".\n"
+"\n"
+"Kami anjurkan beberapa alternatif berikut (pada semua kasus Anda harus yakin "
+"bahwa hanya mesin di jaringan lokal Anda yang dapat mengakses server Mindows "
+"Anda, misalnya dengan adanya firewall):\n"
+"\n"
+"Pakailah account tanpa-katasandi di server Mindows Anda, sebagai account "
+"\"GUEST\" atau account khusus untuk pencetakan. Jangan hapus proteksi "
+"katakunci account pribadi atau administrator.\n"
+"\n"
+"Set up server Mindows Anda agar printer dapat dipakai dengan protokol LPD. "
+"Laluset up pencetakan dari mesin ini dengan tipe koneksi \"%s\" di "
+"Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7551,20 +7732,26 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Set up server Windows Anda agar printer tersedia di protokol IPP dan set up "
+"pencetakan dari mesin ini dengan tipe koneksi \"%s\" di Printerdrake.\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"Hubungkan printer Anda ke server Linux server dan membuat mesin Mindows "
+"terhubung sebagai klien.\n"
+"\n"
+"Anda ingin lanjutkan set up printer ini seperti yang Anda lakukan sekarang?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Pilihan printer NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7575,27 +7762,27 @@ msgstr ""
"NetWare (tak selalu sama dengan nama TCP/IPnya) juga nama antrian printer "
"yang ingin digunakan beserta nama user dan katasandinya."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Server Printer"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nama antrian printer"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Nama server NCP hilang!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Nama antrian NCP hilang!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Opsi Printer TCP/Soket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7606,19 +7793,19 @@ msgstr ""
"portnya). Nomor port server HP JetDirect biasanya 9100, server lain "
"bervariasi. Lihat manual perangkat keras Anda."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nama host printer"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nama host printer hilang!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Device Printer URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7628,11 +7815,11 @@ msgstr ""
"spesifikasi CUPS/Foomatic. Ingat, tak semua tipe URI di-support oleh semua "
"spooler."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Harus diisi URI valid!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7640,27 +7827,23 @@ msgstr ""
"Tiap printer perlu nama (misalnya \"printer\"). Kolom Penjelasan / Lokasi "
"tak harus terisi. Itu komentar utk user."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nama Printer"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Keterangan"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokasi"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Persiapan database printer ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model printer Anda"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7685,24 +7868,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Model sudah benar"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Pilih model secara manual"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Seleksi model printer"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Anda punya model printer mana?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7716,7 +7899,7 @@ msgstr ""
"benar. Cari model yang benar di daftar jika kursor menunjukkan model yang "
"salah atau di \"Printer telanjang\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7724,11 +7907,11 @@ msgstr ""
"Jika printer Anda tak terdaftar, pilih yang kompatibel (lihat manual) atau "
"yang mirip."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Konfigurasi winprinter OKI"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7744,11 +7927,11 @@ msgstr ""
"cetak. Jika tidak, printer takkan bekerja. Setting tipe koneksi Anda akan "
"diabaikan oleh driver."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Konfigurasi Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7759,7 +7942,7 @@ msgstr ""
"bukan printer di mesin remote atau kotak server cetak. Hubungkan printer "
"Anda ke port lokal atau konfigurasikan di mesin yang terhubung dengannya."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7780,7 +7963,7 @@ msgstr ""
"halaman printhead alignment dg \"lexmarkmaintain\" dan cocokkan setting head "
"alignmentdd dg program ini."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7795,22 +7978,22 @@ msgstr ""
"perangkat keras printer laser (memori, unit duplex, tray extra). Ingat, "
"pencetakan dg kualitas tinggi berjalan amat lambat."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsi %s harus berupa integer!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsi %s harus berupa bilangan!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opsi %s keluar batas!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7819,11 +8002,11 @@ msgstr ""
"Ingin menset printer ini (\"%s\")\n"
"sbg printer standar?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Halaman tes"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7834,39 +8017,39 @@ msgstr ""
"Ingat: halaman tes photo perlu waktu lama untuk dicetak. Di printer laser "
"bermemori rendah itu bahkan takkan muncul. Umumnya cukup halaman tes standar."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Tiada halaman tes"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Cetak"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Halaman tes standar"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Halaman tes alternatif (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Halaman tes alternatif (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Halaman tes foto"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Jangan cetak halaman tes"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Pencetakan halaman tes..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7875,13 +8058,13 @@ msgid ""
"%s\n"
"\n"
msgstr ""
-"Halaman test telah dikirim ke printer.\n"
+"Halaman tes telah dikirim ke printer.\n"
"Akan butuh waktu sebentar untuk mulai mencetak.\n"
"Status cetak:\n"
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7889,15 +8072,15 @@ msgstr ""
"Halaman test telah dikirim ke printer.\n"
"Akan butuh waktu sebentar untuk mulai mencetak.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Bekerja dg baik?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Printer telanjang"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7910,7 +8093,7 @@ msgstr ""
"<file>\". Alat grafis memungkinkan Anda memilih printer dan memodifikasi "
"setting dengan mudah.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -7920,8 +8103,8 @@ msgstr ""
"banyak aplikasi, tapi jangan berikan nama file di sini karena file yang "
"dicetak akan diberikan oleh aplikasi.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7933,18 +8116,18 @@ msgstr ""
"Komando \"%s\" juga memungkinkan modifikasi setting job cetak tertentu. "
"Tambahkan setting yang diinginkan ke baris perintah, mis. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Untuk mengetahui opsi printer bacalah daftar di bawah atau klik tombol "
"\"Daftar opsi cetak\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -7952,7 +8135,7 @@ msgstr ""
"Daftar opsi cetak tersedia untuk printer ini:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7961,8 +8144,8 @@ msgstr ""
"Utk mencetak file dari baris komando (window terminal) gunakan perintah \"%s "
"<file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -7972,13 +8155,13 @@ msgstr ""
"aplikasi. Tapi jangan berikan nama file di sini karena file yg dicetak akan "
"diberikan oleh aplikasi.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr "Untuk mendapat daftar opsi printer klik \"Daftar opsi cetak\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7987,7 +8170,7 @@ msgstr ""
"Utk mencetak file dari baris komando (jendela terminal) gunakan komando \"%s "
"<file>\" atau \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8002,7 +8185,7 @@ msgstr ""
"di desktop, berlabel \"STOP Printer!\", yang menghentikan semua job cetak "
"seketika bila Anda tekan. Ini berguna contohnya saat kertas macet.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8015,38 +8198,49 @@ msgstr ""
"cetak tertentu. Tambahkan setting yg diinginkan ke baris perintah, misalnya "
"\"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Tutup"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Cetak/Scan di \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Cetak/Scan di \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Cetak/Scan di \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Pencetakan di printer \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Tutup"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Daftar opsi cetak"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8060,37 +8254,30 @@ msgstr ""
"\n"
"Jangan pakai \"scannerdrake\" utk alat ini!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Alat multifungsi HP Anda terkonfigurasi otomatis agar dapat men-scan. Kini "
-"Anda dapat men-scan dari baris perintah dg \"ptal-hp %s scan ...\". Scan via "
-"antarmuka grafis atau GIMP saat ini belum di-support. Info lanjutada di \"/"
-"usr/share/doc/hpoj-0.8/ptal-hp-scan.html\". Jika Anda punya HP LaserJet 1100 "
-"atau 1200 Anda hanya dapat men-scan jika opsi scanner terinstal.\n"
-"\n"
-"Jangan pakai \"scannerdrake\" utk alat ini!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Pembacaan data printer..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Transfer konfigurasi printer"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8105,7 +8292,7 @@ msgstr ""
"ditransfer. \n"
"Tak semua antrian dapat ditransfer karena alasan berikut:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8113,17 +8300,17 @@ msgstr ""
"CUPS tak men-support printer server Novell atau printer yg mengirim data ke "
"perintah format-bebas.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr "PDQ hanya men-support printer lokal, LPD remote, dan Soket/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD and LPRng tak men-support printer IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8131,7 +8318,7 @@ msgstr ""
"Antrian tak dibuat oleh program ini atau \"foomatic-configure\" tak dapat "
"ditransfer."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8141,7 +8328,7 @@ msgstr ""
"Juga printer yg terkonfigurasi dengan file PPD dari pabrik atau driver CUPS "
"asli tak dapat ditransfer."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8150,15 +8337,15 @@ msgstr ""
"\n"
"Tandai printer yg ingin Anda transfer lalu klik\"Transfer\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Jangan transfer printer"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Transfer"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8169,27 +8356,27 @@ msgstr ""
"Klik \"Transfer\" untuk menindihnya.\n"
"Anda juga dapat menuliskan nama baru atau melewatkan printer ini."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Nama printer harus hanya berupa huruf, angka, atau garisbawah"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr "Sudah ada printer \"%s\", Anda benar ingin menindih konfigurasinya?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nama printer baru"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Pemindahan %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8198,29 +8385,29 @@ msgstr ""
"Anda telah men-transfer printer standar lama Anda (\"%s\"), Akankah ia juga "
"dijadikan printer default pada sistem cetak baru %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Penyegaran data printer..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfigurasi printer remote"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Pemulaian network..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Konfigurasikan jaringan sekarang"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Fungsi network tak dikonfigurasi"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8232,11 +8419,11 @@ msgstr ""
"tanpa konfigurasi network, Anda takkan dapat menggunakan printer yang Anda "
"konfigurasikan sekarang. Bagaimana Anda mau teruskan?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Jalan tanpa konfigurasi jaringan"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8251,7 +8438,7 @@ msgstr ""
"\"Koneksi\", lalu set printer juga dg Pusat Kontrol Mandrake, bagian "
"\"Hardware\"/\"Printer\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8260,24 +8447,24 @@ msgstr ""
"Akses network tak jalan dan tak dapat dimulai. Cek konfigurasi dan hardware "
"Anda, lalu coba konfigurasikan printer remote Anda lagi."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Mulai ulang sistem cetak ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "tinggi"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "pengecut"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalasi sistem cetak dalam level keamanan %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8300,11 +8487,11 @@ msgstr ""
"\n"
"Benarkah Anda ingin mengkonfigurasikan printer di mesin ini?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Inisiasi sistem cetak pada saat boot"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8324,63 +8511,63 @@ msgstr ""
"\n"
"Anda ingin auto-start sistem cetak dinyalakan lagi?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Pemeriksaan perangkat lunak terinstal"
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Hapus LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Hapus LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Pilih spooler printer"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Sistem (spooler) printer mana yang ingin digunakan?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigurasi printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
+msgstr "Konfigurasikan printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instalasi Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opsi printer"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Persiapan PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Konfigurasi aplikasi..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Ingin konfigurasi printer?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistem cetak: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8392,7 +8579,7 @@ msgstr ""
"membuat printer di server CUPS remote dapat dipakai oleh Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8401,28 +8588,32 @@ msgstr ""
"Printer berikut telah dikonfigurasikan. Klik-dobel printer utk memodifikasi "
"setting; membuatnya printer default; atau melihat info tentangnya."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Penyegaran daftar printer (utk menampilkan semua printer CUPS remote)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Ubah sistem cetak"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modus Normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Keluar"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Ingin konfigurasikan printer lain?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modifikasi konfigurasi printer"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8431,103 +8622,103 @@ msgstr ""
"Printer %s\n"
"Apa yg Anda inginkan utk modifikasi printer ini?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Kerjakan!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tipe koneksi printer"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nama, penjelasan, lokasi printer"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Pembuat, model, driver printer"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Pembuat, model printer"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Set printer ini sebagai standar"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Tambah printer ini ke Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Hapus printer ini dari Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Cetak halaman tes"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Cara penggunaan printer ini"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Hapus printer"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Menghapus printer lama \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Menghapus printer lama \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Printer standar"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printer \"%s\" kini diset sbg printer standar."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Penambahan printer ke Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Printer \"%s\" sukses ditambahkan ke Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Gagal menambahkan printer \"%s\" ke Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Hapus printer dari Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Printer \"%s\" sukses dihapus dari Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Gagal menghapus printer \"%s\" dari Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Anda ingin menghapus printer \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Menghapus printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Menghapus printer \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8606,24 +8797,60 @@ msgstr "Katasandi tak sama, coba lagi!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Tidak dapat menambah partisi ke RAID md%d yang terformat"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Tidak bisa menulis ke file %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid gagal"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid gagal (mungkin raidtoolsnya tak ada?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Partisi tidak cukup untuk level RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Level ini harus hati-hati. Level ini akan membuat sistem Anda akan mudah\n"
+"digunakan, tapi sangat sensitif: mesin ini tidak boleh digunakan untuk\n"
+"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
+"akses katasandi."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Dengan level sekuriti ini, sistem akan dapat digunakan sebagai server.\n"
+"Sekuriti kini cukup tinggi untuk dapat melayani koneksi banyak klien.\n"
+"Jika mesin Anda hanya berfungsi sebagai klien, pilihlah level lebih rendah."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Opsi Lanjutan"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Pilihan"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Luncurkan sistem suara ALSA (Advanced Linux Sound Architecture)"
@@ -8681,7 +8908,7 @@ msgstr ""
"HardDrake mendeteksi hardware, dan mengkonfigurasi yg baru/berubah bila "
"perlu."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8718,7 +8945,7 @@ msgid ""
msgstr ""
"Paket ini akan meload map keyboard yang dipilih di file\n"
"/etc/sysconfig/keyboard. Mapnya bisa dipilih dari utility kbdconfig.\n"
-"Mending Anda aktifkan aja deh ini."
+"Biarkan aktif!"
#: ../../services.pm_.c:38
msgid ""
@@ -8755,7 +8982,7 @@ msgstr ""
"Linux Virtual Server, digunakan utk membangun server dg performans dan\n"
"kapasitas tinggi."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8815,10 +9042,9 @@ msgid ""
"have\n"
"it installed on machines that don't need it."
msgstr ""
-"PCMCIA digunakan untuk menjalankan perangkat semacam ethernet atau modem "
-"pada laptop.\n"
-"Dia tak bisa jalan kecuali dikonfigurasikan di sini, jadi tak apa-apa\n"
-"kalau tak diinstall di mesin yang tak perlu PCMCIA."
+"PCMCIA digunakan untuk menjalankan perangkat semacam ethernet atau modem\n"
+"pada laptop. Dia tak bisa jalan kecuali dikonfigurasikan di sini, jadi tak\n"
+"apa-apa kalau tak diinstal di mesin yang tak perlu PCMCIA."
#: ../../services.pm_.c:63
msgid ""
@@ -8831,7 +9057,7 @@ msgstr ""
"NFS dan NIS. Server portmap harus jalan di mesin yang bertindak sebagai\n"
"server untuk protokol yang menggunakan mekanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -8853,7 +9079,7 @@ msgid ""
"partitions), for the use of applications such as Oracle"
msgstr ""
"Tunjuk raw device ke block devices (misalnya partisi hard drive),\n"
-"utk digunakan oleg aplikasi semacam Oracle"
+"utk digunakan oleh aplikasi semacam Oracle"
#: ../../services.pm_.c:71
msgid ""
@@ -8899,7 +9125,7 @@ msgid ""
"to various system log files. It is a good idea to always run syslog."
msgstr ""
"Syslog adalah fasilitas yang digunakan para daemon untuk mencatat\n"
-"pesan log sistem di file. Hidupkan aja deh syslognya."
+"pesan log sistem di file. Sebaiknya syslog selalu hidup."
#: ../../services.pm_.c:83
msgid "Load the drivers for your usb devices."
@@ -8925,7 +9151,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Pemakaian file bersama"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistem"
@@ -9053,6 +9279,7 @@ msgstr ""
"compiler gcc GNU, juga lingkungan development Sumber Bebas terbaik"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Pusat Kontrol Mandrake"
@@ -9173,13 +9400,161 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instalasi paket..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
-"Saya tak bisa baca tabel partisi, udah hancur lebur nih :(\n"
-"Aku akan coba hapus partisi yg jeleknya"
+"Tabel partisi rusak tak terbaca :(\n"
+"Partisi buruk akan dicoba dihapus"
+
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Konfigurasi Server Terminal Mandrake"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Aktifkan Server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Pasifkan Server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Jalankan Server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Stop Server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Floppy Etherboot/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Image Boot Net"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Tambah/Hapus User"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Tambah/Hapus Klien DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pertolongan"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Disket boot"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "ISO boot"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Bangun Seluruh Kernel -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Butuh beberapa menit."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Tiada kernel terpilih!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Bangun NIC Single -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Tiada nic terpilih"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Bangun Semua Kernel -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Hapus"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Hapus Semua NBI"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Tambah user -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Hapus User"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Tambah Klien -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Hapus Klien"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Konfig dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Tulis konfigurasi"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Masukkan floppy:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Gagal akses ke floppy!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Disket dapat dilepas sekarang"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Floppy drive tak tersedia"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Image ISO Etherboot adalah %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Ada yg salah!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Perlu bikin dulu /etc/dhcpd.conf first!"
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
@@ -9231,6 +9606,10 @@ msgid ""
msgstr ""
"Pada tiap tahapan pilih apakah instalasi akan diulang, atau akan manual"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Disket auto install sedang dibuat"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9243,39 +9622,30 @@ msgstr ""
"\n"
"Parameter instalasi otomatis tersedia di bagian sebelah kiri"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Selamat!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr "Floppy sukses dibuat. Instalasi bisa direplikasi."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Instalasi Otomatis"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Tambah item"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Hapus item terakhir"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9285,7 +9655,7 @@ msgstr ""
" Laporan DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9297,19 +9667,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9321,62 +9679,85 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "total kemajuan"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Backup file sistem..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "File Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Backup file User..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Kemajuan Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Backup file lain..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"daftar file dikirim oleh FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
+" problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Kesalahan saat pengiriman surat. \n"
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Kesalahan saat pengiriman surat. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Pilihan File"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Pilih file atau direktori dan klik 'Tambah'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9384,107 +9765,101 @@ msgstr ""
"\n"
"Periksa semua opsi yang Anda inginkan.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Opsi ini memungkinkan backup / simpan ulang semua file di direktori /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Backup file System Anda. ( direktori /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Pakai backup incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Tidak memasukkan file penting (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Dengan opsi ini Anda dapat menyimpan ulang semua versi direktori /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Periksa semua user yang ingin Anda masukkan ke backup."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Jangan masukkan cache browser"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Pakai Backup Incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Hapus Pilihan"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+msgstr "Mindows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "User"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Pakai koneksi FTP utk backup"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Masukkan nama host atau IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Masukkan direktori utk\n"
" meletakkan backup di host ini."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Masukkan login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Masukkan katasandi"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Ingat katasandi ini"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Koneksi FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Koneksi Aman"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Pakai CD/DVDROM utk backup"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Pilih ruang CD Anda"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Periksa apakah Anda menggunakan media CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Cek apakah Anda ingin menghapus CDRW sebelum"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9492,7 +9867,7 @@ msgstr ""
"Cek jika Anda ingin memasukkan\n"
" boot instalasi di CD Anda."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9500,16 +9875,21 @@ msgstr ""
"Masukkan nama alat Penulis CD Anda\n"
" mis: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Gunakan pita utk backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Masukkan nama alat utk backup"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Cek apakah Anda ingin menghapus CDRW sebelum"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9517,127 +9897,129 @@ msgstr ""
"Masukkan ukuran maximum\n"
" yg diizinkan utk Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Pakai quota utk file backup."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Jaringan"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipe"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "perjam"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "harian"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "mingguan"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "bulanan"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Pakai daemon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pilih interval waktu backup"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Pilih media backup."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Pakai Hard Drive dg daemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Pakai FTP dg daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Pastikan daemon cron masuk dalam daftar servis."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Kirim laporan mail setelah tiap backup ke :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Apa"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Mana"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kapan"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Opsi Tambahan"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Konfigurasi Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Pilih tempat backup"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "di Hard Drive"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "lewat Network"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Pilih apa yang akan di-backup"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Backup sistem"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Backup User"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Pilih user secara manual"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9645,7 +10027,7 @@ msgstr ""
"\n"
"Sumber Backup: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9653,7 +10035,7 @@ msgstr ""
"\n"
"- File Sistem:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9661,7 +10043,7 @@ msgstr ""
"\n"
"- File User:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9669,7 +10051,7 @@ msgstr ""
"\n"
"- File Lain:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9678,16 +10060,45 @@ msgstr ""
"\n"
"- Simpan di Hard drive di path : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Device Mouse: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Simpan di FTP di host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Simpan di FTP di host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9696,7 +10107,7 @@ msgstr ""
"\t\t name user: %s\n"
"\t\t di path: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9704,19 +10115,19 @@ msgstr ""
"\n"
"- Opsi:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tJangan masukkan File Sistem\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackup dengan tar dan bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackup dengan tar dan gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9725,27 +10136,41 @@ msgstr ""
"\n"
"- Cakupan daemon (%s) :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Hard drive.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Network dg FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Network dg SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Network dg FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Network dg FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Tiada konfigurasi, mohon klik Dukun atau Lanjutan.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9753,7 +10178,7 @@ msgstr ""
"Daftar data simpan ulang:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9761,131 +10186,134 @@ msgstr ""
"Daftar data rusak:\n"
"\n"